body {
  font-family: 'Futura', sans-serif;
  color: rgba(0, 0, 0, 0.7);
}
a {
  color: #33c6a5;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}
/* PAGE LOADER */
.loader-opt {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1100;
}
.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.5);
}
.pre-loader .loader-img {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  top: 43%;
  background-image: url('/images/loader/loader.gif');
  background-size: 250px;
  width: 70px;
  height: 70px;
}
.pre-loader p {
  position: relative;
  top: 44%;
  color: #e9e9e9;
  font-size: 16px;
  text-align: center;
}
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background-color: #fff;
}
.page-loader .track {
  position: absolute;
  top: 44%;
  left: 45%;
  width: 150px;
  height: 50px;
  background: transparent;
  -webkit-transition: 2s;
  transition: 2s;
}
@media (max-width: 992px) {
  .page-loader .track {
    left: 38%;
  }
}
@media (max-width: 500px) {
  .page-loader .track {
    left: 31%;
  }
}
@media (max-width: 320px) {
  .page-loader .track {
    left: 28%;
  }
}
.page-loader .track .square {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #003479;
  border-radius: 5px;
  -webkit-animation: animate 1s linear infinite;
          animation: animate 1s linear infinite;
}
.page-loader .track .square:nth-child(2) {
  left: initial;
  right: 0;
  background: #007836;
  -webkit-animation: animate2 1s linear infinite;
          animation: animate2 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes animate {
  0% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
            transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
  }
  50% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) translateY(25px);
            transform: translate(-50%, -50%) rotate(90deg) translateY(25px);
  }
}
@keyframes animate {
  0% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
            transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
  }
  50% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) translateY(25px);
            transform: translate(-50%, -50%) rotate(90deg) translateY(25px);
  }
}
@-webkit-keyframes animate2 {
  0% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
            transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
  }
  50% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(50%, -50%) rotate(-90deg);
            transform: translate(50%, -50%) rotate(-90deg);
  }
  100% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(50%, -50%) rotate(-90deg) translateY(25px);
            transform: translate(50%, -50%) rotate(-90deg) translateY(25px);
  }
}
@keyframes animate2 {
  0% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
            transform: translate(-50%, -50%) rotate(0deg) translateX(25px);
  }
  50% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(50%, -50%) rotate(-90deg);
            transform: translate(50%, -50%) rotate(-90deg);
  }
  100% {
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translate(50%, -50%) rotate(-90deg) translateY(25px);
            transform: translate(50%, -50%) rotate(-90deg) translateY(25px);
  }
}
/* HEADER */
.main-header {
  position: absolute;
  width: 100%;
  background-color: white;
  z-index: 999;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 996px) {
  .main-header {
    z-index: unset;
  }
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: smoothScroll 0.5s forwards;
          animation: smoothScroll 0.5s forwards;
}
@media (max-width: 1440px) {
  .header-fixed .brand-nav {
    display: none;
  }
  .header-fixed .tagline-nav {
    display: none;
  }
}
@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
input {
  background-color: #ecfbfb !important;
  border: 1px solid #bbb !important;
  border-radius: 3px !important;
  font-size: 14px !important;
  padding: 0 10px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
input:disabled {
  border-color: #ddd !important;
}
input:focus {
  background-color: #fff !important;
  border: 2px solid #66df9b !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}
.search-input {
  padding-right: 58px !important;
}
.search-input-button {
  position: absolute;
  right: 0px;
  font-size: 28px !important;
  cursor: pointer;
  pointer-events: all;
  background: #33ac68;
  color: #fff;
  height: 3rem;
  padding: 9px 10px 0 10px;
  border-radius: 0 3px 3px 0;
}
textarea {
  background-color: #ecfbfb !important;
  border: 1px solid #bbb !important;
  border-radius: 3px !important;
  height: 150px !important;
  font-size: 14px !important;
  padding: 10px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
textarea:focus {
  background-color: #fff !important;
  border: 2px solid #66df9b !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}
.input-label {
  margin-top: 0;
  margin-bottom: 2px;
}
.input-label.has-subtext {
  margin-bottom: 0;
}
.input-label.required::after {
  content: '*';
  color: #b72828;
  padding-left: 5px;
  position: relative;
  top: -1px;
}
.input-field .selectize-input {
  background: #ecfbfb;
  border: 1px solid #bbb;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 28px;
}
.input-field .selectize-input.input-active {
  background: #fff;
  border: 2px solid #66df9b !important;
  border-bottom: none !important;
}
.input-field .selectize-input > input:focus {
  border: none !important;
}
.input-field .selectize-dropdown {
  line-height: 28px;
}
.input-field.i-date:after {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\F133";
  pointer-events: none;
  position: absolute;
  right: 15px;
  font-size: 16px;
  top: 35px;
  color: #808080;
}
.input-field.i-date > input {
  padding: 0 40px 0 10px !important;
}
.port {
  max-width: 1160px;
  margin: auto;
}
@media (max-width: 1199px) {
  .port {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-bar {
  padding: 10px 0;
}
.logo {
  line-height: 0;
}
.logo .main-logo {
  width: auto;
  height: 80px;
}
@media (max-width: 992px) {
  .logo .main-logo {
    width: 260px;
    height: auto;
  }
}
.widget-cell .widget-panel {
  display: table;
  float: right;
  margin: 0 0 0 35px;
}
.widget-cell .widget-icon,
.widget-cell .widget-content {
  display: table-cell;
  vertical-align: middle;
}
.widget-cell .widget-icon {
  line-height: 1;
  padding: 0 0.5em 0 0;
  text-align: left;
  width: 50px;
}
.widget-cell .widget-icon > i {
  font-size: 45px;
  color: #33c6a5;
}
.widget-title,
.widget-text {
  display: block;
  line-height: 1.3;
}
.widget-title {
  font-size: 14px;
  margin: 0 0 3px;
}
.widget-text {
  font-size: 13px;
  color: rgba(68, 68, 68, 0.4);
}
.tagline-nav {
  background: #003479;
  color: white;
  padding: 7px 0;
}
@media (max-width: 996px) {
  .tagline-nav {
    text-align: center;
  }
}
.tagline-nav .tagline {
  padding-left: 80px;
}
@media (max-width: 996px) {
  .tagline-nav .tagline {
    padding-left: 0;
  }
}
.menu-nav {
  background: #007836;
  color: white;
  height: 41px;
  line-height: 40px;
}
.menu-nav ul > li > a {
  text-transform: uppercase;
}
.sns {
  float: right;
}
@media (max-width: 996px) {
  .sns {
    float: unset;
    text-align: center;
  }
}
.sns > a > i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
}
.sns > a:hover > i.fb {
  background: #3b5998;
}
.sns > a:hover > i.tw {
  background: #1da1f2;
}
.btn-trans {
  display: inline-block;
  background: transparent;
  border: 2px solid white;
  border-radius: 3px;
  padding: 12px 30px;
  color: #fff;
}
.btn-form-submit {
  background: #33ac68;
  border: unset;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  padding: 12px 50px;
}
.btn-form-submit:hover {
  background: #007836;
}
.btn-form-submit.loading {
  background: #ccc;
}
.sec-header {
  text-align: center;
  margin: 80px 0 30px;
}
.sec-header .sec-title {
  font-size: 30px;
  color: black;
  text-transform: uppercase;
}
.sec-header .sec-title:after {
  content: '';
  clear: both;
  width: 100px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px auto 10px;
  -webkit-box-shadow: 0 4px 0 0 #0cb8b6 inset;
          box-shadow: 0 4px 0 0 #0cb8b6 inset;
}
.sec-header .sec-subtitle {
  font-size: 18px;
}
.pCover {
  padding-bottom: 10px;
}
.pCover .cover {
  height: 240px;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pCover .cover .hCover {
  height: inherit;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.pCover .cover .hCover i.material-icons {
  font-size: 50px;
  color: #33c6a5;
}
.pCover .cover:hover .hCover {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.dropdown-content.sub-menu {
  border-top: 3px solid #33ac68;
  padding: 15px 5px !important;
  width: 230px;
}
.dropdown-content.sub-menu.row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: auto;
}
.dropdown-content.sub-menu.row-list ul.sub-menu {
  width: 230px;
}
.dropdown-content.sub-menu li {
  min-height: 40px;
}
.dropdown-content.sub-menu li:hover {
  background-color: transparent;
}
.dropdown-content.sub-menu li.active {
  background-color: transparent;
}
.dropdown-content.sub-menu li.active > a {
  color: #26a69a;
}
.dropdown-content.sub-menu li > a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 15px;
  padding: 12px 16px;
}
.dropdown-content.sub-menu li > a:hover {
  background-color: transparent;
  color: #26a69a;
}
.side-nav li > a {
  color: black;
}
.side-nav .side-menu .collapsible-header {
  color: black;
  padding: 0 15px 0 32px;
}
.side-nav .side-menu .collapsible-header i.material-icons {
  margin: 0;
}
.side-nav .side-menu .collapsible-body ul li.active {
  background-color: #33c6a5;
}
.side-nav .side-menu .collapsible-body ul li > a {
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.8);
}
.tabs {
  border-bottom: 2px solid #3367ab;
}
.tabs.in-header {
  background: transparent;
  margin-top: -20px;
}
@media (max-width: 992px) {
  .tabs.in-header {
    display: block;
    height: auto;
  }
  .tabs.in-header .tab {
    margin-bottom: 3px !important;
  }
}
.tabs .tab a {
  color: #3367ab;
  font-size: 13px;
}
.tabs .tab a.active {
  background-color: #3367ab;
  color: #fff;
}
.tabs .tab a:hover {
  background-color: #669ade;
  color: #fff;
}
.tabs .indicator {
  display: none;
}
.tab-content {
  padding: 25px 2px !important;
}
.main-content {
  padding-top: 175px;
}
@media (max-width: 992px) {
  .main-content {
    padding-top: 164px;
  }
}
.hd-animate {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
}
.hd-animate-left {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  left: 0%;
}
.hd-animate-right {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  right: 0%;
}
.pg-hd .gradient-msg {
  position: relative;
  width: auto;
  height: inherit;
}
.pg-hd .gradient-msg.g-r {
  background: -webkit-gradient(linear, right top, left top, from(#707070), color-stop(65%, transparent));
  background: linear-gradient(to left, #707070, transparent 65%);
}
.pg-hd .gradient-msg .port {
  position: relative;
  left: 20%;
  opacity: 0;
  width: calc(100% - 20%);
  height: inherit;
}
.pg-hd .gradient-msg .port.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  left: 0%;
  width: 100%;
}
.pg-hd .gradient-msg .port .msg {
  position: absolute;
  top: 30%;
  width: 500px;
  font-size: 18px;
  color: #fff;
  line-height: 2;
  text-shadow: 2px 2px 4px #000000;
}
.pg-hd .gradient-msg .port .msg.m-r {
  right: 0;
}
@media (max-width: 1024px) {
  .pg-hd .gradient-msg .port .msg.m-r {
    right: 35px;
  }
}
.join-now {
  background: #009372;
  padding: 30px 0;
  color: #fff;
}
.join-now .row .col:last-child {
  text-align: right;
}
@media (max-width: 992px) {
  .join-now .row .col:last-child {
    text-align: left;
  }
}
.join-now .tagline {
  margin: 5px 0;
  font-size: 24px;
}
.join-now .apply-btn {
  position: relative;
  top: 10px;
}
.sec-pad {
  padding: 50px 0;
}
.dash::after {
  content: '';
  clear: both;
  width: 60px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px 0 5px;
  -webkit-box-shadow: 0 2px 0 0 #0cb8b6 inset;
          box-shadow: 0 2px 0 0 #0cb8b6 inset;
}
.dash.d-fff::after {
  -webkit-box-shadow: 0 2px 0 0 #fff inset;
          box-shadow: 0 2px 0 0 #fff inset;
}
.plain-page-banner {
  background-color: #3367ab;
  background-image: url(/images/bgn-grad.png);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  padding: 35px 0;
  overflow-x: hidden;
}
.plain-page-banner.pb-lg {
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .plain-page-banner {
    padding: 25px 0;
  }
}
.plain-page-banner .pg-title {
  color: white;
  padding-left: 10px;
}
.plain-page-banner .pg-title > div {
  font-size: 30px;
  text-transform: uppercase;
}
.plain-page-banner.upper-banner .b-top {
  position: relative;
  left: 20%;
  opacity: 0;
  width: calc(100% - 20%);
}
.plain-page-banner.upper-banner .b-top.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  left: 0%;
  width: 100%;
}
.page-sec-header {
  position: relative;
  left: 20%;
  opacity: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  padding-left: 10px;
  width: calc(100% - 20%);
}
.page-sec-header.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  left: 0%;
  width: 100%;
}
.page-desc-w-img .row {
  overflow-x: hidden;
}
.page-desc-w-img .row .col {
  position: relative;
}
.page-desc-w-img .row .col:first-child {
  left: -1000px;
  opacity: 0;
}
.page-desc-w-img .row .col:first-child.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  left: 0%;
}
.page-desc-w-img .row .col:last-child {
  right: -1000px;
  opacity: 0;
}
.page-desc-w-img .row .col:last-child.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  right: 0%;
}
.page-desc-w-img .div-over {
  margin-bottom: -6px;
  padding: 0 15px;
  overflow-x: hidden;
}
.page-desc-w-img .div-over .do-slide {
  position: relative;
}
.page-desc-w-img .div-over .do-slide.d-right {
  right: -1000px;
  opacity: 0;
}
.page-desc-w-img .div-over .do-slide.d-right.animated {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  right: 0%;
}
.ratings {
  margin-top: 10px;
}
.ratings i {
  font-size: 35px;
}
.ratings .rating-text {
  margin: 5px;
  font-size: 18px;
  text-transform: uppercase;
  color: green;
}
.posted-at:before {
  font-family: "Font Awesome 5 Free";
  content: "\F017";
  margin-right: 7px;
}
.s-tag:before {
  font-family: "Font Awesome 5 Free";
  content: "\F02B";
  font-weight: 900;
  margin-right: 7px;
}
.pseu-loc:before {
  font-family: "Font Awesome 5 Free";
  content: "\F3C5";
  font-weight: 900;
  margin-right: 7px;
}
.pseu-exp:before {
  font-family: "Font Awesome 5 Free";
  content: "\F0B1";
  font-weight: 900;
  margin-right: 7px;
}
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 26px;
  padding-top: 15px;
  margin-bottom: 0;
  z-index: 997;
}
.scroll-top-btn .btn-floating {
  background: #007836;
}
.scroll-top-btn .btn-floating i.material-icons {
  font-size: 35px;
}
.scroll-top-btn .btn-floating:hover {
  background: #66df9b;
}
.swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-container .swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-container.gallery-top {
  height: 400px;
  width: 100%;
}
@media (max-width: 992px) {
  .swiper-container.gallery-top {
    height: 200px;
  }
}
.swiper-container.gallery-thumbs {
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
@media (max-width: 992px) {
  .swiper-container.gallery-thumbs {
    height: 70px;
  }
}
.swiper-container.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
}
.swiper-container.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.contact-widget {
  display: table;
  margin-bottom: 25px;
}
.contact-widget .contact-icon {
  display: table-cell;
  vertical-align: top;
  width: 65px;
  text-align: center;
}
.contact-widget .contact-icon i.fas {
  font-size: 35px;
  color: #669ade;
  padding: 5px 0;
}
.contact-widget .contact-content {
  display: table-cell;
  vertical-align: middle;
  padding-left: 5px;
}
.input-labelauty.lbl-radio + label {
  height: unset !important;
  padding: 8px 15px !important;
}
.input-labelauty.lbl-radio + label:before {
  display: none !important;
}
.input-labelauty.lbl-radio + label:after {
  content: none !important;
}
.input-labelauty.lbl-radio + label > span.labelauty-unchecked-image,
.input-labelauty.lbl-radio + label > span.labelauty-checked-image {
  width: 20px !important;
  height: 25px !important;
}
.input-labelauty.lbl-radio + label > span.labelauty-unchecked,
.input-labelauty.lbl-radio + label > span.labelauty-checked {
  margin-left: 10px !important;
  position: relative !important;
  line-height: 25px;
}
.datepicker {
  z-index: 1200;
  font-family: 'Futura', sans-serif;
  font-size: 13px;
}
.datepicker .datepicker--nav {
  background-color: unset;
  color: unset;
  width: unset;
  height: unset;
  line-height: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.datepicker .datepicker--nav .datepicker--nav-title i {
  font-size: unset;
  height: unset;
  line-height: unset;
}
.datepicker .datepicker--buttons {
  padding: 0;
}
.datepicker .datepicker--buttons .datepicker--button {
  height: 30px;
}
.datepicker .datepicker--time .datepicker--time-sliders .datepicker--time-row input[type=range] {
  border: none;
  border-color: transparent !important;
  padding: 0;
}
.datepicker .datepicker--time .datepicker--time-sliders .datepicker--time-row input[type=range] + .thumb {
  background-color: transparent;
}
.has-side-pin {
  padding-right: 50px !important;
}
@media (max-width: 992px) {
  .has-side-pin {
    padding-right: 0.75rem !important;
  }
}
.no-pl {
  padding-left: 0 !important;
}
.no-pr {
  padding-right: 0 !important;
}
@media (max-width: 992px) {
  .no-pl,
  .no-pr,
  .no-p {
    padding: 0 !important;
  }
}
.side-pin {
  position: relative;
  top: 130px;
}
@media (max-width: 992px) {
  .side-pin {
    position: unset;
    margin-top: 50px;
  }
}
.cookies-privacy {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px 3px 0 0;
  position: fixed;
  right: 25px;
  bottom: 0;
  left: 25px;
  padding: 10px 25px;
  color: #fff;
  z-index: 2;
}
.cookies-privacy div.title {
  color: #c48f1b;
  font-size: 17px;
}
.cookies-privacy p {
  margin: 0;
}
.cookies-privacy .learn-more {
  margin-right: 10px;
  text-decoration: underline;
}
.cookies-privacy .accept {
  background-color: #33ac68;
  border-radius: 25px;
  font-size: 13px;
}
.cookies-privacy .accept:hover {
  background-color: #66df9b;
}
.text-ellipsis {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-ellipsis.ln-4 {
  -webkit-line-clamp: 4;
}
.text-ellipsis.ln-3 {
  -webkit-line-clamp: 3;
}
.text-ellipsis.ln-2 {
  -webkit-line-clamp: 2;
}
.text-ellipsis.ln-1 {
  -webkit-line-clamp: 1;
}
/* SECTION - FEATURED SOLUTIONS */
.sec-feat-solutions {
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
.sec-feat-solutions .row-outer {
  display: block;
}
@media (min-width: 992px) {
  .sec-feat-solutions .row-outer .row {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .sec-feat-solutions .row-outer .row .col {
    display: table-cell;
    float: none;
  }
}
.sol {
  color: white;
  padding: 30px;
}
/* SECTION - FEATURED PRODUCT */
.sec-feat-product {
  color: white;
  padding: 50px 0;
}
.sec-feat-product .row {
  overflow-x: hidden;
}
.sec-feat-product .row .col {
  position: relative;
}
.sec-feat-product .row .col:first-child {
  left: -1000px;
}
.sec-feat-product .row .col:last-child {
  right: -1000px;
}
.sec-feat-product .title {
  font-size: 50px;
}
@media (max-width: 992px) {
  .sec-feat-product .title {
    font-size: 41px;
  }
}
@media (max-width: 320px) {
  .sec-feat-product .title {
    font-size: 34px;
  }
}
.sec-feat-product .prod-img {
  width: 500px;
  height: auto;
}
/* SECTION - LATEST NEWS */
.sec-latest-news .content {
  background-color: rgba(0, 0, 0, 0.07);
  padding: 35px 20px 25px;
}
.sec-latest-news .content .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
}
.sec-latest-news .content .post-date i.material-icons {
  font-size: 20px;
  margin-right: 5px;
}
.sec-latest-news .content .news-title {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 0;
}
.sec-latest-news .content .news-title a {
  color: #33c6a5;
}
.sec-latest-news .content .news-title a:hover {
  color: rgba(0, 0, 0, 0.7);
}
/* SECTION - CONTACT AND MAP */
.sec-contact-map.add-pt {
  padding-top: 80px;
}
@media (max-width: 992px) {
  .sec-contact-map .port {
    padding-left: 0;
  }
}
.cm-container {
  position: relative;
}
.cm-container .map-panel {
  width: auto;
  height: 500px;
  position: absolute;
  left: 0;
  right: 0;
}
.cm-container .map-panel.plain {
  position: relative;
  height: 350px;
}
.cm-container .contact-panel {
  width: 300px;
  height: 500px;
  margin: 0;
  padding: 40px;
  position: relative;
  background-color: #33ac68;
  color: white;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.cm-container .contact-panel.closed {
  -webkit-transform: translate3d(-300px, 0, 0);
          transform: translate3d(-300px, 0, 0);
}
.cm-container .contact-panel .hide-contact {
  background-color: #33c6a5;
  position: absolute;
  top: 45%;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 4.5;
  text-align: center;
}
.cm-container .contact-panel .selectize-input {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 3px;
  color: white;
  font-size: 15px !important;
}
.cm-container .contact-panel .selectize-input.input-active {
  background: transparent !important;
}
.cm-container .contact-panel .selectize-input input {
  color: white;
}
.cm-container .contact-panel .selectize-input:after {
  border-color: white transparent transparent transparent !important;
}
.cm-container .contact-panel .selectize-input.dropdown-active:after {
  border-color: transparent transparent white transparent !important;
}
/* SECTION - PARTNERS */
.sec-partners {
  padding-bottom: 80px;
}
.sec-partners .partners {
  text-align: center;
}
.sec-partners .partners .col {
  height: 140.6px;
}
.sec-partners .members-of .a-lg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 4.7;
  color: rgba(0, 0, 0, 0.7);
}
.sec-partners .members-of .fh-img {
  padding-left: 15px;
  height: 65px;
  width: auto;
}
/* FOOTER */
.main-footer {
  background: rgba(0, 52, 120, 0.9);
  color: white;
}
.main-footer .content-footer {
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-footer .content-footer .widget-title {
  font-size: 16px;
}
.main-footer .content-footer .widget-title:after {
  content: '';
  clear: both;
  width: 60px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px 0 5px;
  -webkit-box-shadow: 0 2px 0 0 #0cb8b6 inset;
  box-shadow: 0 2px 0 0 #0cb8b6 inset;
}
.main-footer .content-footer .widget-content .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
}
.main-footer .content-footer .widget-content .time {
  color: #ccc;
  font-size: 12px;
}
.main-footer .content-footer .widget-content .title {
  color: #66f9d8;
}
.main-footer .content-footer .widget-content .item {
  margin-bottom: 5px;
}
.main-footer .content-footer .widget-content .item:last-child {
  margin-bottom: 0;
}
.main-footer .content-footer .widget-content .item a {
  color: #fff;
}
.main-footer .lower-footer {
  background: #003478;
  padding: 0.75rem;
}
@media (max-width: 996px) {
  .main-footer .lower-footer .copyrights {
    text-align: center;
  }
  .main-footer .lower-footer .copyrights .all-rights {
    white-space: pre;
  }
}
.main-footer .lower-footer .ft-menu,
.main-footer .lower-footer .terms-policy {
  text-align: right;
}
@media (max-width: 996px) {
  .main-footer .lower-footer .ft-menu,
  .main-footer .lower-footer .terms-policy {
    text-align: center;
  }
}
.main-footer .lower-footer .ft-menu a,
.main-footer .lower-footer .terms-policy a {
  font-size: 12px;
  color: #fff;
  padding-right: 10px;
}
.main-footer .lower-footer .ft-menu a:last-child,
.main-footer .lower-footer .terms-policy a:last-child {
  padding-right: 0;
}
/* ABOUT US */
.about-us-content .tab-content .slogan-msg {
  font-size: 20px;
  line-height: 1.7;
}
.about-us-content .tab-content .title {
  font-size: 25px;
}
.about-us-content .tab-content .title.t-b {
  color: #3367ab;
}
.about-us-content .tab-content .title.t-g {
  color: #33ac68;
}
.about-us-content .tab-content .desc {
  line-height: 1.7;
}
.about-us-content .tab-content .icon {
  padding-left: 0;
  text-align: center;
}
.about-us-content .tab-content .icon i.fas {
  font-size: 40px;
  color: #33c6a5;
}
.about-us-content .tab-content .item {
  padding: 0;
  margin-bottom: 15px;
}
.about-us-content .tab-content .item span {
  font-size: 18px;
  color: #33c6a5;
  text-transform: uppercase;
}
.about-us-content .tab-content .item p {
  margin: 10px 0;
}
/* NEWS */
.news-item .news-details {
  padding-top: 10px;
}
.news-item .news-title {
  color: #33c6a5;
  font-size: 35px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .news-item .news-title {
    font-size: 25px;
  }
}
.news-item a.news-title:hover {
  color: rgba(0, 0, 0, 0.7);
}
.news-item .news-desc {
  border-bottom: 1px solid #ddd;
  padding-top: 8px;
  padding-bottom: 25px;
}
.news-item .cont-btn {
  margin-top: 35px;
  margin-bottom: 100px;
}
.news-item .news-cover {
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-item .news-cover .cover-desc {
  font-size: 13px;
  font-style: italic;
  text-align: center;
}
.news-archive .title {
  font-size: 20px;
}
.news-archive .title::after {
  content: '';
  clear: both;
  width: 60px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px 0 5px;
  -webkit-box-shadow: 0 2px 0 0 #0cb8b6 inset;
          box-shadow: 0 2px 0 0 #0cb8b6 inset;
}
.news-archive .title.d-fff::after {
  -webkit-box-shadow: 0 2px 0 0 #fff inset;
          box-shadow: 0 2px 0 0 #fff inset;
}
.news-categories .title {
  font-size: 20px;
}
.news-categories .title::after {
  content: '';
  clear: both;
  width: 60px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px 0 5px;
  -webkit-box-shadow: 0 2px 0 0 #0cb8b6 inset;
          box-shadow: 0 2px 0 0 #0cb8b6 inset;
}
.news-categories .title.d-fff::after {
  -webkit-box-shadow: 0 2px 0 0 #fff inset;
          box-shadow: 0 2px 0 0 #fff inset;
}
.news-categories .collection {
  margin: 0;
  margin-bottom: 30px;
  border: none;
}
.news-categories .collection .collection-item {
  padding: 10px;
}
.news-categories .collection .collection-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.news-categories .collection .collection-item:hover {
  border-bottom-color: #0cb8b6;
}
.news-categories .collection .collection-item a {
  display: block;
  color: rgba(0, 0, 0, 0.7);
}
.recent-posts .title {
  font-size: 20px;
}
.recent-posts .title::after {
  content: '';
  clear: both;
  width: 60px;
  display: table;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin: 10px 0 5px;
  -webkit-box-shadow: 0 2px 0 0 #0cb8b6 inset;
          box-shadow: 0 2px 0 0 #0cb8b6 inset;
}
.recent-posts .title.d-fff::after {
  -webkit-box-shadow: 0 2px 0 0 #fff inset;
          box-shadow: 0 2px 0 0 #fff inset;
}
.recent-posts .posts .pItem {
  height: 90px;
  max-height: 200px;
  margin-bottom: 25px;
}
.recent-posts .posts .pItem .pImg {
  float: left;
  display: table-cell;
}
.recent-posts .posts .pItem .pImg .innerImg {
  background-image: url(/images/hearing-test.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90px;
  height: 90px;
  margin-right: 10px;
}
.recent-posts .posts .pItem .pText {
  display: table-cell;
}
.recent-posts .posts .pItem .pText div {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
}
.recent-posts .posts .pItem .pText a {
  color: #33c6a5;
}
.recent-posts .posts .pItem .pText a:hover {
  color: rgba(0, 0, 0, 0.7);
}
.news-pagination {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 30px;
}
.npb {
  height: 100px;
  z-index: 1;
  margin: 0;
  letter-spacing: 0;
}
.npb a {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100px;
  cursor: pointer;
  color: #888;
}
.npb a:hover {
  color: #0cb8b6;
}
.npb.n-prev a:before,
.npb.n-next a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: rgba(0, 0, 0, 0.07);
  color: #444;
  font-size: 30px;
  display: table-cell;
  width: 46px;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 360ms ease 0s;
  transition: all 360ms ease 0s;
}
.npb.n-prev a:hover:before,
.npb.n-next a:hover:after {
  background-color: #0cb8b6;
  color: #fff;
}
.npb.n-prev a:before {
  content: "\F104";
}
.npb.n-next a:after {
  content: "\F105";
}
.npb .n-image {
  display: table-cell;
  width: 135px;
  height: 100px;
}
.npb .n-image .n-img-holder {
  display: block;
  width: 135px;
  height: 100px;
  background-color: #ccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.npb .n-item {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px;
}
.npb .n-item .n-dir {
  display: block;
  text-transform: uppercase;
}
.npb .n-item .n-title {
  color: #444;
  display: block;
  font-size: 14px;
  line-height: 1.25;
}
.card-variant {
  border-radius: 5px;
}
.card-variant a {
  display: block;
  padding: 20px 30px;
  font-size: 26px;
}
.card-variant:hover a {
  color: #fff !important;
}
.modal.variant {
  max-height: 80%;
  height: 80%;
}
@media (min-width: 1024px) {
  .modal.variant {
    width: 30% !important;
  }
}
.collapsible.terms {
  border: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.collapsible.terms > li {
  margin-bottom: 15px;
  border: 1px solid #ddd;
}
.collapsible.terms .collapsible-header {
  border-bottom: none;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 992px) {
  .collapsible.terms .collapsible-header {
    padding-left: 20px;
  }
}
.collapsible.terms .collapsible-header .title {
  font-size: 18px;
}
@media (max-width: 992px) {
  .collapsible.terms .collapsible-header .title {
    font-size: 15px;
  }
}
.collapsible.terms .collapsible-header.active {
  background-color: #33c6a5;
  color: #fff;
  -webkit-box-shadow: -52px 0 0 #07706f inset;
          box-shadow: -52px 0 0 #07706f inset;
}
.collapsible.terms .collapsible-header.active:before {
  color: #fff;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.collapsible.terms .collapsible-header:before {
  font-family: "Font Awesome 5 Free";
  content: "\F107";
  font-weight: 900;
  font-size: 28px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  bottom: 0;
  padding: 0.3em 0 0;
  text-align: center;
  -webkit-transition: 600ms ease all;
  transition: 600ms ease all;
}
@media (max-width: 992px) {
  .collapsible.terms .collapsible-header:before {
    font-size: 24px;
  }
}
.sched-row .col {
  background: #00bfa5;
  border: 2px solid #fff;
  border-radius: 5px;
}
.sched-row .col .sched-content {
  padding: 20px;
  color: #fff;
}
@media (min-width: 992px) {
  .sched-row {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .sched-row .col {
    display: table-cell;
    float: none;
  }
}
.icon-circle {
  display: table;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.icon-circle.ic-teal {
  background-color: #0cb8b6;
}
.icon-circle > i {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.icon-circle:hover {
  background-color: #fff;
  border: 5px solid #0cb8b6;
}
.icon-circle:hover > i {
  color: #0cb8b6;
}
.icon-label {
  color: #0cb8b6;
}
.news-body img {
  max-width: 100%;
  height: auto;
}
.appt-steps .step {
  padding: 12px 15px;
  color: #aaa;
}
.appt-steps .step .secondary-content {
  float: left;
  padding-right: 10px;
  color: #aaa;
}
.appt-steps .step.done {
  color: #007836;
}
.appt-steps .step.done .secondary-content {
  color: #007836;
}
.appt-date {
  margin-top: 10px;
}
.appt-date .datepicker {
  margin: 0 auto;
}
.appt-date .datepicker--cell.-no-slots- {
  color: #fff;
  background: #ff5555;
}
.appt-date .datepicker--cell.-has-slots- {
  color: #fff;
  background: #66df9b;
}
.appt-date .datepicker--cell.-selected-.-has-slots-,
.appt-date .datepicker--cell.-selected-.-no-slots- {
  background: #5cc4ef;
}
.appt-date .datepicker--cell-day.-other-month- {
  color: #dedede !important;
  background: transparent !important;
}
.date-legend {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
.date-legend > span {
  color: #fff;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
}
.date-legend > span.available {
  background: #66df9b;
}
.date-legend > span.not-available {
  background: #ff5555;
}
.time-slot {
  float: right;
  color: #fff;
  border-radius: 3px;
  padding: 2px 0;
  text-align: center;
  width: 125px;
}
.time-slot.available {
  background: #66df9b;
}
.time-slot.not-available {
  background: #ff5555;
}
.r-note {
  color: #B94A48;
}
.dd-services .selectize-control .selectize-dropdown .optgroup .optgroup-header {
  color: #669ade;
}
.dd-services .selectize-control .selectize-dropdown .optgroup .option {
  padding-left: 20px !important;
}
.dd-services .selectize-control .selectize-dropdown-content {
  max-height: 250px;
}
.alert-div {
  border-radius: 3px;
  color: #ffeaea;
  margin: 10px 10px 0 10px;
  padding: 10px 15px;
}
.alert-div.ad-error {
  background: #dc6161;
}
.error-body {
  background-color: #3367ab;
  position: relative;
  height: 100%;
}
.error-body .parent-container {
  display: table;
  height: 100%;
  margin: 0 auto;
}
.error-body .parent-container .inner-container {
  display: table-cell;
  vertical-align: middle;
}
.error-body .error-page {
  color: #fff;
  text-align: center;
}
.error-body .error-page .error-status {
  font-weight: 600;
  font-size: 100px;
}
.error-body .error-page .btn-back {
  border: 1px solid #ddd;
  border-color: #fff;
  border-radius: 20px;
  color: #fff;
  background: none;
  margin-top: 30px;
}
.error-body .error-page .btn-back:hover {
  background: #fff;
  color: #003479;
}



/*new added below */
#more_service{
margin:0px;
}
#checkbox_5,#checkbox_18,#checkbox_23{
  pointer-events: auto;
  opacity:0;
  z-index:0;
  position:relative;
  top:3px;
  left:21px;
  margin-top:14px;
  margin-bottom:14px;

  pointer-events: none;
transform: scale(2.0);
}
#additional_subservice >.sub_service_type >.sub_service_checkbox:before{
  background-color:grey;
 
  }


#more_service > .additional_serv >input[type="checkbox"]{
  opacity:0;
  z-index:1;
 margin-top:24px;
  pointer-events: auto;
transform: scale(2.0);
 
}

#more_service > .row>.additional_serv >input[type="checkbox"]+label{
display:inline;
}

#more_service > .row >.additional_serv >input[type="checkbox"]{
  opacity:100;
  z-index:1;
  position:relative;
  top:3px;
  left:21px;
 margin-top:24px;

  pointer-events: auto;
transform: scale(2.0);
 
}
#additional_subservice{
  padding-top:0px;

  border:1px solid #ccc;
}
#additional_subservice >.sub_service_type >input[type="checkbox"]{
  
  opacity:100;
  position:relative;
  top:4px;
  left:16px;
  z-index:1;
 
  pointer-events: auto;
transform: scale(2.0);
 
}
#additional_subservice >.sub_service_type >label{
  display:inline;
  
}
.sub_service_type{
margin:0px;
padding:5px 40px 5px 50px;
border-bottom:1px solid #ccc;

  
  }
.sub_service_type > label{
height: 25px;
line-height:20px;

}
#more_service {
  padding:5px 0px 5px 0px;
}
#additional_subservice >.sub_service_type >.sub_service_checkbox:before{
  background-color:grey;
 
  }
#additional_subservice >.sub_service_type >.sub_service_checkbox:checked:before{
  background-color: #3b5ba4;
  content: "\2713";
  color: #fff;
  font-size: 8px;
  /* height: 6px; */
  width: 10px;
  /* margin-top: -10px; */
  position: relative;
  top: -5px;
  /* left: 1px; */
  padding: 1px 3px 2px 3px;
  border-radius: 2px;
}
#additional_subservice >.sub_service_type >.sub_service_checkbox_lock:before{
 
  background-color: #cacaca;
  content: "\2713";
  color: #fff;
  font-size: 8px;
  /* height: 6px; */
  width: 10px;
  /* margin-top: -10px; */
  position: relative;
  top: -5px;
  /* left: 1px; */
  padding: 1px 3px 2px 3px;
  border-radius: 2px;
 
  }
.additional_service > p{
  margin:0%;
}
.collapsible-header i {
  margin-right: 0px;
}
#more_service > .row >.additional_serv >input[type="checkbox"]:checked:before{
  background-color: #3b5ba4;
  content: "\2713";
  color: #fff;
  font-size: 8px;
  /* height: 6px; */
  width: 10px;
  /* margin-top: -10px; */
  position: relative;
  top: -5px;
  /* left: 1px; */
  padding: 1px 3px 2px 3px;
  border-radius: 2px;
 
}


/* Modal */
.modal {
  overflow-y: unset !important;
  max-height: 100% !important;
}
@media (max-width: 992px) {
  .modal {
    width: 90% !important;
  }
}
.modal .modal-header {
  padding: 15px 20px !important;
  background-color: #003479;
  color: #fff !important;
}
.modal .modal-header .modal-title {
  font-size: 18px !important;
}
@media (max-width: 320px) {
  .modal .modal-header .modal-title {
    font-size: 15px !important;
  }
}
.modal .modal-header .modal-close i {
  position: relative !important;
  float: right;
  font-size: 18px !important;
  top: 5px;
  color: #fff !important;
}
.modal .modal-content {
  height: calc(100% - 112px) !important;
  padding: 0 !important;
}
.modal .modal-content .modal-container {
  padding: 15px 10px !important;
}
.modal .modal-content .modal-container .modal-section {
  background: #fff !important;
  border-radius: 3px !important;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06), 0 3px 1px -2px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06), 0 3px 1px -2px rgba(0, 0, 0, 0.08) !important;
  padding: 15px;
}
.modal .modal-content .input-field input {
  margin-bottom: 5px !important;
}
.modal .modal-content .input-field label {
  font-size: 16px !important;
  color: #000 !important;
}
.modal .modal-content .selectize-input > input {
  margin-bottom: 0 !important;
}
.modal .modal-content .section-title {
  font-size: 14px !important;
  font-weight: 500;
  padding: 5px 10px;
  color: #888;
}
.modal .modal-content h1.title {
  font-size: 15px;
  margin-bottom: 0;
}
.modal .modal-content hr.divider {
  background: #bbb;
  border: none;
  position: relative;
  height: 3px;
  margin: 5px 0 10px;
  padding: 0;
}
.modal .modal-content hr.divider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 80px;
  background: #6f66f9;
}
.modal .modal-content .div-title {
  font-weight: 600 !important;
  font-size: 14px !important;
}
@media (max-width: 320px) {
  .modal .modal-content .div-title {
    font-size: 13px !important;
  }
}
.modal .modal-content .modal-tabs .tabs .tab a {
  background: #cccccc;
  color: #000 !important;
}
.modal .modal-content .modal-tabs .tabs .tab a.active {
  background: #007836;
  color: #fff !important;
}
.modal .modal-content .modal-tabs .tabs .indicator {
  display: none !important;
}
.modal .modal-content .modal-tabs .content {
  margin-top: 45px;
}
.modal .modal-footer {
  padding: 4px 10px !important;
  border-radius: 0 !important;
  z-index: 1;
}
@media (min-width: 1024px) {
  .modal.w-sm {
    width: 30% !important;
  }
}
@media (min-width: 1024px) {
  .modal.w-md {
    width: 50% !important;
  }
}
@media (min-width: 1024px) {
  .modal.w-lg {
    width: 65% !important;
  }
}
@media (min-width: 1024px) {
  .modal.w-full {
    width: 95% !important;
  }
}
@media (min-width: 1024px) {
  .modal.h-sm {
    height: 55% !important;
  }
}
@media (max-width: 996px) {
  .modal.h-sm {
    height: 50% !important;
  }
}
@media (min-width: 1024px) {
  .modal.h-md {
    height: 65% !important;
  }
}
@media (min-width: 1024px) {
  .modal.h-lg {
    height: 80% !important;
  }
}
@media (min-width: 1024px) {
  .modal.h-full {
    top: 3% !important;
    height: 93% !important;
  }
}
@media (max-width: 996px) {
  .modal.h-full {
    top: 5% !important;
    height: 90% !important;
  }
}