@charset "UTF-8";
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/proximanova/proximanova-light-webfont.woff2") format("woff2"), url("../fonts/proximanova/proximanova-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/proximanova/proximanova-reg-webfont.woff2") format("woff2"), url("../fonts/proximanova/proximanova-reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/proximanova/proximanova-sbold-webfont.woff2") format("woff2"), url("../fonts/proximanova/proximanova-sbold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.bg-blue-grad {
  background-color: #0abcf9;
  background-image: linear-gradient(315deg, #0abcf9 0%, #2c69d1 74%);
}

.bg-amber-grad {
  background-color: #ffff45;
  background-image: linear-gradient(315deg, #ffff45 0%, #ff5858 74%);
}

.bg-purple-grad {
  background-color: #6617cb;
  background-image: linear-gradient(315deg, #6617cb 0%, #cb218e 74%);
}

.bg-red-grad {
  background-color: #feae96;
  background-image: linear-gradient(315deg, #feae96 0%, #fe0944 74%);
}

.bg-teal {
  background-color: #00acac !important;
}

.bg-brown-grad {
  background-color: #D9A74D;
  background-image: linear-gradient(315deg, #D9A74D 0%, #8a631c 74%);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.spinner {
  text-align: center;
  font-size: 10px;
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 46.4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.spinner > div {
  background-color: #6f519d;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
  margin-right: 2px;
}

.spinner div:last-child {
  margin-right: 0;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@media (min-width: 768px) {
  .spinner {
    height: 38.4px;
  }
}
@media (min-width: 992px) {
  .spinner {
    height: 36.8px;
  }
}
@font-face {
  font-family: TwitterChirpExtendedHeavy;
  src: url(../fonts/twitterchirp/chirp-extended-heavy-web.woff2) format("woff2");
  src: url(../fonts/twitterchirp/chirp-extended-heavy-web.woff) format("woff");
  font-weight: 800;
  font-style: "normal";
  font-display: "swap";
}
@font-face {
  font-family: TwitterChirp;
  src: url(../fonts/twitterchirp/chirp-regular-web.woff2) format("woff2");
  src: url(../fonts/twitterchirp/chirp-regular-web.woff) format("woff");
  font-weight: 400;
  font-style: "normal";
  font-display: "swap";
}
@font-face {
  font-family: TwitterChirp;
  src: url(../fonts/twitterchirp/chirp-medium-web.woff2) format("woff2");
  src: url(../fonts/twitterchirp/chirp-medium-web.woff) format("woff");
  font-weight: 500;
  font-style: "normal";
  font-display: "swap";
}
@font-face {
  font-family: TwitterChirp;
  src: url(../fonts/twitterchirp/chirp-bold-web.woff2) format("woff2");
  src: url(../fonts/twitterchirp/chirp-bold-web.woff) format("woff");
  font-weight: 700;
  font-style: "normal";
  font-display: "swap";
}
@font-face {
  font-family: TwitterChirp;
  src: url(../fonts/twitterchirp/chirp-heavy-web.woff2) format("woff2");
  src: url(../fonts/twitterchirp/chirp-heavy-web.woff) format("woff");
  font-weight: 800;
  font-style: "normal";
  font-display: "swap";
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*text-rendering: optimizeLegibility;*/
}

body {
  color: #2c2c2c;
  font-size: 14px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/** COLOR **/
.co-primary {
  color: #0c39ad;
}

.co-success {
  color: #18ce0f;
}

.co-info {
  color: #2ca8ff;
}

.co-warning {
  color: #ffb236;
}

.co-danger {
  color: #ff3636;
}

.bg-orange {
  background-color: #0c39ad;
}

.bg-orange-85 {
  background-color: rgba(12, 57, 173, 0.15);
}

.bg-green {
  background-color: #18ce0f;
}

.bg-green-85 {
  background-color: rgba(24, 206, 15, 0.15);
}

.bg-green-90 {
  background-color: rgba(24, 206, 15, 0.1);
}

.bg-blue {
  background-color: #2ca8ff;
}

.bg-blue-85 {
  background-color: rgba(44, 168, 255, 0.15);
}

.bg-yellow {
  background-color: #ffb236;
}

.bg-yellow-85 {
  background-color: rgba(255, 178, 54, 0.15);
}

.bg-red {
  background-color: #ff3636;
}

.bg-red-85 {
  background-color: rgba(255, 54, 54, 0.15);
}

.bg-purple {
  background-color: #6f519d;
}

.bg-purple-85 {
  background-color: rgba(111, 81, 157, 0.15);
}

.bg-pink {
  background-color: #d5317c;
}

.bg-pink-85 {
  background-color: rgba(213, 49, 124, 0.15);
}

/** END COLOR **/
/** BUTTON **/
.btn-dt-action {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  border: 0;
  text-decoration: none;
  background: none;
  cursor: pointer;
}
.btn-dt-action i {
  font-size: 26px;
}
.btn-dt-action:hover {
  text-decoration: none;
}
.btn-dt-action.btn-dt-action-primary i {
  color: #0c39ad;
}
.btn-dt-action.btn-dt-action-primary:hover i {
  color: #072165;
}
.btn-dt-action.btn-dt-action-primary:disabled:hover i, .btn-dt-action.btn-dt-action-primary[disabled]:hover i {
  color: #0c39ad;
}
.btn-dt-action.btn-dt-action-success i {
  color: #18ce0f;
}
.btn-dt-action.btn-dt-action-success:hover i {
  color: #10870a;
}
.btn-dt-action.btn-dt-action-success:disabled:hover i, .btn-dt-action.btn-dt-action-success[disabled]:hover i {
  color: #18ce0f;
}
.btn-dt-action.btn-dt-action-info i {
  color: #2ca8ff;
}
.btn-dt-action.btn-dt-action-info:hover i {
  color: #0083df;
}
.btn-dt-action.btn-dt-action-info:disabled:hover i, .btn-dt-action.btn-dt-action-info[disabled]:hover i {
  color: #2ca8ff;
}
.btn-dt-action.btn-dt-action-warning i {
  color: #ffb236;
}
.btn-dt-action.btn-dt-action-warning:hover i {
  color: #e98f00;
}
.btn-dt-action.btn-dt-action-warning:disabled:hover i, .btn-dt-action.btn-dt-action-warning[disabled]:hover i {
  color: #ffb236;
}
.btn-dt-action.btn-dt-action-danger i {
  color: #ff3636;
}
.btn-dt-action.btn-dt-action-danger:hover i {
  color: #e90000;
}
.btn-dt-action.btn-dt-action-danger:disabled:hover i, .btn-dt-action.btn-dt-action-danger[disabled]:hover i {
  color: #ff3636;
}
.btn-dt-action:disabled, .btn-dt-action[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-dt-action:disabled:hover i, .btn-dt-action[disabled]:hover i {
  color: inherit;
}

.btn {
  font-family: "Montserrat", "Helvetica Neue", "Open Sans", arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  /*margin: 10px 1px;*/
  margin: 0;
  padding: 14px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #888;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
}
.btn:hover, .btn:focus, .btn:active {
  opacity: 1;
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #929292 !important;
  color: #fff !important;
}
.btn:disabled {
  opacity: 0.5;
  background-color: #888;
  color: #fff;
  cursor: not-allowed;
}
.btn:disabled:hover, .btn:disabled:focus, .btn:disabled:active {
  opacity: 0.5;
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #888 !important;
  color: #fff !important;
}
.btn.btn-round {
  padding: 14px 22px;
  padding-left: 27px;
  padding-right: 27px;
}
.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  padding: 10.8px 20px 10.8px 15px;
}
.btn.btn-icon i {
  font-size: 16px;
  height: 16px;
  text-align: left;
}
.btn.btn-icon-only {
  display: inline-flex;
  align-items: center;
  padding: 7.8px 10px;
}
.btn.btn-icon-only i {
  font-size: 22px;
  height: 22px;
  text-align: left;
}
.btn.btn-submit-m {
  padding-top: 18px;
  padding-bottom: 18px;
}

.btn-primary {
  background-color: #0c39ad;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #0e41c5 !important;
  color: #fff !important;
}
.btn-primary:disabled {
  background-color: #0c39ad;
  color: #fff;
}
.btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #0c39ad !important;
  color: #fff !important;
}

.btn-info {
  background-color: #2ca8ff;
  color: #fff;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #46b3ff !important;
  color: #fff !important;
}
.btn-info:disabled {
  background-color: #2ca8ff;
  color: #fff;
}
.btn-info:disabled:hover, .btn-info:disabled:focus, .btn-info:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #2ca8ff !important;
  color: #fff !important;
}

.btn-success {
  background-color: #18ce0f;
  color: #fff;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #1be611 !important;
  color: #fff !important;
}
.btn-success:disabled {
  background-color: #18ce0f;
  color: #fff;
}
.btn-success:disabled:hover, .btn-success:disabled:focus, .btn-success:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #18ce0f !important;
  color: #fff !important;
}

.btn-warning {
  background-color: #ffb236;
  color: #fff;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #ffbc50 !important;
  color: #fff !important;
}
.btn-warning:disabled {
  background-color: #ffb236;
  color: #fff;
}
.btn-warning:disabled:hover, .btn-warning:disabled:focus, .btn-warning:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #ffb236 !important;
  color: #fff !important;
}

.btn-danger {
  background-color: #ff3636;
  color: #fff;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  outline: 0 !important;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17) !important;
  background-color: #ff5050 !important;
  color: #fff !important;
}
.btn-danger:disabled {
  background-color: #ff3636;
  color: #fff;
}
.btn-danger:disabled:hover, .btn-danger:disabled:focus, .btn-danger:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #ff3636 !important;
  color: #fff !important;
}

.btn-neutral {
  background-color: transparent;
  color: #2c2c2c;
}
.btn-neutral:hover, .btn-neutral:focus, .btn-neutral:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  color: #5f5f5f !important;
}
.btn-neutral:disabled {
  background-color: transparent;
  color: #2c2c2c;
}
.btn-neutral:disabled:hover, .btn-neutral:disabled:focus, .btn-neutral:disabled:active {
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  color: #2c2c2c !important;
}

.btn-link {
  border: 0;
  padding: 0.5rem 0.7rem;
  background-color: transparent !important;
  color: #858585;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  background-color: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: #959595 !important;
}
.btn-link.btn-primary {
  color: #0c37a8 !important;
}
.btn-link.btn-primary:hover, .btn-link.btn-primary:focus, .btn-link.btn-primary:active {
  color: #0e41c5 !important;
}
.btn-link.btn-info {
  color: #27a6ff !important;
}
.btn-link.btn-info:hover, .btn-link.btn-info:focus, .btn-link.btn-info:active {
  color: #46b3ff !important;
}
.btn-link.btn-success {
  color: #17c90f !important;
}
.btn-link.btn-success:hover, .btn-link.btn-success:focus, .btn-link.btn-success:active {
  color: #1be611 !important;
}
.btn-link.btn-warning {
  color: #ffb031 !important;
}
.btn-link.btn-warning:hover, .btn-link.btn-warning:focus, .btn-link.btn-warning:active {
  color: #ffbc50 !important;
}
.btn-link.btn-danger {
  color: #ff3131 !important;
}
.btn-link.btn-danger:hover, .btn-link.btn-danger:focus, .btn-link.btn-danger:active {
  color: #ff5050 !important;
}

.btn-outline-primary {
  background-color: transparent !important;
  color: #0c39ad !important;
  border-color: #0c39ad;
  box-shadow: none;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: transparent !important;
  border-color: #0f49dd !important;
  color: #0f49dd !important;
  box-shadow: none !important;
}
.btn-outline-primary:disabled {
  opacity: 0.5;
  color: #0c39ad !important;
  border-color: #0c39ad;
}
.btn-outline-primary:disabled:hover, .btn-outline-primary:disabled:focus, .btn-outline-primary:disabled:active {
  background-color: transparent !important;
  border-color: #0c39ad !important;
  color: #0c39ad !important;
  box-shadow: none !important;
}

.btn-outline-info {
  background-color: transparent !important;
  color: #2ca8ff !important;
  border-color: #2ca8ff;
  box-shadow: none;
}
.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active {
  background-color: transparent !important;
  border-color: #5fbdff !important;
  color: #5fbdff !important;
  box-shadow: none !important;
}

.btn-outline-success {
  background-color: transparent !important;
  color: #18ce0f !important;
  border-color: #18ce0f;
  box-shadow: none;
}
.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active {
  background-color: transparent !important;
  border-color: #2bef21 !important;
  color: #2bef21 !important;
  box-shadow: none !important;
}

.btn-outline-warning {
  background-color: transparent !important;
  color: #ffb236 !important;
  border-color: #ffb236;
  box-shadow: none;
}
.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active {
  background-color: transparent !important;
  border-color: #ffc669 !important;
  color: #ffc669 !important;
  box-shadow: none !important;
}

.btn-outline-danger {
  background-color: transparent !important;
  color: #ff3636 !important;
  border-color: #ff3636;
  box-shadow: none;
}
.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
  background-color: transparent !important;
  border-color: #ff6969 !important;
  color: #ff6969 !important;
  box-shadow: none !important;
}

/** END BUTTON **/
/** FORM CONTROL **/
.form-group, .input-group {
  /*margin-bottom: 10px;*/
  position: relative;
}

.form-control {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  /*color: lighten($body_co, 25%);
  color: lighten($body_co, 18%);*/
  color: #2c2c2c;
  height: auto;
  line-height: normal;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: none;
  /*padding: 10px 18px 11px 18px;*/
  padding: 12px 18px;
}
.form-control.form-control-round {
  border-radius: 30px;
  padding: 13px 22px;
}
.form-control[disabled] {
  cursor: not-allowed;
}
.form-control:focus {
  border: 1px solid #aeaeae;
  box-shadow: none;
  outline: 0 !important;
  color: #2c2c2c;
}
.form-control.form-control-success {
  padding-right: 40px;
  position: relative;
  color: #15b60d;
  border-color: #6ff468;
}
.form-control.form-control-success:focus {
  border-color: #58f251;
}
.form-control.form-control-success[disabled] {
  opacity: 0.7;
}
.form-control.form-control-danger {
  padding-right: 40px;
  position: relative;
  color: #ff3636;
  border-color: #ffb6b6;
}
.form-control.form-control-danger:focus {
  border-color: #ffb6b6;
}
.form-control.form-control-danger[disabled] {
  opacity: 0.7;
}
.form-control.ta-ket {
  height: 120px;
  resize: none;
}

.form-group {
  margin-bottom: 1.3rem;
}
.form-group.has-success::after {
  font-family: "Material Design Icons";
  content: "󰄬";
  display: inline-block;
  position: absolute;
  right: 13px;
  top: 7px;
  color: #18ce0f;
  font-size: 20px;
}
.form-group.has-danger::after {
  font-family: "Material Design Icons";
  content: "󰅖";
  display: inline-block;
  position: absolute;
  right: 13px;
  top: 8.5px;
  color: #ff3636;
  font-size: 17px;
}
.form-group.disabled::after {
  opacity: 0.5;
}

.input-group .input-group-prepend {
  margin-right: 0;
}
.input-group .input-group-prepend .input-group-text {
  background-color: #fff;
  /*border-radius: 30px;*/
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #e3e3e3;
  border-right: 0;
  color: #555;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding-right: 0;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
}
.input-group .input-group-prepend .input-group-text i {
  font-size: 20px;
  height: 20px;
  line-height: 1;
}
.input-group .input-group-append {
  margin-left: -1px;
}
.input-group .input-group-append .input-group-text {
  background-color: #fff;
  /*border-radius: 30px;*/
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 1px solid #e3e3e3;
  border-left: 0;
  color: #555;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding-left: 0;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
}
.input-group .input-group-append .input-group-text i {
  font-size: 20px;
  height: 20px;
  line-height: 1;
}
.input-group.disabled .input-group-prepend .input-group-text, .input-group.disabled .input-group-append .input-group-text {
  background-color: #e9ecef;
}
.input-group.disabled .input-group-prepend .input-group-text i, .input-group.disabled .input-group-append .input-group-text i {
  opacity: 0.7;
}
.input-group.input-group-focus .input-group-text {
  border-color: #aeaeae;
}
.input-group .form-control:first-child {
  border-right: 0;
  padding-right: 10px;
}
.input-group .form-control:last-child {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 10px;
}

/** END FORM CONTROL **/
/** CHECKBOX **/
.form-check {
  /*margin-top: .65rem;*/
  margin-top: 0;
  padding-left: 0;
}
.form-check .form-check-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  line-height: 26px;
  margin-bottom: 0;
  transition: color 0.1s linear;
}
.form-check .form-check-label.form-check-label-orange {
  color: #f07f31;
}
.form-check .form-check-label.form-check-label-primary {
  color: #0c39ad;
}
.form-check .form-check-label.form-check-label-success {
  color: #18ce0f;
}
.form-check .form-check-label.form-check-label-info {
  color: #2ca8ff;
}
.form-check .form-check-label.form-check-label-warning {
  color: #ffb236;
}
.form-check .form-check-label.form-check-label-danger {
  color: #ff3636;
}
.form-check .form-check-label .form-check-input[type=checkbox] {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.form-check .form-check-label .form-check-input[type=checkbox]:checked + .form-check-sign::after {
  opacity: 1;
}
.form-check .form-check-label .form-check-input[type=radio] {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.form-check .form-check-label .form-check-input[type=radio]:checked + .form-check-sign::after {
  opacity: 1;
}
.form-check .form-check-label .form-check-sign::before {
  content: " ";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  cursor: pointer;
  border-radius: 3px;
  top: 3px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  transition: opacity 0.1s linear;
}
.form-check .form-check-label .form-check-sign::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.1s linear;
  font-family: "Material Design Icons";
  content: "󰸞";
  top: 0;
  text-align: center;
  font-size: 16px;
  opacity: 0;
  color: #2c2c2c;
  border: 0;
  background-color: inherit;
}
.form-check .form-check-label .form-check-sign.form-check-sign-primary::after {
  color: #0c39ad;
}
.form-check .form-check-label .form-check-sign.form-check-sign-success::after {
  color: #18ce0f;
}
.form-check .form-check-label .form-check-sign.form-check-sign-info::after {
  color: #2ca8ff;
}
.form-check .form-check-label .form-check-sign.form-check-sign-warning::after {
  color: #ffb236;
}
.form-check .form-check-label .form-check-sign.form-check-sign-danger::after {
  color: #ff3636;
}
.form-check.disabled .form-check-label {
  color: #9a9a9a;
  opacity: 0.5;
  cursor: not-allowed;
}
.form-check.disabled .form-check-label .form-check-sign::after {
  color: #797979 !important;
}
.form-check.disabled .form-check-label .form-check-sign.form-check-sign-primary::after {
  color: #5e88f4 !important;
}
.form-check.disabled .form-check-label .form-check-sign.form-check-sign-success::after {
  color: #86f680 !important;
}
.form-check.disabled .form-check-label .form-check-sign.form-check-sign-info::after {
  color: #c5e7ff !important;
}
.form-check.disabled .form-check-label .form-check-sign.form-check-sign-warning::after {
  color: #ffedcf !important;
}
.form-check.disabled .form-check-label .form-check-sign.form-check-sign-danger::after {
  color: #ffcfcf !important;
}
.form-check.form-check-primary .form-check-label {
  color: #0c39ad;
}
.form-check.form-check-success .form-check-label {
  color: #18ce0f;
}
.form-check.form-check-info .form-check-label {
  color: #2ca8ff;
}
.form-check.form-check-warning .form-check-label {
  color: #ffb236;
}
.form-check.form-check-danger .form-check-label {
  color: #ff3636;
}

/** END CHECKBOX **/
/** RADIO **/
.form-check-radio .form-check-label .form-check-input[type=radio] {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign::after {
  background-color: #2c2c2c;
  opacity: 1;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign.form-check-sign-primary::after {
  background-color: #0c39ad;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign.form-check-sign-success::after {
  background-color: #18ce0f;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign.form-check-sign-info::after {
  background-color: #2ca8ff;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign.form-check-sign-warning::after {
  background-color: #ffb236;
}
.form-check-radio .form-check-label .form-check-input[type=radio]:checked + .form-check-sign.form-check-sign-danger::after {
  background-color: #ff3636;
}
.form-check-radio .form-check-label .form-check-sign::before {
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 55%;
  border: 1px solid #e3e3e3;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 3px;
  padding: 1px;
  transition: opacity 0.1s linear;
  cursor: pointer;
  background: #fff;
}
.form-check-radio .form-check-label .form-check-sign::after {
  text-align: center;
  color: #2c2c2c;
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 8px;
  transition: opacity 0.1s linear;
}
.form-check-radio.disabled .form-check-label .form-check-sign::after {
  background-color: #797979 !important;
}
.form-check-radio.disabled .form-check-label .form-check-sign.form-check-sign-primary::after {
  background-color: #5e88f4 !important;
}
.form-check-radio.disabled .form-check-label .form-check-sign.form-check-sign-success::after {
  background-color: #86f680 !important;
}
.form-check-radio.disabled .form-check-label .form-check-sign.form-check-sign-info::after {
  background-color: #c5e7ff !important;
}
.form-check-radio.disabled .form-check-label .form-check-sign.form-check-sign-warning::after {
  background-color: #ffedcf !important;
}
.form-check-radio.disabled .form-check-label .form-check-sign.form-check-sign-danger::after {
  background-color: #ffcfcf !important;
}
.form-check-radio.form-check-radio-primary .form-check-label {
  color: #0c39ad;
}
.form-check-radio.form-check-radio-success .form-check-label {
  color: #18ce0f;
}
.form-check-radio.form-check-radio-info .form-check-label {
  color: #2ca8ff;
}
.form-check-radio.form-check-radio-warning .form-check-label {
  color: #ffb236;
}
.form-check-radio.form-check-radio-danger .form-check-label {
  color: #ff3636;
}

/** END RADIO **/
/** BOOTSTRAP SWITCH **/
.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 30px;
  border: 0;
  position: relative;
  text-align: left;
  margin-bottom: 10px;
  line-height: 8px;
  width: 59px !important;
  height: 22px;
  outline: none;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-right: 20px;
  background: rgba(44, 44, 44, 0.2);
}
.bootstrap-switch .bootstrap-switch-container {
  display: inline-flex;
  top: 0;
  height: 22px;
  border-radius: 4px;
  transform: translateZ(0);
  width: 100px !important;
  transition: margin-left 0.5s;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
  margin-left: -39px !important;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-handle-on {
  opacity: 0;
}
.bootstrap-switch.bootstrap-switch-off:hover .bootstrap-switch-label {
  width: 27px !important;
  margin-left: -11px;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-primary {
  background: #0c39ad;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-primary .bootstrap-switch-label {
  background-color: #fff;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-success {
  background: #18ce0f;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-success .bootstrap-switch-label {
  background-color: #fff;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-info {
  background: #2ca8ff;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-info .bootstrap-switch-label {
  background-color: #fff;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-warning {
  background: #ffb236;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-warning .bootstrap-switch-label {
  background-color: #fff;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-danger {
  background: #ff3636;
}
.bootstrap-switch.bootstrap-switch-on.bootstrap-switch-danger .bootstrap-switch-label {
  background-color: #fff;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-handle-off {
  opacity: 0;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
  background-color: gray;
}
.bootstrap-switch.bootstrap-switch-on:hover .bootstrap-switch-label {
  width: 27px !important;
  margin-left: -16px;
}
.bootstrap-switch .bootstrap-switch-handle-off, .bootstrap-switch .bootstrap-switch-handle-on, .bootstrap-switch .bootstrap-switch-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block !important;
  height: 100%;
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  text-indent: -5px;
  line-height: 15px;
  transition: 0.25s ease-out;
}
.bootstrap-switch .bootstrap-switch-handle-off, .bootstrap-switch .bootstrap-switch-handle-on {
  text-align: center;
  z-index: 1;
  float: left;
  line-height: 11px;
  width: 50% !important;
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-off {
  text-indent: 6px;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  z-index: 100;
  color: #333;
  background: #fff;
  width: 22px !important;
  height: 22px !important;
  margin: 0 -11px;
  border-radius: 20px;
  position: absolute;
  float: left;
  top: 0;
  left: 50%;
  padding: 0;
  box-shadow: 0 1px 11px rgba(0, 0, 0, 0.25);
}
.bootstrap-switch input[type=checkbox], .bootstrap-switch input[type=radio] {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.bootstrap-switch.bootstrap-switch-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.bootstrap-switch.bootstrap-switch-disabled.bootstrap-switch-off:hover .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-disabled.bootstrap-switch-on:hover .bootstrap-switch-label {
  width: 22px !important;
  margin-left: -11px;
  cursor: not-allowed;
}

/** END BOOTSTRAP SWITCH **/
/** BADGE **/
.badge {
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  background-color: transparent;
  margin-bottom: 0;
  color: #fff;
  border-radius: 16px;
}
.badge:focus, .badge:hover {
  text-decoration: none;
}
.badge.badge-default, .badge.badge-default[href]:focus, .badge.badge-default[href]:hover {
  border-color: #888;
  background-color: #888;
  color: #fff;
}
.badge.badge-primary, .badge.badge-primary[href]:focus, .badge.badge-primary[href]:hover {
  border-color: #0c39ad;
  background-color: #0c39ad;
  color: #fff;
}
.badge.badge-success, .badge.badge-success[href]:focus, .badge.badge-success[href]:hover {
  border-color: #18ce0f;
  background-color: #18ce0f;
  color: #fff;
}
.badge.badge-info, .badge.badge-info[href]:focus, .badge.badge-info[href]:hover {
  border-color: #2ca8ff;
  background-color: #2ca8ff;
  color: #fff;
}
.badge.badge-warning, .badge.badge-warning[href]:focus, .badge.badge-warning[href]:hover {
  border-color: #ffb236;
  background-color: #ffb236;
  color: #fff;
}
.badge.badge-danger, .badge.badge-danger[href]:focus, .badge.badge-danger[href]:hover {
  border-color: #ff3636;
  background-color: #ff3636;
  color: #fff;
}
.badge.badge-neutral, .badge.badge-neutral[href]:focus, .badge.badge-neutral[href]:hover {
  border-color: transparent;
  background-color: transparent;
  color: #2c2c2c;
}
.badge.badge-overdue, .badge.badge-overdue[href]:focus, .badge.badge-overdue[href]:hover {
  border-color: #f96332;
  background-color: #f96332;
  color: #fff;
}
.badge.badge-blueteak, .badge.badge-blueteak[href]:focus, .badge.badge-blueteak[href]:hover {
  border-color: #20a4a0;
  background-color: #20a4a0;
  color: #fff;
}

/** END BADGE **/
/** ALERT **/
.alert.sim-alert {
  border: 0;
  border-radius: 0.1875rem;
  color: #fff;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.alert.sim-alert.sim-alert-primary {
  color: #fff;
  background-color: #0d3cb7;
}
.alert.sim-alert.sim-alert-success {
  color: #fff;
  background-color: #19d810;
}
.alert.sim-alert.sim-alert-info {
  color: #fff;
  background-color: #36acff;
}
.alert.sim-alert.sim-alert-warning {
  color: #fff;
  background-color: #ffb640;
}
.alert.sim-alert.sim-alert-danger {
  color: #fff;
  background-color: #ff4040;
}
.alert.sim-alert.sim-alert-purple {
  color: #fff;
  background-color: #7b5cab;
}
.alert.sim-alert .container {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
}
.alert.sim-alert .container .alert-icon {
  margin-right: 10px;
  flex-shrink: 0;
}
.alert.sim-alert .container .alert-icon i {
  font-size: 20px;
  width: 21px;
  text-align: center;
}
.alert.sim-alert .container .alert-text {
  padding-right: 25px;
  font-size: 12px;
  font-weight: 600;
}
.alert.sim-alert .container .alert-text strong {
  text-transform: uppercase;
  font-size: 12px;
}
.alert.sim-alert .container .alert-text.alert-text-full {
  padding-right: 0;
}
.alert.sim-alert .container .close {
  position: absolute;
  right: 0;
  color: #fff;
  opacity: 0.9;
  text-shadow: none;
  line-height: 0;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}
.alert.sim-alert .container .close i {
  font-size: 20px;
}

/** END ALERT **/
/** NOTIFY ALERT **/
[data-notify=container].alert {
  left: 10px !important;
  right: 10px !important;
  width: auto;
  padding: 0.9rem 2.8125rem 0.9rem 1.25rem;
  /*padding: .9rem 1.25rem .9rem 1.25rem;*/
}
[data-notify=container].alert.alert-with-icon {
  padding-left: 54px;
}
[data-notify=container].alert .close {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: auto !important;
  right: 15px !important;
  color: #fff;
  opacity: 0.9;
  text-shadow: none;
  line-height: 0;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}
[data-notify=container].alert .close i {
  font-size: 20px;
}
[data-notify=container].alert span[data-notify=icon] {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: auto !important;
  left: 20px !important;
  font-size: 23px;
  width: 24px;
  text-align: center;
  color: #fff;
}
[data-notify=container].alert span[data-notify=title] {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
[data-notify=container].alert span[data-notify=message] {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
}

/** END NOTIFY ALERT **/
/** HR **/
hr {
  margin: 30px 0;
  border-color: rgba(237, 206, 76, 0.4);
  box-sizing: border-box;
}

.hr-h2 {
  height: 2px;
  background: url(../images/hr-h2.png) repeat-x 0 0;
  border: 0;
  margin: 25px 0;
}

.hr-h3 {
  height: 3px;
  background: url(../images/hr-h3.png) repeat-x 0 0;
  border: 0;
  margin: 25px 0;
}

.hr-h4 {
  height: 4px;
  background: url(../images/hr-h4.png) repeat-x 0 0;
  border: 0;
  margin: 25px 0;
}

.hr-h5 {
  height: 5px;
  background: url(../images/hr-h5.png) repeat-x 0 0;
  border: 0;
  margin: 25px 0;
}

.hr-h6 {
  height: 6px;
  background: url(../images/hr-h6.png) repeat-x 0 0;
  border: 0;
  margin: 25px 0;
}

hr.sep-01 {
  border: 0;
  height: 1px;
  overflow-y: hidden;
  background-image: linear-gradient(to right, #5f5f5f, #efeff7);
}

.hr-title {
  margin-top: 11px;
  margin-bottom: 15px;
}

/** END HR **/
/** SELECT2 **/
/*.select2 {
    width: 100%!important;
}
.select2-nosearch {
    width: auto!important;
}*/
.select2-container--default .select2-selection--single {
  border-color: #e3e3e3;
}

.select2-container .select2-selection--single {
  height: 41.2px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 13.5px 18px;
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2c;
}

.select2-dropdown {
  border-color: #aeaeae;
  z-index: 9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #e3e3e3;
  border-radius: 4px;
  padding: 10px 14px;
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2c;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus, .select2-container--default .select2-search--dropdown .select2-search__field:active {
  outline: 0 !important;
  border-color: #aeaeae;
}

.select2-results__option--selectable,
.select2-results__option {
  border-color: #e3e3e3;
  padding: 13.5px 18px;
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2c;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -4px;
}

.select2-container--default .select2-results__option--disabled {
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  color: #999999;
  padding: 13.5px 18px;
}

.select2-container.select2-container--open .select2-selection {
  border-color: #aeaeae;
}

.select2-selection:focus {
  outline: 0 !important;
  border-color: #aeaeae;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #e9ecef;
}

.select2-container--default .select2-selection--multiple {
  border-color: #e3e3e3;
  border-radius: 4px;
  padding: 4.2px 13px 9.2px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-color: #f96332;
  background-color: #f96332;
  line-height: 20px;
  padding: 0;
  position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  padding: 3px 10px 3px 22px;
  line-height: 1.2;
  color: #fff;
  vertical-align: top;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 1em;
  font-weight: 400;
  padding: 0 5px;
  display: inline-block;
  line-height: 20px;
  font-size: 18px;
  overflow: hidden;
  border: 0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: transparent;
  color: #ffcbcb;
  outline: none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0 !important;
  border-color: #aeaeae;
}

/** END SELECT2 **/
/** DATEPICKER **/
.datepicker.open {
  border-color: #aeaeae;
}
.datepicker.dropdown-menu {
  padding: 10px;
  border: 1px solid #aeaeae;
  border-radius: 4px;
}
.datepicker.dropdown-menu::before {
  border-bottom-color: #888;
}
.datepicker table tr th.dow {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
}
.datepicker table tr th.datepicker-switch, .datepicker table tr th.prev, .datepicker table tr th.next {
  height: 32px;
  line-height: 32px;
  overflow-y: hidden;
  padding: 0;
}
.datepicker table tr th.datepicker-switch {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.datepicker table tr td.day {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
}
.datepicker table tr td.day.today {
  background-image: none;
  background-color: rgba(237, 206, 76, 0.2);
}
.datepicker table tr td.day.active {
  background-image: none;
  background-color: #2ca8ff;
}
.datepicker table tr td.day.disabled {
  color: #dfdfdf;
}
.datepicker table tr td.day.disabled:hover {
  cursor: not-allowed;
}
.datepicker table tfoot tr th.today, .datepicker table tfoot tr th.clear {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
}
.datepicker table tfoot tr th.clear {
  color: #ff3636;
}

.datepicker-months table tr th.prev, .datepicker-months table tr th.next {
  width: 40px;
  text-align: center;
  height: 32px;
  line-height: 32px;
  overflow-y: hidden;
  padding: 0;
}
.datepicker-months table tr th.datepicker-switch {
  height: 32px;
  line-height: 32px;
  overflow-y: hidden;
  padding: 0;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.datepicker-months table tr td {
  width: auto;
  padding: 0 !important;
}
.datepicker-months table tr td span.month {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1px;
  padding: 0;
  width: 54px;
  overflow: hidden;
  border-radius: 50%;
}
.datepicker-months table tr td span.month:nth-child(5), .datepicker-months table tr td span.month:nth-child(9) {
  clear: left;
}
.datepicker-months table tr td span.month.active {
  background-image: none;
  background-color: #2ca8ff;
}

.datepicker-years table tr th.prev, .datepicker-years table tr th.next {
  width: 40px;
  text-align: center;
  height: 32px;
  line-height: 32px;
  overflow-y: hidden;
  padding: 0;
}
.datepicker-years table tr th.datepicker-switch {
  height: 32px;
  line-height: 32px;
  overflow-y: hidden;
  padding: 0;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.datepicker-years table tr td {
  width: auto;
  padding: 0 !important;
}
.datepicker-years table tr td span.year {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1px;
  padding: 0;
  width: 54px;
  overflow: hidden;
  border-radius: 50%;
}
.datepicker-years table tr td span.year:nth-child(5), .datepicker-years table tr td span.year:nth-child(9) {
  clear: left;
}
.datepicker-years table tr td span.year.active {
  background-image: none;
  background-color: #2ca8ff;
}

/** END DATEPICKER **/
/** TABLE PLB **/
.table-plb {
  width: 100%;
  min-width: 100%;
}
.table-plb thead tr {
  background-color: #fff;
}
.table-plb thead tr th {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c6c6c;
  vertical-align: middle;
  position: relative;
}
.table-plb tfoot th {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c6c6c;
  vertical-align: middle;
}
.table-plb tbody td {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}
.table-plb tbody td .btn-icon {
  padding: 0;
  width: 40px;
  height: 34px;
}
.table-plb tbody td .btn-icon i {
  font-size: 20px;
  line-height: 34px;
}

/** END TABLE PLB **/
/** TABLE **/
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #fff;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: #ececec;
}

/** END TABLE **/
/** DATATABLES **/
.dataTable {
  width: 100%;
  min-width: 100%;
}
.dataTable thead tr {
  background-color: #fff;
}
.dataTable thead tr th {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c6c6c;
  vertical-align: middle;
}
.dataTable tfoot th {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c6c6c;
  vertical-align: middle;
}
.dataTable tbody td {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}
.dataTable tbody td .btn-icon {
  padding: 0;
  width: 40px;
  height: 34px;
}
.dataTable tbody td .btn-icon i {
  font-size: 20px;
  line-height: 34px;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  /*content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000;
  right: 6px;
  bottom: calc(50% + .5px);*/
  font-size: 14px;
  right: 7px;
  top: calc(50% - 13px);
  height: auto;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  /*content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  right: 6px;
  top: calc(50% + .5px);*/
  font-size: 14px;
  right: 3px;
  bottom: calc(50% - 13px);
  height: auto;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
  padding-right: 20px;
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: 600;
  color: #6c6c6c;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
  padding-right: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
  padding-left: 0;
}

div.dataTables_wrapper div.dataTables_length {
  text-align: left;
  margin-bottom: 10px;
}
div.dataTables_wrapper div.dataTables_length select {
  width: 70px !important;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: left;
  margin-bottom: 5px;
}

div.dataTables_wrapper div.dataTables_info {
  font-family: "Montserrat", "Helvetica Neue", "Open Sans", arial, sans-serif;
  font-size: 11px;
  color: #6c6c6c;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  margin-top: 15px;
}

div.dataTables_wrapper div.dataTables_paginate {
  margin-top: 10px;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  justify-content: flex-end !important;
}

.page-link {
  font-family: "Montserrat", "Helvetica Neue", "Open Sans", arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.dt-buttons .btn {
  height: 37.6px;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: normal;
  text-align: left;
}

div.table-responsive > div.dataTables_wrapper > div.row:last-child > div[class^=col-]:first-child {
  flex: 0 0 100%;
  max-width: 100%;
}

div.table-responsive > div.dataTables_wrapper > div.row:last-child > div[class^=col-]:last-child {
  flex: 0 0 100%;
  max-width: 100%;
}

div.dataTables_wrapper div.dataTables_paginate {
  width: 100%;
  overflow-x: auto;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  justify-content: unset !important;
  flex: 0 0 100%;
  overflow-x: auto;
}

.DTFC_RightHeadWrapper .DTFC_RightHeadBlocker,
.DTFC_LeftHeadWrapper .DTFC_LeftHeadBlocker {
  background-color: #fff;
  border-top: 1px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
}

.DTFC_RightFootWrapper .DTFC_RightFootBlocker,
.DTFC_LeftFootWrapper .DTFC_LeftFootBlocker {
  /*background-color: #fff;*/
  border-top: 1px solid #dee2e6;
}

.DTFC_RightBodyWrapper,
.DTFC_LeftBodyWrapper {
  top: -6px !important;
  /*max-height: calc(100% - 6px);*/
}

.DTFC_RightFootWrapper,
.DTFC_LeftFootWrapper {
  top: -6px !important;
  /*max-height: calc(100% - 6px);*/
}

.DTFC_RightBodyWrapper table.dataTable,
.DTFC_LeftBodyWrapper table.dataTable {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.DTFC_RightFootWrapper table.dataTable,
.DTFC_LeftFootWrapper table.dataTable {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.DTFC_RightBodyWrapper table.dataTable tbody tr:first-child > td,
.DTFC_LeftBodyWrapper table.dataTable tbody tr:first-child > td {
  border-top: 0 !important;
}

.DTFC_RightFootWrapper table.dataTable tfoot tr:first-child > th,
.DTFC_LeftFootWrapper table.dataTable tfoot tr:first-child > th {
  border-top: 0 !important;
}

.DTFC_RightBodyLiner,
.DTFC_LeftBodyLiner {
  overflow-x: hidden;
  overflow-y: hidden;
}

.DTFC_RightBodyLiner table.dataTable thead tr th::before,
.DTFC_RightBodyLiner table.dataTable thead tr th::after,
.DTFC_LeftBodyLiner table.dataTable thead tr th::before,
.DTFC_LeftBodyLiner table.dataTable thead tr th::after {
  display: none;
}

.dtfixed {
  table-layout: fixed;
}

table.dataTable > thead > tr > th:not(.sorting_disabled), table.dataTable > thead > tr > td:not(.sorting_disabled) {
  padding-right: 0.75rem;
}

/** END DATATABLES **/
/** CONFIRMATION MODAL **/
#mdlConf_delete .modal-dialog,
#mdlConf_delete_wo_ahref .modal-dialog {
  width: 90%;
  margin: 0 auto;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mdlConf_delete .modal-dialog .modal-content,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
#mdlConf_delete .modal-dialog .modal-content .modal-header,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-header {
  text-align: center;
  border-bottom: none;
}
#mdlConf_delete .modal-dialog .modal-content .modal-header .icon-box,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-header .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -47.5px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 9;
  background: #ff3636;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
#mdlConf_delete .modal-dialog .modal-content .modal-header .icon-box i,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-header .icon-box i {
  display: inline-block;
  font-size: 58px;
  text-align: center;
  line-height: 95px;
  overflow: hidden;
}
#mdlConf_delete .modal-dialog .modal-content .modal-header .modal-title,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-header .modal-title {
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0 -15px;
  margin-right: auto !important;
  margin-left: auto !important;
}
#mdlConf_delete .modal-dialog .modal-content .modal-body,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
#mdlConf_delete .modal-dialog .modal-content .modal-body p,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-body p {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
#mdlConf_delete .modal-dialog .modal-content .modal-footer,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-footer {
  border-top: 0;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mdl-info-alert .modal-dialog {
  width: 90%;
  margin: 0 auto;
  top: 50%;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.mdl-info-alert .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header {
  text-align: center;
  border-bottom: none;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -47.5px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 9;
  background: #ff3636;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box.icon-box-danger {
  background: #ff3636;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box.icon-box-success {
  background: #18ce0f;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box.icon-box-info {
  background: #2ca8ff;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box.icon-box-warning {
  background: #ffb236;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box.icon-box-primary {
  background: #0c39ad;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .icon-box i {
  display: inline-block;
  font-size: 58px;
  text-align: center;
  line-height: 95px;
  overflow: hidden;
}
.mdl-info-alert .modal-dialog .modal-content .modal-header .modal-title {
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0 -15px;
  margin-right: auto !important;
  margin-left: auto !important;
}
.mdl-info-alert .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mdl-info-alert .modal-dialog .modal-content .modal-body p {
  /*font-family: "Montserrat", "Open Sans", arial;*/
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
.mdl-info-alert .modal-dialog .modal-content .modal-footer {
  border-top: 0;
  padding-bottom: 0.8rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

#mdlConf_default .modal-dialog,
.mdl-conf-default .modal-dialog {
  width: 90%;
  margin: 0 auto;
  top: 50%;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
#mdlConf_default .modal-dialog .modal-content,
.mdl-conf-default .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
#mdlConf_default .modal-dialog .modal-content .modal-header,
.mdl-conf-default .modal-dialog .modal-content .modal-header {
  padding: 0 15px;
  border-bottom: none;
  position: relative;
}
#mdlConf_default .modal-dialog .modal-content .modal-header .modal-title,
.mdl-conf-default .modal-dialog .modal-content .modal-header .modal-title {
  display: inline-block;
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
#mdlConf_default .modal-dialog .modal-content .modal-header .close,
.mdl-conf-default .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  background-color: #ff3636;
  text-shadow: none;
  opacity: 1;
  width: 50px;
  height: 24px;
  overflow: hidden;
  margin: 0;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 4px;
  padding: 0;
}
#mdlConf_default .modal-dialog .modal-content .modal-header .close i,
.mdl-conf-default .modal-dialog .modal-content .modal-header .close i {
  color: #fff;
  font-size: 16px;
  float: none;
  display: inline-block;
}
#mdlConf_default .modal-dialog .modal-content .modal-body,
.mdl-conf-default .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
#mdlConf_default .modal-dialog .modal-content .modal-body p,
.mdl-conf-default .modal-dialog .modal-content .modal-body p {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
#mdlConf_default .modal-dialog .modal-content .modal-footer,
.mdl-conf-default .modal-dialog .modal-content .modal-footer {
  background: #ecf0f1;
  border-color: #e6eaec;
  text-align: right;
  margin: 0 -20px -20px;
  border-radius: 0 0 5px 5px;
}
#mdlConf_default .modal-dialog .modal-content .modal-footer .btn-close,
.mdl-conf-default .modal-dialog .modal-content .modal-footer .btn-close {
  margin-right: 15px;
}

.mdl_confDef .modal-dialog {
  width: 90%;
  margin: 0 auto;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%) !important;
}
.mdl_confDef .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
.mdl_confDef .modal-dialog .modal-content .modal-header {
  padding: 0 15px;
  border-bottom: none;
  position: relative;
}
.mdl_confDef .modal-dialog .modal-content .modal-header .modal-title {
  display: inline-block;
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.mdl_confDef .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  background-color: #ff3636;
  text-shadow: none;
  opacity: 1;
  width: 50px;
  height: 24px;
  overflow: hidden;
  margin: 0;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 4px;
  padding: 0;
}
.mdl_confDef .modal-dialog .modal-content .modal-header .close i {
  color: #fff;
  font-size: 16px;
  float: none;
  display: inline-block;
}
.mdl_confDef .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mdl_confDef .modal-dialog .modal-content .modal-body p {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
.mdl_confDef .modal-dialog .modal-content .modal-footer {
  background: #ecf0f1;
  border-color: #e6eaec;
  text-align: right;
  margin: 0 -20px -20px;
  border-radius: 0 0 5px 5px;
}
.mdl_confDef .modal-dialog .modal-content .modal-footer .btn-close {
  margin-right: 15px;
}

/** END CONFIRMATION MODAL **/
/** POP UP MODAL **/
#mdlPopUp .modal-dialog,
#mdlFK .modal-dialog {
  max-width: 90%;
  margin: 1.75rem auto;
  /*        top: 50%;
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);*/
}
#mdlPopUp .modal-dialog .modal-content,
#mdlFK .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
#mdlPopUp .modal-dialog .modal-content .modal-header,
#mdlFK .modal-dialog .modal-content .modal-header {
  padding: 0 15px;
  border-bottom: none;
  position: relative;
}
#mdlPopUp .modal-dialog .modal-content .modal-header .modal-title,
#mdlFK .modal-dialog .modal-content .modal-header .modal-title {
  display: inline-block;
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
#mdlPopUp .modal-dialog .modal-content .modal-header .close,
#mdlFK .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  background-color: #ff3636;
  text-shadow: none;
  opacity: 1;
  width: 50px;
  height: 24px;
  overflow: hidden;
  margin: 0;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 4px;
  padding: 0;
}
#mdlPopUp .modal-dialog .modal-content .modal-header .close i,
#mdlFK .modal-dialog .modal-content .modal-header .close i {
  color: #fff;
  font-size: 16px;
  float: none;
  display: inline-block;
}
#mdlPopUp .modal-dialog .modal-content .modal-body,
#mdlFK .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
#mdlPopUp .modal-dialog .modal-content .modal-body p,
#mdlFK .modal-dialog .modal-content .modal-body p {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
#mdlPopUp .modal-dialog .modal-content .modal-footer,
#mdlFK .modal-dialog .modal-content .modal-footer {
  background: #ecf0f1;
  border-color: #e6eaec;
  text-align: right;
  margin: 0 -20px -20px;
  border-radius: 0 0 5px 5px;
}
#mdlPopUp .modal-dialog .modal-content .modal-footer .btn-close,
#mdlFK .modal-dialog .modal-content .modal-footer .btn-close {
  margin-right: 15px;
}

.mdl-form .modal-dialog {
  max-width: 90%;
  margin: 1.75rem auto;
  top: 50%;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.mdl-form .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 4px;
  border: none;
}
.mdl-form .modal-dialog .modal-content .modal-header {
  padding: 0 15px;
  border-bottom: none;
  position: relative;
}
.mdl-form .modal-dialog .modal-content .modal-header .modal-title {
  display: inline-block;
  font-family: "Merriweather", arial;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.mdl-form .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  background-color: #ff3636;
  text-shadow: none;
  opacity: 1;
  width: 50px;
  height: 24px;
  overflow: hidden;
  margin: 0;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 4px;
  padding: 0;
}
.mdl-form .modal-dialog .modal-content .modal-header .close i {
  color: #fff;
  font-size: 16px;
  float: none;
  display: inline-block;
}
.mdl-form .modal-dialog .modal-content .modal-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mdl-form .modal-dialog .modal-content .modal-body p {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
.mdl-form .modal-dialog .modal-content .modal-footer {
  background: #ecf0f1;
  border-color: #e6eaec;
  text-align: right;
  margin: 0 -20px -20px;
  border-radius: 0 0 5px 5px;
}
.mdl-form .modal-dialog .modal-content .modal-footer .btn-close {
  margin-right: 15px;
}

#mdlFK .modal-dialog .modal-content .modal-header .modal-title,
.mdl-form .modal-dialog .modal-content .modal-header .modal-title {
  font-family: "Montserrat", "Open Sans", arial;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  margin-right: 20px;
  text-align: left;
}

/** END POP UP MODAL **/
/** TAGSINPUT **/
.bootstrap-tagsinput {
  display: block;
  width: 100% !important;
  background-clip: padding-box;
  background-color: #fff !important;
  border: 1px solid #e3e3e3 !important;
  border-radius: 4px;
  color: #2c2c2c;
  line-height: 25px !important;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: none !important;
  padding: 7.2px 18px !important;
}
.bootstrap-tagsinput input {
  padding: 0 !important;
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: #fff;
  background-color: #0c39ad;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px 3px 10px;
  border-radius: 2px;
  line-height: 1;
  position: relative;
  top: -1px;
}
.bootstrap-tagsinput .tag span {
  position: relative;
  top: -1px;
}
.bootstrap-tagsinput.focus {
  border: 1px solid #aeaeae !important;
  box-shadow: none !important;
  outline: 0 !important;
  color: #2c2c2c !important;
}

/** END TAGSINPUT **/
.link-arsip {
  display: inline-block;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.link-arsip .ico-arsip {
  font-size: 26px;
  color: #6f519d;
}
.link-arsip:hover {
  text-decoration: none;
}
.link-arsip:hover .ico-arsip {
  color: #281d38;
}

[class*=btn-outline-] {
  border: 1px solid;
  padding: 10px 22px;
}

.tippy-box {
  font-size: 10px;
  border-radius: 2px;
}

.tippy-content {
  font-family: "Montserrat", "Open Sans", arial;
  font-weight: 700;
  text-transform: uppercase;
}

.clear-filter[filter-color=orange] {
  background: rgba(44, 44, 44, 0.2);
  background: -webkit-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6));
  background: -o-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6));
  background: -moz-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6));
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6));
}
.clear-filter[filter-color=blue] {
  background: rgba(44, 44, 44, 0.2);
  background: -webkit-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(50, 107, 255, 0.6));
  background: -o-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(50, 107, 255, 0.6));
  background: -moz-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(50, 107, 255, 0.6));
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(50, 107, 255, 0.6));
}
.clear-filter[filter-color=lightbrown] {
  background: rgba(44, 44, 44, 0.2);
  background: -webkit-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(237, 206, 76, 0.6));
  background: -o-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(50, 237, 76, 0.6));
  background: -moz-linear-gradient(90deg, rgba(44, 44, 44, 0.2), rgba(237, 206, 76, 0.6));
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(237, 206, 76, 0.6));
}
.clear-filter:after, .clear-filter:before {
  display: none;
}

.card .card-body {
  padding: 15px;
}

label {
  margin-bottom: 1px;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
label.control-label {
  color: #7e7e7e;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}
label.control-label.cl-top {
  align-items: flex-start;
  padding-top: 12px;
}
label.control-label .label-title {
  font-size: 12px;
  font-weight: 700;
  color: #cb218e;
}
label.control-label-check {
  line-height: 25.6px;
}

textarea {
  resize: none;
}

.card-plain {
  background: transparent;
  box-shadow: none;
}

img {
  max-width: 100%;
  border-radius: 1px;
}

.btn-round {
  border-width: 1px;
  border-radius: 30px !important;
  padding: 11px 23px;
}

.btn-lg {
  font-size: 1em;
  border-radius: 0.25rem;
  padding: 15px 48px;
}

.fa {
  position: relative;
  top: 1px;
}

.patern-1 {
  background-image: linear-gradient(45deg, #f7f7f7 25%, #ffffff 25%, #ffffff 50%, #f7f7f7 50%, #f7f7f7 75%, #ffffff 75%, #ffffff 100%) !important;
  background-size: 56.57px 56.57px !important;
}

.c-input-info {
  line-height: 1.1;
}

.input-info {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 10px;
  font-weight: 600;
  color: #9fa6ad;
  line-height: 1.2;
  display: inline-block;
  margin: 5px 0 5px 0;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.spinner-container {
  height: 135px;
}

.loader-1,
.loader-1:before,
.loader-1:after {
  background: #edce4c;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader-1 {
  color: #edce4c;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader-1:before,
.loader-1:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader-1:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader-1:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.loader-2 {
  color: #edce4c;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load2 1.7s infinite ease, round 1.7s infinite ease;
  animation: load2 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load2 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load2 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.datepicker.dropdown-menu {
  z-index: 999 !important;
}

@media (min-width: 380px) {
  #mdlConf_delete .modal-dialog,
#mdlConf_delete_wo_ahref .modal-dialog {
    width: 350px;
  }

  .mdl-info-alert .modal-dialog {
    width: 350px;
  }
}
@media (min-width: 580px) {
  #mdlConf_default .modal-dialog,
.mdl-conf-default .modal-dialog {
    width: 550px;
  }

  .mdl_confDef .modal-dialog {
    width: 550px;
  }

  /*    .mdl-info-alert {
          .modal-dialog {
              width: 550px;
          }
      }*/
}
@media (min-width: 640px) {
  #mdlPopUp .modal-dialog,
#mdlFK .modal-dialog,
.mdl-form .modal-dialog {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 768px) {
  /** NOTIFY ALERT **/
  [data-notify=container].alert {
    left: 275px !important;
    right: 15px !important;
  }

  .sidebar-collapse [data-notify=container].alert {
    left: 85px !important;
  }

  .login-page [data-notify=container].alert {
    left: 0 !important;
    right: 0 !important;
    margin-left: 15% !important;
    margin-right: 15% !important;
  }

  .btn.btn-submit-m {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  div.dataTables_wrapper div.dataTables_info {
    margin-top: 15px;
    text-align: left;
  }

  div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 15px;
  }

  div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
    margin-bottom: 5px;
  }
  div.dataTables_wrapper div.dataTables_filter label {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div.dataTables_wrapper div.dataTables_filter input {
    width: 100%;
  }

  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: flex-end !important;
  }

  div.dataTables_wrapper div.dataTables_info {
    text-align: right;
  }

  /** END NOTIFY ALERT **/
}
@media (min-width: 845px) {
  div.dataTables_wrapper div.dataTables_filter label {
    display: inline-block;
  }
  div.dataTables_wrapper div.dataTables_filter input {
    width: auto;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body {
    font-family: arial, sans-serif;
  }

  .btn {
    height: auto;
    line-height: normal;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn.btn-round {
    padding: 12px 22px;
  }
  .btn.btn-outline-primary {
    padding: 11px 22px;
  }
  .btn.btn-upload {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn.btn-icon {
    padding-top: 9.2px;
    padding-bottom: 9.2px;
  }
  .btn.btn-icon i {
    height: 18.4px;
  }
  .btn.btn-icon-only {
    padding: 4.8px 9px;
  }
  .btn.btn-icon-only i {
    height: auto;
    text-align: center;
  }
  .btn.btn-submit-m {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .form-control {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    /*padding: 9.5px 13px 8.5px 13px;*/
    padding: 10px 13px 9px 13px;
    border-radius: 0.25rem;
    /*color: lighten($body_co, 18%);*/
  }
  .form-control:focus {
    color: #5a5a5a;
  }

  .input-group .input-group-prepend .input-group-text {
    border-radius: 0.25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 9px 0 9px 13px;
  }
  .input-group .input-group-prepend .input-group-text i {
    top: 0;
  }
  .input-group .input-group-append .input-group-text {
    border-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 9px 13px 9px 0;
  }
  .input-group .input-group-append .input-group-text i {
    top: 0;
  }
  .input-group .form-control:first-child {
    padding-right: 7px;
  }
  .input-group .form-control:last-child {
    padding-left: 7px;
  }

  .form-group {
    margin-bottom: 12px;
  }
  .form-group.has-success::after {
    right: 11px;
    top: 3px;
  }
  .form-group.has-success .form-control {
    padding-right: 34px;
  }
  .form-group.has-success .form-control.form-control-success:focus {
    color: #18ce0f;
  }
  .form-group.has-danger::after {
    right: 11px;
    top: 6.5px;
  }
  .form-group.has-danger .form-control {
    padding-right: 34px;
  }
  .form-group.has-danger .form-control.form-control-danger:focus {
    color: #ff3636;
  }

  .badge {
    font-family: "Montserrat", "Open Sans", arial;
    font-size: 9px;
  }

  .login-page [data-notify=container].alert {
    left: 0 !important;
    right: 0 !important;
    margin-left: 25% !important;
    margin-right: 25% !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default .select2-results__option--disabled {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
    padding: 11.1px 13px 12.1px 13px;
  }

  .select2-results__option--selectable, .select2-results__option {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
    padding: 11.6px 13px;
  }

  .select2-container--default .select2-search--dropdown .select2-search__field {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
    padding: 9.5px 13px 8.5px 13px;
  }

  .select2-container .select2-selection--single {
    height: 36.8px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36.8px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -3px;
  }

  .select2-container--open .select2-dropdown--below .select2-results {
    margin-left: -0.5px;
  }

  .select2-container--default .select2-selection--multiple {
    padding: 2.5px 13px 7.5px 5px;
  }

  .badge {
    font-weight: 600;
  }

  .control-label {
    height: 36.8px;
  }
  .control-label.control-label-status {
    height: 22px;
  }
  .control-label.control-label-check {
    height: 25.6px;
  }

  .alert.sim-alert .container .alert-text {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
  }
  .alert.sim-alert .container .alert-text.alert-text-full {
    font-weight: 400;
  }
  .alert.sim-alert .container .alert-text strong {
    font-family: "Montserrat", "Open Sans", arial;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    top: -1px;
    /*display: block;*/
  }

  [data-notify=container].alert span[data-notify=title] {
    position: relative;
    top: -0.5px;
  }
  [data-notify=container].alert span[data-notify=message] {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
  }

  .dt-buttons .btn {
    height: 36.8px;
  }

  #mdlConf_delete .modal-dialog .modal-content .modal-body p,
#mdlConf_delete_wo_ahref .modal-dialog .modal-content .modal-body p {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
  }

  .bootstrap-tagsinput {
    line-height: 24px !important;
    padding: 6.5px 13px 5.5px 13px !important;
  }
  .bootstrap-tagsinput input {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  div.table-responsive > div.dataTables_wrapper > div.row:last-child {
    align-items: center;
  }

  div.table-responsive > div.dataTables_wrapper > div.row:last-child > div[class^=col-]:first-child {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  div.table-responsive > div.dataTables_wrapper > div.row:last-child > div[class^=col-]:last-child {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  div.dataTables_wrapper div.dataTables_info {
    padding-top: 0;
  }

  div.dataTables_wrapper div.dataTables_info {
    text-align: left;
  }
}
@media (min-width: 1234px) {
  #mdlPopUp .modal-dialog,
#mdlFK .modal-dialog,
.mdl-form .modal-dialog {
    max-width: 1024px;
  }
}
.login-page {
  max-height: 100vh;
  overflow-y: hidden;
}
.login-page .page-header {
  min-height: 100vh;
  max-height: 999px;
  padding: 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.login-page .page-header:before {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.login-page .page-header .page-header-image {
  position: absolute;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.login-page .page-header > .content {
  /*margin-top: 12%;*/
  text-align: center;
  height: calc(100vh - 62.4px);
  /*margin-bottom: 50px;*/
}
.login-page .page-header > .content .container {
  height: 100%;
  z-index: 1;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-page .page-header > .content .container .card-login {
  border: 0;
  border-radius: 0.25rem;
  padding-bottom: 0.7rem;
  margin-bottom: 30px;
  max-width: 320px;
}
.login-page .page-header > .content .container .card-login .card-header {
  border-bottom: 0;
  background-color: transparent;
  border-radius: 0;
  padding: 0 5px 0 px;
  padding-bottom: 0 !important;
  margin-bottom: 20px;
}
.login-page .page-header > .content .container .card-login .card-header .logo-container {
  width: 220px;
  margin: 0 auto;
}
.login-page .page-header > .content .container .card-login .card-header .logo-container img {
  height: 110px;
}
.login-page .page-header > .content .container .card-login .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
  padding-left: 5px;
  padding-right: 5px;
}
.login-page .page-header > .content .container .card-login .card-body .input-group {
  margin-bottom: 10px;
  position: relative;
}
.login-page .page-header > .content .container .card-login .card-body .input-group .input-group-prepend {
  margin-right: 0;
}
.login-page .page-header > .content .container .card-login .card-body .input-group .input-group-prepend .input-group-text {
  -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  /*padding: 12.6px 0 12.6px 19px;
  padding: 0 0 0 19px;
  height: 46px;*/
  padding-left: 19px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.8);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .input-group-prepend .input-group-text i {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
}
.login-page .page-header > .content .container .card-login .card-body .input-group.input-group-focus .input-group-prepend .input-group-text {
  background-color: rgba(255, 255, 255, 0.2);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control {
  -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  height: auto;
  border-radius: 30px;
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: medium none;
  border-left: 0 none;
  padding: 15.4px 19px 15.4px 12px;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control::placeholder {
  color: #ebebeb;
  opacity: 1;
  filter: alpha(opacity=100);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control::-moz-placeholder {
  color: #ebebeb;
  opacity: 1;
  filter: alpha(opacity=100);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control:-moz-placeholder {
  color: #ebebeb;
  opacity: 1;
  filter: alpha(opacity=100);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control::-webkit-input-placeholder {
  color: #ebebeb;
  opacity: 1;
  filter: alpha(opacity=100);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control:-ms-input-placeholder {
  color: #ebebeb;
  opacity: 1;
  filter: alpha(opacity=100);
}
.login-page .page-header > .content .container .card-login .card-body .input-group .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
.login-page .page-header > .content .container .card-login .card-body .input-group:last-child {
  /*margin-bottom: 40px;*/
}
.login-page .page-header > .content .container .card-login .card-footer {
  padding: 0;
  margin-top: 15px;
  background-color: transparent;
  border: 0;
  padding-left: 5px;
  padding-right: 5px;
}
.login-page .page-header > .content .container .card-login .card-footer .btn {
  cursor: pointer;
  border: none;
  margin: 10px 0;
  padding: 15px 48px;
  line-height: 1.35em;
  font-size: 11px;
  font-weight: 700;
  -webkit-transition: all 150ms ease 0s;
  -moz-transition: all 150ms ease 0s;
  -o-transition: all 150ms ease 0s;
  -ms-transition: all 150ms ease 0s;
  transition: all 150ms ease 0s;
  background-color: #ff7e00;
}
.login-page .page-header > .content .container .card-login .card-footer .btn:hover {
  background-color: #ff9227 !important;
}
.login-page .page-header > .content .container .card-login .card-footer .btn:active {
  background-color: #fe9e40 !important;
}
.login-page .page-header > .content .container .card-login .card-footer .link {
  background-color: transparent;
  webkit-transition: all 150ms ease 0s;
  -moz-transition: all 150ms ease 0s;
  -o-transition: all 150ms ease 0s;
  -ms-transition: all 150ms ease 0s;
  transition: all 150ms ease 0s;
  font-size: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.login-page .page-header .footer {
  display: block;
  padding: 24px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 9px;
  font-weight: 600;
}

@media screen and (min-width: 381px) {
  .login-page .page-header > .content .container .card-login {
    width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 700px) {
  .login-page .page-header > .content {
    /*margin-top: 8%;*/
  }
}
@media screen and (min-width: 992px) {
  .login-page .page-header > .content {
    /*margin-top: 6%;*/
  }
  .login-page .page-header > .content .container .card-login .card-body .input-group .input-group-prepend .input-group-text i {
    position: relative;
    top: -1px;
  }
  .login-page .page-header > .content .container .card-login .card-body .input-group .form-control {
    font-size: 14px;
  }
  .login-page .page-header > .content .container .card-login .card-footer .link {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  }
}
.scrollable {
  overflow: auto;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
.scrollable::-webkit-scrollbar {
  display: none;
}

.sidebar {
  background-color: #90681f !important;
  background: url("../images/bg-gradient-01.png") no-repeat;
  background-size: cover;
  width: 100vw;
  left: -100vw;
  bottom: 0;
  top: 0;
  overflow: hidden;
  position: fixed;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1000;
}
.sidebar .sidebar-inner {
  position: relative;
  height: 100%;
}
.sidebar .sidebar-inner .sidebar-logo {
  text-align: left;
  height: 50px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
  background: none;
}
.sidebar .sidebar-inner .sidebar-logo .logo {
  background: url(../images/logo-text-hd-wh-01.svg) left 72% no-repeat;
  background-size: auto 37px;
  text-indent: -999em;
  position: absolute;
  height: 50px;
  width: 195px;
  left: 0;
  top: 0;
  z-index: 161;
  display: inline-block;
  margin: 0 15px;
}
.sidebar .sidebar-inner .sidebar-logo .close-mobile-menu {
  display: block;
  float: right;
  cursor: pointer;
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.sidebar .sidebar-inner .sidebar-logo .close-mobile-menu i {
  font-size: 18px;
  line-height: 50px;
  min-height: 50px;
  padding: 0;
  color: #fff;
}
.sidebar .sidebar-inner .sidebar-menu {
  border-right: 1px solid rgba(0, 0, 0, 0.0625);
  height: calc(100vh - 50px);
  list-style-type: none;
  list-style: none;
  margin: 0;
  overflow: auto;
  padding: 0 15px;
  position: relative;
}
.sidebar .sidebar-inner .sidebar-menu > li {
  position: relative;
}
.sidebar .sidebar-inner .sidebar-menu > li.nav-heading {
  padding: 10px 0;
  border-bottom: 1px solid rgba(237, 206, 76, 0.3);
  color: #edce4c;
  opacity: 1;
  white-space: nowrap;
  position: relative;
  font-family: "Montserrat", "Open Sans", arial, -apple-system, BlinkMacSystemFont;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.sidebar .sidebar-inner .sidebar-menu > li > a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  line-height: 2.8rem;
  padding: 0 1.5rem 0 40px;
  position: relative;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: "Montserrat", "Open Sans", arial;
  text-transform: uppercase;
  margin: 0;
  margin-top: 2px;
  cursor: pointer;
}
.sidebar .sidebar-inner .sidebar-menu > li > a > i {
  width: 34px;
  line-height: 2.8rem;
  position: absolute;
  left: 5px;
  font-size: 20px;
  transition: color 300ms;
  color: #fff;
}
.sidebar .sidebar-inner .sidebar-menu > li > a > i.mdi-chevron-down {
  text-align: right;
  line-height: 2.8rem;
  font-size: 14px;
  transition: color 300ms;
  transition: transform 300ms;
  left: auto;
  right: 1px;
}
.sidebar .sidebar-inner .sidebar-menu > li > a > i.mdi-menu-down {
  text-align: right;
  line-height: 2.8rem;
  font-size: 18px;
  transition: color 300ms;
  transition: transform 300ms;
  left: auto;
  right: 5px;
}
.sidebar .sidebar-inner .sidebar-menu > li > a:hover {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li > a:hover > i {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li.active > a {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li.active > a > i {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a > i {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a > i.mdi-chevron-down {
  top: -1px;
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a > i.mdi-chevron-down::before {
  content: "󰅃";
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a > i.mdi-menu-down {
  top: -1px;
}
.sidebar .sidebar-inner .sidebar-menu > li.open > a > i.mdi-menu-down::before {
  content: "󰍠";
}
.sidebar .sidebar-inner .sidebar-menu > li > ul {
  margin: 0;
  position: relative;
  list-style: none;
  transition: padding 300ms;
  padding: 0 0 0 40px;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul:not(.mm-show) {
  display: none;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul::before {
  display: none;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li {
  position: relative;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li > a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", arial, -apple-system, BlinkMacSystemFont;
  font-size: 10px;
  font-weight: 600;
  line-height: 2.4rem;
  padding: 0 1.5rem 0 19px;
  position: relative;
  border-radius: 0.25rem;
  transition: all 0.2s;
  margin: 0.1rem 0;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li > a::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0px;
  width: 10px;
  border-top: 1px solid #ffffff;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li > a:hover {
  text-decoration: none;
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li > a:hover::before {
  border-color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li.active > a {
  color: #edce4c;
}
.sidebar .sidebar-inner .sidebar-menu > li > ul > li.active > a::before {
  border-color: #edce4c;
}

.sidebar-mobile .sidebar {
  left: 0;
}

.sic-layers-1 {
  top: 0;
}

.sic-earth {
  top: 1px;
}

.sic-calendar-6 {
  top: 0.5px;
}

.sic-laptop-phone {
  top: 0;
}

@media screen and (min-width: 768px) {
  .sidebar {
    width: 260px;
    left: 0;
    background-color: #fff !important;
    background: none;
  }
  .sidebar .sidebar-inner .sidebar-logo {
    height: 60px;
    background-color: #88621e;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
  }
  .sidebar .sidebar-inner .sidebar-logo .logo {
    display: inline-block;
    height: 40px;
    margin: 10px 15px;
  }
  .sidebar .sidebar-inner .sidebar-logo .close-mobile-menu {
    display: none;
  }
  .sidebar .sidebar-inner .sidebar-menu {
    height: calc(100vh - 60px);
  }
  .sidebar .sidebar-inner .sidebar-menu > li.nav-heading {
    padding: 8px 0;
    color: #b94b41;
    border-bottom: 0;
  }
  .sidebar .sidebar-inner .sidebar-menu > li:first-child.nav-heading {
    padding-top: 12px;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a {
    color: #513b12;
    margin: 0.1rem 0;
    line-height: 2.4rem;
    padding-left: 45px;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a:hover {
    background: rgba(237, 206, 76, 0.3);
    color: #271c09;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a:hover i {
    color: #c25b51;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a:hover i.sic-chevron-down-1 {
    opacity: 1;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a:hover i.mdi-chevron-down {
    opacity: 1;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a:hover i.mdi-menu-down {
    opacity: 1;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a > i {
    text-align: center;
    line-height: 2.4rem;
    opacity: 1;
    color: #c96d64;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a > i.mdi-chevron-down {
    opacity: 1;
    line-height: 2.5rem;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > a > i.mdi-menu-down {
    opacity: 1;
    line-height: 2.5rem;
  }
  .sidebar .sidebar-inner .sidebar-menu > li.open > a {
    color: #271c09;
    /*background: transparentize($gold, 0.8);*/
  }
  .sidebar .sidebar-inner .sidebar-menu > li.open > a > i {
    color: #c25b51;
  }
  .sidebar .sidebar-inner .sidebar-menu > li.active > a {
    color: #271c09;
    background: rgba(237, 206, 76, 0.3);
  }
  .sidebar .sidebar-inner .sidebar-menu > li.active > a > i {
    color: #c25b51;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul {
    padding: 0.1em 0 0.1em 2rem;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul.mm-show::before {
    display: block;
    content: "";
    height: 100%;
    opacity: 1;
    width: 3px;
    background: rgba(237, 206, 76, 0.3);
    position: absolute;
    left: 20px;
    top: 0;
    border-radius: 15px;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul > li > a {
    color: #513b12;
    padding-left: 14px;
    line-height: 1.4;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul > li > a:hover {
    background: rgba(237, 206, 76, 0.3);
    color: #271c09;
    text-decoration: none;
    font-weight: 600;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul > li > a::before {
    display: none;
  }
  .sidebar .sidebar-inner .sidebar-menu > li > ul.mm-show > li.active > a {
    background: rgba(237, 206, 76, 0.3);
    color: #271c09;
    text-decoration: none;
    font-weight: 600;
  }

  .sidebar-collapse .sidebar {
    width: 70px;
  }
  .sidebar-collapse .sidebar:hover {
    width: 260px;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-logo .logo {
    background: url(../images/logo-text-hd-wh-01.svg) left 50% no-repeat;
    background-size: auto 34px;
    height: 60px;
    width: 195px;
    margin: 0 15px;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li.nav-heading {
    text-indent: 0;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li.nav-heading::before {
    width: 0;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li > a {
    text-indent: 0;
    padding: 0 1.5rem 0 45px;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li > a > i {
    text-indent: 0;
    left: 5px;
    margin-left: 0;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li > a > i.sic-chevron-down-1 {
    visibility: visible;
    left: auto;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li > a > i.mdi-menu-down {
    visibility: visible;
    left: auto;
  }
  .sidebar-collapse .sidebar:hover .sidebar-inner .sidebar-menu > li > ul.mm-show {
    display: block;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-logo .logo {
    background: url(../images/logo-wh-01.svg) left 50% no-repeat;
    background-size: auto 40px;
    height: 60px;
    width: 40px;
    margin: 0 16px 0 14px;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li.nav-heading {
    text-indent: -999em;
    padding: 8px 0;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li.nav-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #edce4c;
    text-indent: 1px;
    overflow: hidden;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li > a {
    text-indent: -99rem;
    padding: 0;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li > a > i {
    text-indent: 0;
    left: 50%;
    margin-left: -17px;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li > a > i.sic-chevron-down-1 {
    visibility: hidden;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li > a > i.mdi-menu-down {
    visibility: hidden;
  }
  .sidebar-collapse .sidebar .sidebar-inner .sidebar-menu > li > ul.mm-show {
    display: none;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .sidebar .sidebar-inner .sidebar-menu > li.nav-heading {
    font-family: -apple-system, BlinkMacSystemFont, arial;
  }
  .sidebar .sidebar-inner .sidebar-menu > li:first-child.nav-heading {
    padding-top: 14px;
  }
}
.page-container {
  min-height: 100vh;
  padding-left: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #efeff7;
}

@media (min-width: 768px) {
  .page-container {
    padding-left: 260px;
  }

  .sidebar-collapse .page-container {
    padding-left: 70px;
  }
}
.header {
  background-color: #a57724;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0625);
  display: block;
  height: 50px;
  margin-bottom: 0;
  padding: 0;
  position: fixed;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  z-index: 800;
  box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
}
.header .header-container > ul {
  list-style: none;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}
.header .header-container > ul.nav-left {
  float: left;
}
.header .header-container > ul.nav-right {
  float: right;
  margin-right: 0;
}
.header .header-container > ul.nav-right > li:last-child > a {
  padding-right: 15px;
}
.header .header-container > ul > li {
  float: left;
}
.header .header-container > ul > li > a {
  color: #72777a;
  display: block;
  line-height: 50px;
  height: 50px;
  padding: 0 10px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.header .header-container > ul > li > a.sidebar-toggle {
  display: none;
  padding: 0 15px;
  cursor: pointer;
}
.header .header-container > ul > li > a.sidebar-toggle:hover {
  background: none;
}
.header .header-container > ul > li > a.mobile-menu {
  padding: 0 15px;
  cursor: pointer;
}
.header .header-container > ul > li > a.mobile-menu > i {
  font-size: 24px;
  line-height: 50px;
  top: 0;
}
.header .header-container > ul > li > a > i {
  font-size: 17px;
  color: #fff;
  line-height: 50px;
  height: 50px;
  overflow: hidden;
}
.header .header-container > ul > li > a > i.i-sb-toggle {
  font-size: 26px;
  color: #fff;
}
.header .header-container > ul > li > a > i.mdi-account-cog {
  font-size: 20px;
}
.header .header-container > ul > li > a:hover > i {
  color: #eac170;
}
.header .header-container > ul > li > a .counter {
  display: inline-block;
  position: relative;
  background-color: #ff3636;
  color: #fff;
  border-radius: 8px;
  line-height: 1;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 4px;
  margin: 0;
}
.header .header-container > ul > li > a#notifInbox.disabled:hover i, .header .header-container > ul > li > a#notifRwy.disabled:hover i, .header .header-container > ul > li > a#notifInf.disabled:hover i {
  color: #fff;
}
.header .header-container > ul > li > a#notifInbox i, .header .header-container > ul > li > a#notifRwy i, .header .header-container > ul > li > a#notifInf i {
  float: left;
}
.header .header-container > ul > li > a#notifInbox .counter, .header .header-container > ul > li > a#notifRwy .counter, .header .header-container > ul > li > a#notifInf .counter {
  float: left;
  margin-top: 12px;
  margin-left: -9px;
}
.header .header-container > ul > li > a#notifInf i {
  font-size: 20px;
}
.header .header-container > ul > li > a#notifInf .counter {
  float: left;
  margin-top: 15px;
  margin-left: -9px;
}
.header .header-container > ul > li > a.filled i {
  color: #edce4c;
}

.m-sidebar {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: #90681f !important;
  background: url("../images/bg-gradient-01.png") no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: "Montserrat", "ProximaNova", "Open Sans", arial;
  font-size: 14px;
}
.m-sidebar.show {
  left: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.m-sidebar.show .ms-inner .ms-header {
  left: 0;
}
.m-sidebar .ms-inner .ms-header {
  position: relative;
  height: 50px;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
}
.m-sidebar .ms-inner .ms-header .logo {
  background: url(../images/logo-text-hd-wh-01.svg) left 72% no-repeat;
  background-size: auto 37px;
  text-indent: -999em;
  position: absolute;
  height: 50px;
  width: 195px;
  left: 0;
  top: 0;
  z-index: 161;
  display: inline-block;
  margin: 0 15px;
}
.m-sidebar .ms-inner .ms-header a {
  padding: 0;
  float: right;
  cursor: pointer;
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.m-sidebar .ms-inner .ms-header a i {
  font-size: 18px;
  line-height: 50px;
  min-height: 50px;
  padding: 0;
  color: #fff;
}
.m-sidebar .ms-inner .ms-header .sd-title {
  display: inline-block;
  padding: 0 15px;
  line-height: 50px;
  color: #fff;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.m-sidebar .ms-inner .ms-body {
  max-height: calc(100vh - 118.4px);
  overflow: auto;
}
.m-sidebar .ms-inner .ms-body ul {
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-sidebar .ms-inner .ms-body ul > li {
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  float: none;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-header {
  height: 50px;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-header a {
  padding: 0;
  float: right;
  cursor: pointer;
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-align: center;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-header a i {
  font-size: 16px;
  line-height: 50px;
  min-height: 50px;
  padding: 0;
  color: #fff;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome {
  padding: 15px 0;
  display: flex !important;
  align-items: center;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-img {
  flex-shrink: 0;
  /*align-self: flex-start;*/
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-img span {
  display: block;
  width: 70px;
  /*height: 70px;
  border-radius: 50%;
  overflow: hidden;*/
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-img span img {
  border-radius: 2px;
  width: 70px;
  min-height: 70px;
  height: auto;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-info {
  align-items: center;
  padding-left: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-info .info-data {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #eac170;
  line-height: 1.5;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-info .info-data span {
  color: #fff;
  opacity: 0.8;
  font-size: 11px;
  font-weight: 600;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-welcome .user-info .info-data span.info-email {
  word-break: break-all;
  text-transform: none;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-heading {
  padding: 10px 0;
  border-bottom: 1px solid rgba(237, 206, 76, 0.3);
  color: #edce4c;
  opacity: 1;
  white-space: nowrap;
  position: relative;
  font-family: "Montserrat", "Open Sans", arial, -apple-system, BlinkMacSystemFont;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-divider {
  border-top: 1px solid #eac170;
  opacity: 0.3;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 2.6rem;
  padding: 0 1.5rem 0 40px !important;
  height: auto !important;
  overflow-y: unset !important;
  position: relative;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: "Montserrat", "Open Sans", arial;
  text-transform: uppercase;
  margin: 0;
  margin-top: 2px;
  cursor: pointer;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link a > i {
  width: 34px;
  line-height: 2.6rem !important;
  min-height: 2.6rem !important;
  position: absolute;
  left: 5px;
  font-size: 20px;
  transition: color 300ms;
  color: #fff;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link a > i.sic-chevron-down-1 {
  text-align: right;
  line-height: 2.8rem;
  font-size: 10px;
  transition: color 300ms;
  transition: transform 300ms;
  left: auto;
  right: 5px;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link a:hover {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link a:hover > i {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link.active a {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link.active a i {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  line-height: 1.5;
  padding: 0 0 15px 0;
  height: auto !important;
  overflow-y: unset !important;
  position: relative;
  border-radius: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  font-family: "Montserrat", "Open Sans", arial;
  margin: 0;
  margin-top: 2px;
  cursor: pointer;
  border-bottom: 1px solid rgba(234, 193, 112, 0.4);
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-jd {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  display: block;
  margin-bottom: 3px;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-nama {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  display: block;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-satker {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  display: block;
  margin-top: 7px;
  color: #91a5ff;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-sender-name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  display: block;
  margin-bottom: 3px;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-subject {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  display: block;
  margin-top: 7px;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-qc {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  display: block;
  margin-top: 7px;
  color: #89f1d3;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a .info-time {
  font-family: arial;
  font-size: 10px;
  font-weight: 600;
  margin: 5px 0px 0px 0px;
  padding: 0;
  position: relative;
  display: inline-block;
  border-radius: 2px;
  color: #fac39a;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a > i {
  width: 34px;
  line-height: 2.6rem !important;
  min-height: 2.6rem !important;
  position: absolute;
  left: 5px;
  font-size: 20px;
  transition: color 300ms;
  color: #fff;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a > i.sic-chevron-down-1 {
  text-align: right;
  line-height: 2.8rem;
  font-size: 10px;
  transition: color 300ms;
  transition: transform 300ms;
  left: auto;
  right: 5px;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a:hover {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif a:hover > i {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif:last-child a {
  padding-bottom: 0;
  border-bottom: 0;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif.active a {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body ul > li.ms-link-notif.active a i {
  color: #edce4c;
}
.m-sidebar .ms-inner .ms-body.ms-body-wf ul {
  padding-bottom: 0 !important;
}
.m-sidebar .ms-inner .ms-body.ms-body-wf ul .ms-link-notif:last-child {
  margin-bottom: 0px !important;
}
.m-sidebar .ms-inner .ms-footer {
  height: 68.4px;
  overflow: hidden;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .header {
    height: 60px;
    width: calc(100% - 260px);
  }
  .header .header-container ul > li > a {
    padding: 0 15px;
    height: 60px;
    overflow-y: hidden;
  }
  .header .header-container ul > li > a.mobile-menu {
    display: none;
  }
  .header .header-container ul > li > a.sidebar-toggle {
    display: block;
  }
  .header .header-container ul > li > a .counter {
    font-size: 9px;
    padding: 3px 5px;
    border-radius: 10px;
  }
  .header .header-container ul > li > a#notifInbox .counter, .header .header-container ul > li > a#notifRwy .counter {
    margin-top: 15px;
  }
  .header .header-container ul > li > a > i {
    line-height: 60px;
    min-height: 60px;
  }

  .m-sidebar {
    display: block !important;
    width: 300px;
    opacity: 1;
    background-color: transparent !important;
  }
  .m-sidebar::before {
    content: "";
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    right: 2px;
    top: 2px;
  }
  .m-sidebar .ms-inner .ms-header {
    display: none;
  }
  .m-sidebar.m-sidebar-top {
    top: -100vh;
    padding-top: 7px;
    right: 10px !important;
    left: auto !important;
    background: none;
    border: 0;
    background-clip: padding-box;
    height: auto;
    max-height: calc(100vh - 47px);
    overflow: hidden;
    padding-bottom: 0;
  }
  .m-sidebar.m-sidebar-top.show {
    top: 45px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  }
  .m-sidebar.m-sidebar-top .ms-inner {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 55px);
    overflow: hidden;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body {
    max-height: calc(100vh - 57px);
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-welcome .user-info {
    font-family: "Montserrat", "Open Sans", arial;
    font-weight: 13px;
    color: rgba(0, 0, 0, 0.8);
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-welcome .user-info .info-data {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #91780f;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-welcome .user-info .info-data span {
    color: #343a40;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-divider {
    border-top: 1px solid #343a40;
    opacity: 0.2;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-link a {
    color: #513b12;
    margin: 1px 0;
    line-height: 2.2rem !important;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-link a i {
    opacity: 1;
    color: rgba(81, 59, 18, 0.7);
    line-height: 2.2rem !important;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-link a:hover {
    background: none;
    color: #271c09;
    border-radius: 0;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-body ul li.ms-link a:hover i {
    color: #271c09;
  }
  .m-sidebar.m-sidebar-top .ms-inner .ms-footer {
    height: 68.4px;
    overflow: hidden;
    padding: 15px;
  }
  .m-sidebar.m-sidebar-right {
    top: 60px;
    right: -100vw !important;
    background-color: #90681f !important;
    background: url(../images/bg-gradient-01.png) no-repeat;
    background-size: cover;
    border: 0;
    background-clip: padding-box;
    height: auto;
    left: auto !important;
    position: fixed;
    border-radius: 0;
    height: calc(100vh - 60px);
    overflow: hidden;
  }
  .m-sidebar.m-sidebar-right::before {
    border: 0;
  }
  .m-sidebar.m-sidebar-right.show {
    right: 0 !important;
  }
  .m-sidebar.m-sidebar-right .ms-inner .ms-header.ms-header-show {
    display: block;
  }
  .m-sidebar.m-sidebar-right .ms-inner .ms-header.ms-header-show .close-mobile-menu {
    display: none;
  }
  .m-sidebar.m-sidebar-right .ms-inner .ms-body {
    max-height: calc(100vh - 60px);
  }
  .m-sidebar.m-sidebar-right .ms-inner .ms-body.ms-body-wf {
    max-height: calc(100vh - 176.8px);
  }

  .sidebar-collapse .header {
    width: calc(100% - 70px);
  }
  .sidebar-collapse .header .header-container ul > li > a.sidebar-toggle > i::before {
    content: "";
  }
}
/* Large devices (desktops, 992px and up) */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

.pc-only {
  display: none;
}

.mobile-only {
  display: block;
}

.main-content {
  padding: 50px 15px 15px 15px;
  min-height: calc(100vh - 26px);
}
.main-content .sim-breadcrumb {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0;
  padding: 0;
}
.main-content .sim-breadcrumb li {
  padding: 0;
  margin-right: 10px;
}
.main-content .sim-breadcrumb li a {
  color: #a57724;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.main-content .sim-breadcrumb li a:hover, .main-content .sim-breadcrumb li a:focus {
  text-decoration: underline;
}
.main-content .sim-breadcrumb li::before {
  display: inline-block;
  font-family: "Material Design Icons";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "󰅁";
  font-size: 10px;
}
.main-content .page-title {
  margin: 8px 0 0 0;
  padding: 0;
  font-family: "Merriweather", arial;
  font-size: 18px;
  font-weight: 700;
  color: #7b591b;
  /*font-family: "Montserrat", "Open Sans", arial;
  line-height: 1.61em;
  font-size: 1.2em;
  font-weight: 700;*/
}
.main-content .page-title i {
  position: relative;
  color: #c09f13;
}
.main-content .page-subtitle {
  color: #5f5f5f;
  font-size: 12px;
  margin: 0;
}
.main-content .mobile-only {
  display: inline-block;
}
.main-content .mobile-only.btn-menu-rwy {
  padding: 0 14px 0 15px;
  text-align: center;
  background: rgba(13, 32, 60, 0.5);
  position: fixed;
  top: 85px;
  right: 0;
  border-radius: 8px 0 0 8px;
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
}
.main-content .mobile-only.btn-menu-rwy i {
  font-size: 24px;
  color: #fff;
  line-height: 46px;
}
.main-content .mobile-only.btn-menu-rwy .txt-menu-rwy {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  position: relative;
  top: 1px;
  margin-left: 7px;
  display: inline-block;
  text-align: left;
  line-height: 1.2;
}

#f-dataumum #foto {
  text-align: center;
  margin-top: 1rem;
  margin-top: 1rem;
}
#f-dataumum #foto img {
  width: 150px;
  display: inline-block;
  border-radius: 4px !important;
}

.uf-preview .file-preview {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 1rem 0 1rem 0;
  display: flex;
  align-items: center;
}
.uf-preview .file-preview li.preview-btn {
  align-items: center;
  margin-right: 5px;
}
.uf-preview .file-preview li.preview-btn a {
  width: 34px;
  height: 34px;
  text-align: center;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.uf-preview .file-preview li.preview-btn a i {
  font-size: 22px;
  color: #ff3636;
  line-height: 34px;
}
.uf-preview .file-preview li.preview-filename {
  word-break: break-all;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  align-items: center;
  padding-right: 10px;
}

.navbar-sidebar {
  padding: 0;
}

.info-peg-rwy {
  font-weight: bold;
  font-size: 12px;
}

/* C3 */
.c3 .tick text {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}
.c3 .c3-chart-text .c3-texts .c3-text {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}
.c3 .c3-legend-item text {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transform: translateY(-1px);
}
.c3 .c3-tooltip {
  opacity: 1;
}
.c3 .c3-tooltip th, .c3 .c3-tooltip td {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px;
}
.c3 .c3-tooltip td > span {
  position: relative;
  top: 1.2px;
}

/* END C3 */
.card-body.even-space-m {
  padding-top: -7.5px;
  padding-bottom: -7.5px;
}

.row.even-space-m {
  margin-right: -7.5px;
  margin-left: -7.5px;
}

.row.even-space-m .col-es-m {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.quick-stats__item {
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
  overflow: hidden;
  cursor: initial;
}
.quick-stats__item:hover {
  text-decoration: none;
}
.quick-stats__item .quick-stats__info {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 20px;
  margin: 4px;
  box-sizing: border-box;
  font-family: "Montserrat", "Open Sans", arial;
  text-transform: uppercase;
}
.quick-stats__item .quick-stats__info > h2 {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  color: #FFF;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-stats__item .quick-stats__info > small {
  font-size: 11px;
  font-weight: 600;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.col-stats {
  font-family: "Montserrat", "Open Sans", arial;
}
.col-stats .sn-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.col-stats .sn-value {
  font-weight: 200;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: 2px;
}
.col-stats .progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.5625rem;
  background-color: #c8c8d2;
  border-radius: 6px;
}
.col-stats .progress.progress-xs {
  height: 5px;
}

.card-title-bday {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.bday ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.bday ul li {
  list-style: none;
  list-style-type: none;
}
.bday ul li.foto-peg {
  width: 100%;
  height: 128px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bday ul li.foto-peg img {
  height: 128px;
}
.bday ul li.info-peg {
  width: 100%;
  margin-top: 15px;
  height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bday ul li.info-peg ul {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.bday ul li.info-peg ul li {
  list-style: none;
  list-style-type: none;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 0;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}
.bday ul li.info-peg ul li:last-child {
  border-bottom: 0;
}

.ccn-bday,
.ccp-bday {
  filter: invert(100%);
  opacity: 0.2;
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 132.3px;
}

.col-po-tgl {
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.a-ctrl-bday {
  display: inline-block;
  position: absolute;
  top: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.a-ctrl-bday i {
  font-size: 20px;
  color: #ff3636;
}
.a-ctrl-bday span {
  position: relative;
  top: -4.5px;
}
.a-ctrl-bday:hover, .a-ctrl-bday:focus {
  text-decoration: none;
}

.btn-po-in i {
  position: absolute;
  font-size: 20px;
  top: 12px;
  margin-left: 8px;
}

.btn-po-out i {
  position: absolute;
  font-size: 20px;
  top: 12px;
  margin-left: -30px;
}

#ddmNotifProfile .link-notif:hover {
  text-decoration: none;
}
#ddmNotifProfile .link-notif:hover .h-nama-user {
  color: #edce4c;
}
#ddmNotifProfile .link-notif .h-nama-user {
  display: none;
  font-family: "Montserrat", "Open Sans", arial;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

@media (min-width: 576px) {
  .row.even-space {
    margin-right: -7.5px;
    margin-left: -7.5px;
  }

  .row.even-space .col-es {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .ccn-bday {
    right: -8px;
  }

  .ccp-bday {
    left: -8px;
  }

  .a-ctrl-bday {
    margin-left: 0;
    right: 15px;
    top: 28px;
    z-index: 20;
  }
}
@media (min-width: 660px) {
  .a-ctrl-bday {
    margin-left: 10px;
    right: unset;
    top: 10px;
  }
}
@media (min-width: 768px) {
  .main-content {
    padding: 60px 15px 0 15px;
  }
  .main-content .page-subtitle {
    font-family: arial;
    font-size: 14px;
    font-weight: 400;
  }

  .mobile-only {
    display: none;
  }

  .pc-only {
    display: block;
  }

  .control-label {
    line-height: 1.2;
    display: flex;
    align-items: center;
  }
  .control-label.control-label-top {
    display: inline-block;
    padding-top: 14px;
  }

  .control-label-status {
    line-height: 22.6px;
  }

  #f-dataumum #foto {
    text-align: left;
    margin-top: 0;
  }

  .col-lg-center {
    text-align: center;
  }

  .bday ul li.info-peg {
    height: 190px;
  }

  .a-ctrl-bday {
    margin-left: 0;
    right: 15px;
    top: 28px;
    z-index: 20;
  }

  .btn-po-in i,
.btn-po-out i {
    top: 9px;
  }
}
@media (min-width: 930px) {
  .a-ctrl-bday {
    margin-left: 10px;
    right: unset;
    top: 10px;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .main-content .page-title {
    font-size: 20px;
  }

  #f-keluarga #tblAnak tbody td .btnDeleteAnak i {
    line-height: 37.8px;
  }

  .card-title-bday {
    text-align: left;
  }

  .bday ul {
    flex-direction: row;
  }
  .bday ul li {
    list-style: none;
    list-style-type: none;
  }
  .bday ul li.foto-peg {
    width: 90px;
    height: 100%;
    flex-shrink: 0;
  }
  .bday ul li.foto-peg img {
    width: 90px;
    height: auto;
  }
  .bday ul li.info-peg {
    margin-left: 15px;
    margin-top: 0;
    align-items: start;
  }
  .bday ul li.info-peg ul li {
    text-align: left;
  }

  .ccn-bday,
.ccp-bday {
    top: 63px;
  }

  .btn-po-in i,
.btn-po-out i {
    top: 7px;
  }

  #ddmNotifProfile .link-notif .h-nama-user {
    display: inline-block;
  }

  .info-peg-rwy {
    font-family: "Montserrat", "Open Sans", arial;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .bday ul li.foto-peg {
    width: 100px;
  }
  .bday ul li.foto-peg img {
    width: 100px;
  }
  .bday ul li.info-peg {
    height: 190px;
    align-items: center;
  }

  .ccn-bday,
.ccp-bday {
    top: 53px;
  }
}
@media (min-width: 1300px) {
  .bday ul li.foto-peg {
    width: 110px;
  }
  .bday ul li.foto-peg img {
    width: 110px;
  }
  .bday ul li.info-peg {
    height: 190px;
    align-items: center;
  }

  .ccn-bday,
.ccp-bday {
    top: 53px;
  }
}
@media (min-width: 1341px) {
  #f-keluarga #tblAnak {
    width: 100% !important;
  }
}
.footer {
  font-family: "Montserrat", "ProximaNova", "Open Sans", arial;
  /*font-size: 0.7em;*/
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 40px;
}

/*# sourceMappingURL=style.css.map */
