
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #3f4079;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.body_freeze {
  overflow: hidden !important;
}


html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent overflow on mobile */
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  background: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Geologica", "Poppins", Helvetica, sans-serif;
  color: #555;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Mobile overflow prevention */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }

  * {
    max-width: 100%;
  }

  .container,
  .container-fluid {
    width: 100%;
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Prevent fixed width elements from causing overflow */
  [style*="width"] {
    max-width: 100% !important;
  }

  /* Ensure tables don't overflow */
  table {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent images from overflowing */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container,
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

main {
 background: #f6f6f8;
 position: relative;
 z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

p {
  margin-bottom: 30px;
}

hr {
  margin: 15px 0 30px 0;
  border-color: #ededed;
}

hr.double {
  margin: 15px 0 30px 0;
  border-color: #ededed;
  border-width: 2px;
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

p {
  margin-bottom: 25px;
}

p.lead {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
}

strong {
  font-weight: 600;
}

.main_title 
{
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .main_title {
    /* For less than 767px */
    margin-bottom: 15px;
  }
}
.main_title h2 
{
  font-weight: 500;
  letter-spacing: -1px;
  font-size: 27px;
  margin: 0;
  text-transform: uppercase;
  color: #0398a9;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .main_title h2 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .main_title h2 {
    /* For less than 575px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .main_title h1 {
    /* For less than 767px */
    font-size: 24px;
    font-size: 24px;
  }
}
.main_title p 
{
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  padding: 0 10%;
  line-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .main_title p {
    /* For less than 767px */
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .main_title p {
    /* For less than 575px */
    font-size: 16px;
    font-size: 1rem;
  }
}

.main_title_2 {
  text-align: center;
  margin-bottom: 30px;
}
.main_title_2 h3 {
  font-weight: 300;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 0;
  text-transform: uppercase;
}
.main_title_2 p {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  color: #777;
}

.main_title_3 {
  background-color: #3f4079;
  background-color: #3f4079;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .main_title_3 {
    /* For less than 991px */
    margin-bottom: 30px;
  }
}
.main_title_3 h3 {
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 5px 0 0 0;
  position: relative;
  color: #fff;
}
.main_title_3 h3 strong {
  background-color: #e74e84;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 24px;
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.main_title_3 h3:before, .main_title_3 h3:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 54px;
  bottom: -42px;
  display: block;
  z-index: 9;
}
@media (max-width: 991px) {
  .main_title_3 h3:before, .main_title_3 h3:after {
    /* For less than 991px */
    display: none;
  }
}
.main_title_3 h3:before {
  left: 25%;
  background: url(../img/arrow_left.png) no-repeat 0 0;
}
.main_title_3 h3:after {
  right: 25%;
  background: url(../img/arrow_right.png) no-repeat 0 0;
}

.main_title_4 {
  background-color: #3f4079;
  background-color: #3f4079;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .main_title_4 {
    /* For less than 991px */
    margin-bottom: 30px;
  }
}
.main_title_4 h3 {
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.main_title_4 h3 i {
  position: relative;
  top: 1px;
  margin-right: 5px;
}

/*-------- 1.2 Buttons --------*/
/*General links color*/
a {
  color: #e74e84;
  text-decoration: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  outline: none;
}
a:hover, a:focus 
{
  color: #44b9d3;
  text-decoration: none;
  outline: none;
}

a.btn_1,
.btn_1 
{
  border: none;
  color: #fff;
  background: #009899;
  cursor: pointer;
  padding: 6px 15px !important;
  display: inline-block;
  outline: none;
  font-size: 15px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
}
a.btn_1.medium,
.btn_1.medium {
  padding: 12px 45px;
  font-size: 15px;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  text-align: center;
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
}
/*a.btn_1:hover,
.btn_1:hover 
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
  }*/
  a.btn_1.outline,
  .btn_1.outline {
    background: transparent;
    border: 2px solid #e74e84;
    color: #e74e84;
  }
  a.btn_1.outline:hover,
  .btn_1.outline:hover {
    background: #e74e84;
    color: #fff;
  }

  /*-------- 1.3 Structure --------*/
  /* Header */
  header 
  {
    background-color: #fff;
    min-height: 55px;
    padding: 0px 0;
    border-bottom: 1px solid transparent;
  }
  header.header_sticky {
    width: 100%;
    z-index: 999;
    position: relative;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header.header_sticky.sticky {
    border-bottom: 1px solid #ededed;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  header.header_map {
    width: 100%;
    border-bottom: 1px solid #ededed;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  header.static {
    position: static;
    border-bottom: 1px solid #ededed;
    z-index: 999;
    position: relative;
  }

  ul#top_access {
    float: right;
    position: relative;
    top: 3px;
    margin: -1px 0 0 0;
  }
  @media (max-width: 991px) {
    ul#top_access {
      /* For less than 991px */
      right: 45px;
      top: 2px;
    }
  }
  ul#top_access li {
    display: inline-block;
    position: relative;
    padding: 0;
    margin-left: 15px;
  }
  ul#top_access li i {
    font-size: 34px;
    font-size: 2.125rem;
  }
  ul#top_access li a {
    color: #3f4079;
  }
  ul#top_access li a:hover {
    color: #333;
  }
  ul#top_access li#user {
    position: relative;
    padding: 10px 0 0 60px;
    font-weight: 500;
  }
  ul#top_access li#user figure {
    position: absolute;
    left: 15px;
    top: 0;
    width: 35px;
    height: 35px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  ul#top_access li#user figure img {
    width: auto;
    height: 35px;
  }
  @media (max-width: 991px) {
    ul#top_access li#user figure {
      /* For less than 991px */
      text-indent: 0;
    }
  }
  @media (max-width: 991px) {
    ul#top_access li#user {
      /* For less than 991px */
      text-indent: -9999px;
      padding: 0;
      margin: 2px 10px 0 0;
    }
  }

  /* logo home with h1 */
  #logo_home h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  #logo_home h1 a {
    width: 163px;
    height: 36px;
    display: block;
    background: url(../img/logo.png) no-repeat 0 0;
    background-size: 163px 36px;
    text-indent: -9999px;
  }

  @media only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
    #logo_home h1 a {
      background-image: url(../img/logo.png);
      background-size: 163px 36px;
    }
  }
  /* Footer */
  footer {
    background-color: #fff;
    color: #555;
  }
  footer h5 
  {
   font-size: 16px !important;
   /* font-size: 0.875rem; */
   font-weight: 600;
   text-transform: uppercase;
   color: #009899;
   margin-bottom: 12px;
 }
 @media (max-width: 767px) {
  footer h5 {
    /* For less than 767px */
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  footer ul {
    /* For less than 767px */
    margin-bottom: 20px;
  }
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a 
{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #7f7f7f;
}
footer ul li a:hover 
{
  color: #0096A7;
}
footer ul li a i {
  margin-right: 10px;
  color: #fff;
}
footer ul.links li a:hover {
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
footer ul.links li a:hover:after {
  opacity: 1;
}
footer ul.links li a:after {
  font-family: 'ElegantIcons';
  content: "\24";
  position: absolute;
  margin-left: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
footer ul.contacts li a i 
{
  margin-right: 0px;
  color: #0599aa;
}
footer #copy 
{
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
  padding-top: 20px;
}
@media (max-width: 767px) {
  footer #copy 
  {
    text-align: center;
    margin-bottom: 0px;
  }
}

.follow_us ul {
  margin: 0;
}
.follow_us ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-size: 1rem;
}
.follow_us ul li a i 
{
  color: #009899;
}
.follow_us ul li a i:hover {
  color: #e74e84;
}

/* Addtional links / Footer */
ul#additional_links {
  margin: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
}
ul#additional_links li {
  display: inline-block;
  margin-right: 15px;
}
ul#additional_links li:first-child {
  margin-right: 20px;
}
ul#additional_links li:last-child:after {
  content: "";
}
ul#additional_links li a {
  opacity: 0.5;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
ul#additional_links li a:hover {
  opacity: 1;
}
ul#additional_links li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 10px;
}

/* Wow on scroll event */
.wow {
  visibility: hidden;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home--------*/
.hero_home 
{
  height: 525px;
  width: 100%;
  display: table;
}
@media (max-width: 767px) {
  .hero_home {
    /* For less than 767px */
    height: 450px;
  }
}
.hero_home.version_1 {
  background: #3f4079 url(../img/french.png) no-repeat center bottom;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_home.version_007 {
  background: #3f4079 url(../img/english.png) no-repeat center bottom;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  .hero_home.version_1 {
    /* For less than 767px */
    height: 450px;
  }
  .hero_home.version_007 {
    /* For less than 767px */
    height: 450px;
  }
}
.hero_home.version_1 .content {
  background-color: #363768;
  background-color: rgba(63, 64, 121, 0);
}
.hero_home.version_007 .content {
  background-color: #363768;
  background-color: rgba(63, 64, 121, 0);
}
.hero_home.version_2 {
  background: none;
  position: relative;
  overflow: hidden;
  height: 500px;
  display: block;
}
.hero_home.version_2:before {
  background: #3f4079 url(http://via.placeholder.com/1600x1067.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  animation: pop-in 3s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero_home.version_2 {
    /* For less than 767px */
    height: 450px;
  }
}
.hero_home.version_2 .content {
  background-color: #3e3f77;
  background-color: rgba(63, 64, 121, 0.9);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 991px) {
  .hero_home.version_2 .content {
    /* For less than 991px */
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .hero_home.version_2 .content {
    /* For less than 767px */
    padding: 0 15px;
  }
}
.hero_home.version_3 {
  background: #3f4079 url(../img/hero_home_bg_1.svg) no-repeat center bottom;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  .hero_home.version_3 {
    /* For less than 767px */
    height: 450px;
  }
}
.hero_home.version_3 .content {
  background-color: #363768;
  background-color: rgba(63, 64, 121, 0);
  padding: 0 25%;
}
@media (max-width: 991px) {
  .hero_home.version_3 .content {
    /* For less than 991px */
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .hero_home.version_3 .content {
    /* For less than 767px */
    padding: 0 15px;
  }
}
.hero_home.version_3 .content p {
  margin: 0 0 45px 0;
}
.hero_home .content 
{
  display: table-cell;
  padding: 0;
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  background-color: #3e3f77;
  background-color: rgba(63, 64, 121, 0.9);
}
@media (max-width: 991px) {
  .hero_home .content {
    /* For less than 991px */
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .hero_home .content {
    /* For less than 767px */
    font-size: 16px;
    font-size: 1rem;
    padding: 0 15px;
  }
}
.hero_home .content h3 
{
  margin: 0 0 0 0;
  font-size: 60px;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 43px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .hero_home .content h3 {
    /* For less than 767px */
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media (max-width: 575px) {
  .hero_home .content h3 {
    /* For less than 575px */
    font-size: 32px;
    font-size: 2rem;
  }
}

/* Animations hero */
@keyframes pop-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/* Delay */
.hero_home .content h3.animated, #hero_video .content h3.animated {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-duration: 0.4s;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
}
.hero_home .content p.animated, #hero_video .content p.animated {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  animation-duration: 0.4s;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
}
.hero_home .content form.animated, #hero_video .content form.animated {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}
.hero_home .content .btn_1.animated, #hero_video .content .btn_1.animated {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
}

.custom-search-input 
{
 margin: 0;
 top: 0;
 padding: 0;
 width: 100%;
 margin: auto;
 position: relative;
}
@media (max-width: 991px) {
  .custom-search-input {
    /* For less than 991px */
    width: auto;
  }
}
.custom-search-input .search-query 
{
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}
.custom-search-input .search-query:focus {
  outline: none;
}
@media (max-width: 575px) {
  .custom-search-input .search-query {
    /* For less than 575px */
    padding-left: 15px;
  }
}
.custom-search-input ul {
  text-align: center;
  margin-top: 25px;
}
.custom-search-input ul li {
  display: inline-block;
  margin-right: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.custom-search-input ul li input[type="radio"] {
  display: none;
}
.custom-search-input ul li input[type="radio"]:checked + label, #custom-search-input ul li input[type="radio"]:checked + label:hover {
  background-color: #74d1c6;
  color: #fff;
}
.custom-search-input ul li input[type="radio"]:hover + label {
  background-color: #e74e84;
  color: #fff;
}
.custom-search-input ul li label {
  display: inline-block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 10px 6px 10px;
  line-height: 1;
  text-shadow: none;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
}
.custom-search-input ul li:last-child {
  margin-right: 0;
}
.custom-search-input input[type='submit'] 
{
 position: absolute;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
 right: 0;
 color: #fff;
 font-weight: 600;
 font-size: 16px;
 font-size: 1rem;
 top: 0;
 border: 0;
 padding: 0 25px;
 height: 50px;
 cursor: pointer;
 outline: none;
 -webkit-border-radius: 0 3px 3px 0;
 -moz-border-radius: 0 3px 3px 0;
 -ms-border-radius: 0 3px 3px 0;
 border-radius: 0 3px 3px 0;
 background-color: #009899;
}
.custom-search-input input[type='submit']:hover 
{
  background-color: #4ABCD7;
}
@media (max-width: 575px) {
  #custom-search-input input[type='submit'] {
    /* For less than 575px */
    text-indent: -999px;
    background: #74d1c6 url(../img/search.svg) no-repeat center center;
  }
}

.box_feat {
  background-color: #fff;
  padding: 165px 45px 20px 45px;
  text-align: center;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}
.box_feat h3 {
  text-transform: uppercase;
  font-size: 21px;
  font-size: 1.3125rem;
  margin-top: 25px;
  color: #e74e84;
}
.box_feat#icon_1 {
  background: #fff url(../img/icon-home-1.svg) no-repeat center 45px;
}
.box_feat#icon_2 {
  background: #fff url(../img/icon-home-2.svg) no-repeat center 45px;
}
.box_feat#icon_3 {
  background: #fff url(../img/icon-home-3.svg) no-repeat center 45px;
}
.box_feat span {
  position: absolute;
  top: 50%;
  right: -48px;
  margin: -42px 0 0 0;
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #ededed;
  background: #fff url(../img/arrow-gray-1.svg) no-repeat center center;
  display: block;
  z-index: 9;
}
@media (max-width: 991px) {
  .box_feat span {
    /* For less than 991px */
    top: 100%;
    left: 50%;
    margin: -20px 0 0 -35px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.list_title {
  background-color: #3f4079;
  color: #fff;
  margin-bottom: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 30px 0;
  text-align: center;
}
.list_title i {
  font-size: 42px;
  font-size: 2.625rem;
  margin-bottom: 15px;
  display: inline-block;
}
@media (max-width: 575px) {
  .list_title i {
    /* For less than 575px */
    display: none;
  }
}
.list_title h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  color: #74d1c6;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .list_title {
    /* For less than 575px */
    text-align: left;
    padding: 15px;
  }
}

.list_home ul {
  text-align: left;
}
.list_home ul li a {
  background-color: #fff;
  padding: 10px;
  display: block;
  margin-bottom: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  font-weight: 500;
  color: #555;
}
.list_home ul li a strong {
  background-color: #f8f8f8;
  color: #999;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 6px;
  display: inline-block;
  margin-right: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.list_home ul li a:after {
  font-family: 'ElegantIcons';
  content: "\24";
  right: 15px;
  top: 15px;
  position: absolute;
  color: #e74e84;
}
.list_home ul li a:hover {
  background-color: #e74e84;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}
.list_home ul li a:hover:after {
  color: #fff;
}

/*Carousel home page*/
#reccomended, #staff 
{
 margin-top: 20px;
}
@media (max-width: 767px) 
{
  #reccomended, #staff 
  {
    /* For less than 767px */
    margin: 0 0 15px 0;
  }
}
#reccomended .item .title, #staff .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}
#reccomended .item .title h4, #staff .item .title h4 
{
  background-color: #3f4079;
  background-color: #009899;
  display: inline-block;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  padding: 10px 15px;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  opacity: 0;
}
#reccomended .item .title h4 em, #staff .item .title h4 em {
  display: block;
  font-size: 13px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  margin-top: 3px;
}
#reccomended .item a, #staff .item a {
  position: relative;
  display: block;
}
#reccomended .item a .views, #staff .item a .views 
{
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #3f4079;
  background-color: #009899;
  color: #fff;
  box-sizing: border-box;
  padding: 3px 6px 4px 5px;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0;
}
#reccomended .item a .views i, #staff .item a .views i {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

#reccomended .owl-item, #staff .owl-item {
  opacity: 0.5;
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  transition: all 0.3s ease-in-out 0s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

#reccomended .owl-item.active.center, #staff .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

#reccomended .owl-item.active.center .item .title h4, #staff .owl-item.active.center .item .title h4,
#reccomended .owl-item.active.center .item .views, #staff .owl-item.active.center .item .views {
  opacity: 1;
}

.owl-theme .owl-dots 
{
 margin-top: 5px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span 
{
  background: #009899 !important;
}

a.box_cat_home {
  background-color: #fff;
  display: block;
  padding: 25px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  color: #999;
}
a.box_cat_home i {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #e74e84;
  opacity: 0;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
a.box_cat_home h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
}
a.box_cat_home:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
a.box_cat_home:hover i {
  opacity: 1;
}
a.box_cat_home ul {
  margin: 20px -15px -25px -15px;
  padding: 10px;
  border-top: 1px solid #ededed;
}
a.box_cat_home ul li {
  display: inline-block;
}
a.box_cat_home ul li:first-child {
  float: left;
}
a.box_cat_home ul li:last-child {
  float: right;
}
a.box_cat_home ul li strong {
  margin-right: 5px;
  font-weight: 600;
}

#app_section 
{
 background: #3f4079 url(../img/page-images/app-section-bg.png);
 padding: 50px 0 30px;
 color: #fff;
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
}
@media (max-width: 991px) {
  #app_section {
    /* For less than 991px */
    padding: 60px 0 35px 0;
  }
}
#app_section .app_buttons {
  position: relative;
}
#app_section .app_buttons svg {
  width: 70px;
  height: 70px;
  position: absolute;
  left: -65px;
  top: -55px;
}
@media (max-width: 767px) {
  #app_section .app_buttons svg {
    /* For less than 767px */
    display: none;
  }
}
#app_section .app_buttons svg .draw-arrow {
  stroke-width: 4;
  stroke: #4ABCD7;
  fill: none;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-iteration-count: once;
  -webkit-animation-iteration-count: once;
  -moz-animation-iteration-count: once;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
}
#app_section .app_buttons svg .draw-arrow.tail-1 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
#app_section .app_buttons svg .draw-arrow.tail-2 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
#app_section small {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0.6;
}
#app_section h3 
{
  color: #fff;
  font-size: 28px;
}
#app_section h3 strong 
{
 color: #4ABCD7;
}
#app_section p 
{
 margin-bottom: 25px;
 font-size: 20px;
 font-weight: 300;
 color: white;
}
@media (max-width: 575px) {
  #app_section p {
    /* For less than 575px */
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}

.animated .draw-arrow {
  animation-name: draw;
  -webkit-animation-name: draw;
  -moz-animation-name: draw;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* Home video background*/
.header-video {
  position: relative;
  overflow: hidden;
  background: #000;
}
@media (max-width: 991px) {
  .header-video {
    /* For less than 991px */
    height: 450px !important;
  }
}

#hero_video {
  position: relative;
  background-size: cover;
  color: #fff;
  width: 100%;
  display: table;
  height: 100%;
  z-index: 99;
}
#hero_video .content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 10%;
}
@media (max-width: 767px) {
  #hero_video .content {
    /* For less than 767px */
    padding: 0 15px;
  }
}
#hero_video .content h3 {
  color: #fff;
  font-size: 3.8rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 767px) {
  #hero_video .content h3 {
    /* For less than 767px */
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  #hero_video .content h3 {
    /* For less than 575px */
    font-size: 1.8rem;
  }
}
#hero_video .content p {
  font-weight: 300;
  font-size: 1.5rem;
}
#hero_video .content p strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  #hero_video .content p {
    /* For less than 767px */
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  #hero_video .content p {
    /* For less than 575px */
    font-size: 1.2rem;
  }
}

video {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
}

iframe {
  height: 100%;
  width: 100%;
}

.teaser-video {
  width: 100%;
  height: auto;
}

.header-video--media {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  #hero_video {
    background: #3f4079 url(../img/hero_bg_1.svg) repeat fixed;
  }

  .header-video {
    background: none;
  }
}
/*-------- 2.2 Listing --------*/
#results 
{
 padding: 20px 0;
 color: #fff;
 background: #009899;
 position: relative !important;
}
@media (max-width: 767px) {
  #results 
  {
    padding: 25px 0;
  }
}
#results.is_stuck {
  z-index: 99;
}
#results h4 
{
 color: #fff;
 margin: 10px 0 0 0;
 font-size: 15px !important;
}
@media (max-width: 767px) {
  #results h4 {
    /* For less than 767px */
    display: block;
  }
}

.search_bar_wrapper {
  background-color: #3f4079;
  padding: 15px;
  margin: 0 -15px 0 -15px;
}

.search_bar_list {
  position: relative;
}
.search_bar_list input[type='text'] {
  border: 0;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-left: 15px;
}
.search_bar_list input[type='submit'] 
{
 position: absolute;
 right: -1px;
 color: #fff;
 font-weight: 600;
 top: 0;
 border: 0;
 padding: 0 15px;
 height: 40px;
 cursor: pointer;
 -webkit-border-radius: 0 3px 3px 0;
 -moz-border-radius: 0 3px 3px 0;
 -ms-border-radius: 0 3px 3px 0;
 border-radius: 0 3px 3px 0;
 background-color: #4ABCD7;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
}
.search_bar_list input[type='submit']:hover {
  background-color: #e74e84;
}

.box_list {
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .box_list {
    /* For less than 991px */
    min-height: inherit;
  }
}
.box_list figure 
{
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 213px;
}
@media (max-width: 767px) {
  .box_list figure {
    /* For less than 767px */
    height: 280px;
  }
}
.box_list figure .preview {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}
.box_list figure .preview span 
{
  background-color: #fcfcfc;
  background-color: #009899;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: white;
  font-size: 0.75rem;
  padding: 10px 25px;
}
.box_list figure:hover .preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.box_list figure a img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box_list figure a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.box_list .wrapper 
{
  padding: 15px;
}
.box_list .wrapper h3 {
  font-size: 1.25rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .box_list .wrapper p {
    /* For less than 767px */
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.box_list small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.box_list ul 
{
  width: 100%;
  padding: 20px 15px;
  border-top: 1px solid #ededed;
  padding-bottom: 38px;
}
@media (max-width: 991px) {
  .box_list ul {
    /* For less than 991px */
    position: static;
  }
}
.box_list ul li {
  display: inline-block;
  color: #999;
  font-weight: 500;
}
.box_list ul li i {
  margin-right: 5px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .box_list ul li:first-child 
  {
    display: block;
  }
}
.box_list ul li:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .box_list ul li:nth-child(2) {
    /* For less than 767px */
    display: inline-block;
  }
}
.box_list ul li a {
  color: #999;
  font-weight: 500;
}
.box_list ul li a:hover {
  color: #e74e84;
}
.box_list ul li:last-child {
  margin-right: 0;
  float: right;
}
.box_list ul li:last-child a 
{
 background: #fff;
 border: 2px solid #009899;
 color: #009899;
 padding: 5px 20px;
 font-weight: 500;
 line-height: 1;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
 -webkit-border-radius: 30px;
 -moz-border-radius: 30px;
 -ms-border-radius: 30px;
 border-radius: 30px;
}
.box_list ul li:last-child a:hover 
{
  background: #009899;
  color: #fff;
}
.box_list.home ul li:first-child, .box_list.home ul li:nth-child(2), .box_list.home ul li:last-child {
  display: inline-block;
}

a.wish_bt {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 9px 10px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a.wish_bt:after {
  font-family: 'ElegantIcons';
  content: "\e030";
}
a.wish_bt:hover:after {
  content: "\e089";
  color: #e74e84;
}

.strip_list {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 20px 15px 15px 115px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  transition: all .3s ease;

}
.strip_list a.wish_bt {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #555;
}
.strip_list a.wish_bt:hover:after {
  color: #e74e84;
}
@media (max-width: 767px) {
  .strip_list {
    /* For less than 767px */
    padding: 20px 15px 15px 90px;
  }
}
.strip_list figure 
{
 width: 80px;
 height: 80px;
 position: absolute;
 overflow: hidden;
 -webkit-border-radius: 50%;
 -moz-border-radius: 50%;
 -ms-border-radius: 50%;
 border-radius: 50%;
 left: 15px;
 top: 20px;
}
.strip_list figure img {
  width: auto;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767px) {
  .strip_list figure img {
    /* For less than 767px */
    height: 60px;
  }
}
@media (max-width: 767px) {
  .strip_list figure {
    /* For less than 767px */
    width: 60px;
    height: 60px;
  }
}
.strip_list h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 0;
  display: inline-block;
  margin-right: 10px;
}
.strip_list p {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .strip_list p {
    /* For less than 767px */
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.strip_list small {
  color: #999;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.strip_list ul {
  border-top: 1px solid #ededed;
  margin: 15px -15px -15px -115px;
  padding: 20px 15px;
}
@media (max-width: 767px) {
  .strip_list ul {
    /* For less than 767px */
    margin: 15px -15px -15px -90px;
  }
}
.strip_list ul li {
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
}
.strip_list ul li a {
  color: #999;
  cursor: pointer;
}
.strip_list ul li a:hover {
  color: #e74e84;
}
.strip_list ul li:first-child:after {
  content: '|';
  font-weight: 400;
  margin-left: 8px;
  color: #ccc;
}
.strip_list ul li:last-child {
  float: right;
  margin-right: 0;
}
.strip_list ul li:last-child a 
{
  border: 2px solid #009899;
  color: #009899;
  cursor: pointer;
  padding: 5px 20px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.strip_list ul li:last-child a:hover 
{
 background-color: #009899;
 color: #fff !important;
}
@media (max-width: 991px) {
  .strip_list ul li:first-child 
  {
    display: inline-block;
  }
}

.rating i {
  color: #ddd;
  font-size: 13px;
  font-size: 0.8125rem;
}
.rating i.voted {
  color: #FFC107;
}
.rating small {
  margin-bottom: 0;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
}
.rating small a {
  color: #999;
  text-decoration: underline;
}

/*-------- 2.3 Map listing --------*/
.infoBox {
  padding-right: 50px !important;
}
.infoBox > img {
  position: absolute !important;
  right: 60px !important;
  top: 10px !important;
  z-index: 9999999;
}

.marker_info {
  width: 200px;
  padding: 20px 15px 15px 15px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: #fefefe;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 99999;
  font-family: "Geologica", "Poppins", Helvetica, sans-serif;
}
.marker_info figure {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}
.marker_info figure img {
  width: auto;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.marker_info h3 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 10px 0;
}
.marker_info h3 a {
  color: #e74e84;
}
.marker_info h3 a:hover {
  color: #333;
}
.marker_info small {
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.marker_info span {
  display: block;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.marker_info:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-right-color: rgba(255, 255, 255, 0.9);
  border-width: 10px;
  margin-top: -10px;
}

.btn_infobox_get_directions:before,
.btn_infobox_phone:before {
  font-family: 'ElegantIcons';
  font-size: 14px;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  left: 0;
  top: 2px;
  color: #e74e84;
  margin-right: 8px;
}

.btn_infobox_get_directions {
  border: none;
  display: block;
  font-weight: 500;
  color: #555;
  background: none;
  cursor: pointer;
  outline: none;
  font-size: 12px;
  font-size: 0.75rem;
}
.btn_infobox_get_directions:before {
  content: "\e081";
}

.btn_infobox_phone {
  border: none;
  display: block;
  font-weight: 500;
  color: #555;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-size: 0.75rem;
  outline: none;
}
.btn_infobox_phone:before {
  content: "\e090";
}

.full-height {
  height: 100%;
}
@media (max-width: 991px) {
  .full-height {
    /* For less than 991px */
    height: auto;
  }
}

.row-height {
  height: 100%;
  min-height: 100%;
}
@media (max-width: 991px) {
  .row-height {
    /* For less than 991px */
    height: auto;
  }
}

.map-right {
  height: 100%;
  min-height: 100%;
  padding: 0px;
}
@media (max-width: 991px) {
  .map-right {
    /* For less than 991px */
    height: 400px;
  }
}

#map_listing {
  height: 100%;
  width: 100%;
}
#map_listing.normal_list 
{
 height: 545px;
 width: auto;
 border: 3px solid #fff;
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 -ms-border-radius: 5px;
 border-radius: 5px;
 margin-bottom: 0px;
}

.content-left {
  height: 100%;
  min-height: 100%;
  overflow-y: scroll;
  padding-top: 55px;
  background-color: #f5f8fa;
}

.search_bar {
  margin-bottom: 15px;
  position: relative;
}
.search_bar input[type='submit'] {
  position: absolute;
  right: 8px;
  top: 2px;
  text-indent: -9999px;
  border: 0;
  width: 35px;
  height: 35px;
  background: url(../img/search.svg) no-repeat center right;
  cursor: pointer;
}

.filters_listing {
  border-bottom: 1px solid #e1e8ed;
  padding: 15px 0;
}
.filters_listing.map_listing {
  border-bottom: none;
}
.filters_listing ul {
  margin: 0;
}
.filters_listing ul li {
  margin-right: 10px;
}
.filters_listing ul li h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .filters_listing ul li h6 {
    /* For less than 767px */
    display: none;
  }
}
.filters_listing ul li:first-child {
  float: left;
}
.filters_listing ul li:nth-child(2) {
  float: right;
  margin-right: 0;
}
@media (max-width: 767px) {
  .filters_listing ul li:nth-child(2) {
    /* For less than 767px */
    float: left;
  }
}
.filters_listing ul li:nth-child(3) {
  float: right;
}
@media (max-width: 767px) {
  .filters_listing ul li:nth-child(3) {
    /* For less than 767px */
    float: left;
    clear: both;
  }
}

.layout_view {
  background-color: #fff;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 6px 8px 5px 8px;
  margin-bottom: 5px;
}
.layout_view a {
  color: #3f4079;
}
.layout_view a.active {
  color: #ccc;
  cursor: default;
}
.layout_view a:hover {
  color: #e74e84;
}

.switch-field {
  overflow: hidden;
}
.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.switch-field input:checked + label {
  background-color: #3f4079;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #fff;
}
.switch-field label {
  float: left;
  display: inline-block;
  min-width: 70px;
  background-color: #fff;
  color: #3f4079;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  text-shadow: none;
  padding: 10px 15px 8px 15px;
  line-height: 1;
  border: 1px solid #e1e8ed;
  border-right: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.switch-field label:first-of-type {
  border-radius: 3px 0 0 3px;
}
.switch-field label:last-of-type {
  border-radius: 0 3px 3px 0;
  border: 1px solid #e1e8ed;
}
.switch-field label:hover {
  cursor: pointer;
  color: #e74e84;
}

.sbHolder {
  background-color: #fff;
  border: 1px solid #e1e8ed;
  height: 32px;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  min-width: 160px;
}

.sbSelector {
  display: block;
  height: 32px;
  left: 0;
  line-height: 32px;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 10px;
  top: 0;
  width: 100%;
}

.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
  color: #555;
  outline: none;
  text-decoration: none;
  color: #3f4079;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
}

.sbToggle {
  position: absolute;
  display: block;
  height: 32px;
  outline: none;
  right: 0;
  top: 0;
  width: 35px;
  text-align: center;
  line-height: 32px;
}
.sbToggle:after {
  font-family: 'ElegantIcons';
  font-size: 14px;
  content: "\43";
  color: #3f4079;
  text-align: center;
}

.sbHolderDisabled {
  background-color: #ededed;
  border: solid 1px #ededed;
}

.sbOptions {
  background-color: #fff;
  border: solid 1px #ededed;
  list-style: none;
  left: -1px;
  right: -1px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px;
  z-index: 10;
  font-size: 12px;
  font-size: 0.75rem;
}

.sbOptions li {
  padding: 0 7px;
  float: none !important;
  border-bottom: solid 1px #ededed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.sbOptions li:last-child {
  border-bottom: none;
  float: none !important;
  margin: 0;
  padding-left: 10px;
}

.sbOptions li:hover {
  color: #e74e84;
}

.sbOptions a {
  display: block;
  outline: none;
  padding: 7px 0 7px 3px;
  text-transform: capitalize;
}

.sbOptions a:link,
.sbOptions a:visited {
  color: #555;
  text-decoration: none;
}

.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
  color: #e74e84;
}

.sbOptions li.last a {
  border-bottom: none;
}

.sbOptions .sbDisabled {
  border-bottom: dotted 1px #fff;
  color: #999;
  display: block;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbGroup {
  border-bottom: dotted 1px #fff;
  color: #555;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbSub {
  padding-left: 17px;
}

/* Cluster styles */
.cluster img {
  display: none !important;
}

.cluster-visible {
  text-align: center;
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 500;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  background-color: #3f4079 !important;
  background-image: none !important;
}

.cluster-visible:before {
  border: 7px solid #3f4079;
  opacity: 0.2;
  box-shadow: inset 0 0 0 4px #3f4079;
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: cluster-animation 2.5s infinite;
}

@keyframes cluster-animation {
  0%,100% {
    transform: scale(1.3) rotate(0deg);
  }
  50% {
    transform: scale(1.5) rotate(90deg);
  }
}
/*-------- 2.4 Detail page  --------*/
#breadcrumb 
{
  background-color: #009899;
  padding: 2px 0;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  #breadcrumb 
  {
   padding: 5px 0;
 }
}
#breadcrumb ul {
  margin: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}
#breadcrumb ul li {
  display: inline-block;
  padding-right: 8px;
  margin-right: 3px;
  position: relative;
}
#breadcrumb ul li a {
  color: #fff;
}
#breadcrumb ul li a:hover {
  color: #74d1c6;
}
#breadcrumb ul li:after {
  content: "\e9ee";
  font-family: "fontello";
  position: absolute;
  right: 0;
  top: 0;
}
#breadcrumb ul li:last-child {
  opacity: 0.7;
}
#breadcrumb ul li:last-child:after {
  content: '';
  margin-right: 0;
}

.tabs_styled_2 .nav-tabs .nav-item.show .nav-link,
.tabs_styled_2 .nav-tabs .nav-link.active {
  color: #333;
  background-color: #fff;
  border-color: #e1e8ed;
  border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
  .tabs_styled_2 .nav-tabs .nav-item.show .nav-link,
  .tabs_styled_2 .nav-tabs .nav-link.active {
    /* For less than 767px */
    border: 1px solid transparent;
  }
}
.tabs_styled_2 .nav-tabs .nav-link:focus,
.tabs_styled_2 .nav-tabs .nav-link.active:hover {
  border-color: #e1e8ed;
  border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
  .tabs_styled_2 .nav-tabs .nav-link:focus,
  .tabs_styled_2 .nav-tabs .nav-link.active:hover {
    /* For less than 767px */
    border: 1px solid transparent;
  }
}
.tabs_styled_2 .nav-tabs .nav-link:hover {
  border-color: transparent;
}
@media (max-width: 767px) {
  .tabs_styled_2 .nav-item {
    /* For less than 767px */
    display: block;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #e1e8ed;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
  }
}
.tabs_styled_2 .nav-tabs .nav-link {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-size: 16px;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .tabs_styled_2 .nav-tabs .nav-link {
    /* For less than 767px */
    margin-right: 0;
    padding: 0.5rem;
  }
}
.tabs_styled_2 .nav-tabs {
  border-bottom: 1px solid #e1e8ed;
}
.tabs_styled_2 .tab-pane 
{
  background-color: #fff;
  padding: 30px 30px 20px 30px;
  border: 1px solid #e1e8ed;
  border-top: none;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.tabs_styled_2 .tab-pane hr {
  margin: 30px -30px 30px -30px;
  border-color: #ededed;
}

.indent_title_in 
{
  position: relative;
  padding-left: 0px;
  margin-bottom: 5px;
  display: inline-flex;
}
@media (max-width: 767px) {
  .indent_title_in {
    /* For less than 767px */
    padding-left: 0;
  }
}
.indent_title_in i {
  font-size: 40px;
  position: absolute;
  left: 0;
  color: #3f4079;
  top: 0;
}
@media (max-width: 767px) {
  .indent_title_in i {
    /* For less than 767px */
    position: static;
  }
}
.indent_title_in h3 
{
  margin-bottom: 0;
  margin-top: 14px;
  font-size: 16px;
  color: #165476;
}
.indent_title_in p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.wrapper_indent 
{
 padding-left: 0px;
}
@media (max-width: 767px) {
  .wrapper_indent {
    /* For less than 767px */
    padding-left: 0;
  }
}

ul.list_edu {
  margin-bottom: 0;
  line-height: 1.8;
}
ul.list_edu li:before 
{
  font-family: FontAwesome;
  content: "\f046";
  margin-right: 8px;
  color: #ccc;
}
ul.list_edu li strong 
{
  font-weight: 500;
  color: #c77b7b;
}

#review_summary {
  text-align: center;
  background-color: #3f4079;
  color: #fff;
  padding: 20px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  #review_summary {
    /* For less than 991px */
    margin-bottom: 15px;
  }
}
#review_summary strong {
  font-size: 3rem;
  line-height: 1;
}

.reviews-container .progress {
  margin-bottom: 10px;
}
.reviews-container .progress-bar {
  background-color: #74d1c6;
}
.reviews-container .review-box {
  position: relative;
  margin-bottom: 25px;
  padding-left: 100px;
  min-height: 100px;
}
@media (max-width: 767px) {
  .reviews-container .review-box {
    /* For less than 767px */
    padding-left: 0;
  }
}
.reviews-container .rev-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.reviews-container .rev-thumb img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .reviews-container .rev-thumb {
    /* For less than 767px */
    position: static;
    margin-bottom: 10px;
  }
}
.reviews-container .rev-content {
  position: relative;
  padding: 25px 25px 0 25px;
  border: 1px solid #ededed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.reviews-container .rev-info {
  font-size: 0.75rem;
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

#calendar {
  padding: 0;
  margin-bottom: 30px;
}
#calendar .datepicker.datepicker-inline,
#calendar .datepicker.datepicker-inline table {
  width: 100%;
}

.datepicker thead tr th.prev:hover,
.datepicker thead tr th.next:hover {
  color: #e74e84;
}

.datepicker .disabled.disabled-date.day,
.datepicker .disabled.disabled-date.day:hover {
  background-color: #eb525b !important;
  color: #fff !important;
}

.datepicker .day:hover {
  background: #8ec549 !important;
  color: #fff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.datepicker .active.day:hover {
  background: #333 !important;
  color: #fff;
}

ul.legend li {
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding-left: 30px;
}
ul.legend li strong {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}
ul.legend li:first-child strong {
  background-color: #8ec549;
}
ul.legend li:last-child strong {
  background-color: #eb525b;
}

ul.time_select.version_2 li {
  float: left;
  width: 50%;
}
ul.time_select li input[type="radio"] {
  display: none;
  cursor: pointer;
}
ul.time_select li input[type="radio"]:checked + label 
{
  background-color: #009899;
  color: #fff;
}
ul.time_select li label 
{
 display: inline-block;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
 background-color: white;
 -webkit-border-radius: 3px;
 -moz-border-radius: 3px;
 -ms-border-radius: 3px;
 border-radius: 3px;
 padding: 5px 5px 5px 5px;
 line-height: 1;
 min-width: 85px;
 margin: 3px 6px;
 text-align: center;
 cursor: pointer;
 border: 2px solid #009899;
 color: #009899;
 border-radius: 50px;
 font-size: 14px;
 font-weight: 500;
}
ul.time_select li label:hover 
{
  background-color: #4ABCD7;
  color: #fff;
  border: 2px solid #4abcd7;
}

ul.treatments {
  margin-bottom: 45px;
}
ul.treatments li {
  border-bottom: 1px dotted #ddd;
  width: 45%;
  float: left;
  margin: 15px;
}
@media (max-width: 991px) {
  ul.treatments li {
    /* For less than 991px */
    width: auto;
    float: none;
  }
}

input[type=checkbox].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type=checkbox].css-checkbox + label.css-label {
  padding-left: 35px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
  padding-top: 3px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input[type=checkbox].css-checkbox:hover + label.css-label {
  background-position: 0 -28px;
}

input[type=checkbox].css-checkbox:checked + label.css-label {
  background-position: 0 -56px;
}

label.css-label {
  background-image: url(../img/checkbox.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  display: block;
}
label.css-label strong {
  float: right;
}

#sidebar_detail {
  position: relative;
  top: -240px;
}
#sidebar_detail #map {
  width: 100%;
  height: 350px;
  text-align: center;
  background-color: #fff;
  border: 5px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
}
#sidebar_detail h4 {
  text-transform: uppercase;
  color: #6d7b84;
  font-size: 18px;
  font-size: 1.125rem;
}

.box_profile 
{
  background-color: #fff;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #e1e8ed;
  padding: 0 25px 0px 25px;
  margin-bottom: 35px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.box_profile figure {
  margin: -1px -26px 25px -26px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .box_profile figure {
    /* For less than 991px */
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: 25px auto;
  }
}
.box_profile .rating {
  margin-bottom: 20px;
  display: inline-block;
}
.box_profile small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.box_profile h1 {
  font-size: 21px;
  font-size: 1.3125rem;
}
.box_profile p {
  color: #999;
}
.box_profile ul.statistic {
  padding-bottom: 5px;
}
.box_profile ul.statistic li {
  display: inline-block;
  background-color: #74d1c6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: normal;
  color: #fff;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  min-width: 95px;
}
.box_profile ul.contacts 
{
  text-align: left;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 25px;
  margin: 0 -25px 0px -25px;
}
@media (max-width: 991px) {
  .box_profile ul.contacts {
    /* For less than 991px */
    text-align: center;
  }
}
.box_profile ul.contacts li {
  margin-bottom: 15px;
}
.box_profile ul.contacts li h6 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 3px;
}
.box_profile ul.contacts li:last-child {
  margin-bottom: 0;
}

/*Version 3*/
.profile {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .profile {
    /* For less than 767px */
    padding-top: 0;
  }
}
.profile .rating {
  margin-bottom: 15px;
  display: inline-block;
}
.profile small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.profile h1 
{
  font-size: 20px;
  color: #165476;
}
.profile p {
  color: #999;
}
.profile ul.statistic {
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.profile ul.statistic li {
  display: inline-block;
  background-color: #74d1c6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  color: #fff;
  padding: 8px 10px 5px 10px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  min-width: 95px;
  text-align: center;
}
.profile ul.contacts 
{
 margin: 15px 0 0 0;
}
.profile ul.contacts li {
  margin-bottom: 15px;
}
.profile ul.contacts li h6 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 3px;
}
.profile ul.contacts li:last-child {
  margin-bottom: 0;
}

.booking .title 
{
 background-color: #009899;
 color: #fff;
 margin: -30px -30px 30px -30px;
 padding: 17px 30px;
 -webkit-border-radius: 5px 5px 0 0;
 -moz-border-radius: 5px 5px 0 0;
 -ms-border-radius: 5px 5px 0 0;
 border-radius: 5px 5px 0 0;
}
.booking .title h3 
{
  font-size: 1rem;
  margin: 0;
  color: #fff;
}
.booking .title small {
  font-size: 13px;
  font-size: 0.8125rem;
}
.booking hr {
  margin-top: 15px !important;
}
.booking ul.treatments {
  margin: 15px 0 0 0;
}
.booking ul.treatments li {
  border-top: 1px dotted #ddd;
  border-bottom: none;
  width: 100%;
  margin: 0;
  padding: 12px 0 5px 0;
}
@media (max-width: 991px) {
  .booking ul.treatments li {
    /* For less than 991px */
    width: auto;
    float: none;
  }
}

#secondary_nav 
{
 background-color: #373869;
 background-color: rgba(63, 64, 121, 0.05);
 background-color: #009899;
 position: relative;
 bottom: -3px;
 border-bottom: none;
 -webkit-border-radius: 5px 5px 0 0;
 -moz-border-radius: 5px 5px 0 0;
 -ms-border-radius: 5px 5px 0 0;
 border-radius: 5px 5px 0 0;
 padding: 15px;
}
#secondary_nav.is_stuck {
  z-index: 99999999 !important;
  width: 100% !important;
  bottom: inherit;
  left: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  position: relative !important;
}
#secondary_nav ul {
  margin: 0;
}
#secondary_nav ul li {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin-right: 25px;
}
@media (max-width: 767px) {
  #secondary_nav ul li {
    /* For less than 767px */
    margin-right: 15px;
  }
}
#secondary_nav ul li:last-child {
  display: none;
  margin-right: 0;
}
@media (max-width: 991px) {
  #secondary_nav ul li:last-child {
    /* For less than 991px */
    display: inline-block;
  }
}
#secondary_nav ul li a {
  color: #74d1c6;
}
#secondary_nav ul li a:hover {
  color: #fff;
}
#secondary_nav ul li a.active {
  color: #fff;
}

#section_1, #section_2, #section_3 {
  padding-bottom: 30px;
}

/*-------- 2.5 Login/register --------*/
#login {
  width: 400px;
  margin: 60px auto;
  color: #fff;
}
@media (max-width: 767px) {
  #login {
    /* For less than 767px */
    width: 100%;
    margin: 30px 0;
  }
}
#login h1 {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 30px 0;
  color: #fff;
}
@media (max-width: 767px) {
  #login h1 {
    /* For less than 767px */
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.divider {
  text-align: center;
  height: 1px;
  margin: 30px 0;
  background-color: #e1e8ed;
}
.divider span {
  position: relative;
  top: -20px;
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  font-style: italic;
}

.link_bright a {
  color: #e74e84;
}
.link_bright a:hover {
  color: #fff02a;
}

#login-2 {
  width: 650px;
  margin: 60px auto;
  color: #fff;
}
#login-2 .box_form {
  padding: 30px 0 0 0;
}
@media (max-width: 767px) {
  #login-2 .box_form {
    /* For less than 767px */
    padding: 20px 20px 0 20px;
  }
}
#login-2 .forgot {
  display: inline-block;
  margin-top: 5px;
}
@media (max-width: 767px) {
  #login-2 {
    /* For less than 767px */
    width: 100%;
    margin: 0;
  }
}
#login-2 h1 {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 30px 0;
  color: #fff;
}

.box_login {
  width: 50%;
  float: left;
  border-right: 1px solid #e1e8ed;
  padding: 15px 25px;
}
@media (max-width: 767px) {
  .box_login {
    /* For less than 767px */
    width: 100%;
    border-right: 0;
    padding: 0;
  }
}
.box_login.last {
  border-right: 0;
}

a.social_bt {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  min-width: 200px;
  margin-bottom: 15px;
  display: block;
  padding: 12px;
  line-height: 1;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
a.social_bt:hover {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
}
a.social_bt.facebook:before, a.social_bt.google:before, a.social_bt.linkedin:before {
  font-family: 'ElegantIcons';
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 1rem;
  color: #fff;
}
a.social_bt.facebook {
  background-color: #3B5998;
}
a.social_bt.facebook:before {
  content: "\e093";
}
a.social_bt.google {
  background-color: #DC4E41;
}
a.social_bt.google:before {
  content: "\e096";
  top: 12px;
}
a.social_bt.linkedin {
  background-color: #0077B5;
}
a.social_bt.linkedin:before {
  content: "\e09d";
}

#register {
  margin: 60px auto;
  color: #fff;
}
#register h1 {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 30px 0;
  color: #fff;
}

.checkbox_2 {
  position: relative;
  display: block;
}
.checkbox_2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 2px solid #e1e8ed;
  background: transparent;
}
.checkbox_2 input[type=checkbox]:focus + label:before {
  background-color: #e53c78;
  background-color: rgba(231, 78, 132, 0.2);
}
.checkbox_2 label:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  opacity: 0;
  background: #e74e84;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.checkbox_2 input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.checkbox_2 input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.checkbox-holder span {
  position: relative;
  display: inline-block;
  margin: 2px 0 0 30px;
}

/*Password strength */
#pass-info {
  width: 100%;
  margin-bottom: 15px;
  color: #555;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 0 3px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
#pass-info.weakpass {
  border: 1px solid #FF9191;
  background: #FFC7C7;
  color: #94546E;
}
#pass-info.stillweakpass {
  border: 1px solid #FBB;
  background: #FDD;
  color: #945870;
}
#pass-info.goodpass {
  border: 1px solid #C4EEC8;
  background: #E4FFE4;
  color: #51926E;
}
#pass-info.strongpass {
  border: 1px solid #6ED66E;
  background: #79F079;
  color: #348F34;
}
#pass-info.vrystrongpass {
  border: 1px solid #379137;
  background: #48B448;
  color: #CDFFCD;
}

#hero_register {
  background: #3f4079 url(../img/hero_bg_1.svg) repeat fixed;
  color: #fff;
}
#hero_register h1 {
  color: #fff;
}
@media (max-width: 767px) {
  #hero_register h1 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}

.box_feat_2 {
  position: relative;
  padding-left: 60px;
}
.box_feat_2 h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff02a;
}
.box_feat_2 i {
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 10px;
  color: #74d1c6;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------- 2.6 404 page --------*/
#error_page {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #3f4079 url(../img/hero_bg_1.svg) repeat fixed;
  color: #fff;
}
#error_page h2 {
  font-size: 140px;
  font-size: 8.75rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}
#error_page h2 i {
  color: #fff02a;
}
@media (max-width: 767px) {
  #error_page h2 {
    /* For less than 767px */
    font-size: 72px;
    font-size: 4.5rem;
  }
}
#error_page p {
  font-size: 21px;
  font-size: 1.3125rem;
}
@media (max-width: 767px) {
  #error_page {
    /* For less than 767px */
    padding: 0;
    height: 450px;
  }
}

.search_bar_error {
  position: relative;
  margin-bottom: 60px;
}
.search_bar_error input[type='text'] {
  border: 0;
  height: 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-left: 15px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.35);
}
.search_bar_error input[type='submit'] {
  position: absolute;
  right: 0;
  color: #fff;
  font-weight: 600;
  top: 0;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #74d1c6;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search_bar_error input[type='submit']:hover {
  background-color: #e74e84;
}

/*-------- 2.7 Contact page --------*/
#contact_info {
  margin: 35px 0 0 0;
}
@media (max-width: 767px) 
{
  #contact_info 
  {
    /* For less than 767px */
    margin: 0 0 35px 0;
    text-align: center;
  }
  .authorities-below-line 
  {
    display: block;
    width: 150px;
    height: 3px;
    background: #0398a9;
    margin: 10px auto;
    margin-bottom: 20px;
  }
  .res-pl-0
  {
    padding-left: 0px;
  }
}
#contact_info h3 {
  font-size: 18px;
  font-size: 1.125rem;
}
#contact_info h4 {
  font-size: 14px;
  font-size: 0.875rem;
}
#contact_info ul li {
  margin-bottom: 15px;
}
#contact_info ul li strong {
  display: block;
  font-weight: 500;
}

#map_contact {
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  #map_contact {
    /* For less than 767px */
    height: 350px;
  }
}

.error_message {
  font-weight: 500;
  color: #f26c4f;
  display: inline-block;
  margin-bottom: 10px;
}

/*-------- 2.8 Booking page/confirm --------*/
.form_title {
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
}
.form_title h3 {
  margin: 0;
  padding: 0;
  font-size: 21px;
  font-size: 1.3125rem;
}
.form_title h3 strong {
  background-color: #e74e84;
  text-align: center;
  width: 40px;
  height: 40px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 42px;
  text-align: center;
  position: absolute;
  left: 0;
  top: -5px;
}
.form_title p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 14px;
}

.cards {
  margin-top: 28px;
}
@media (max-width: 991px) {
  .cards {
    /* For less than 991px */
    display: none;
  }
}

.step {
  padding: 20px 0 0 55px;
  margin: 0 0 0 0;
}
@media (max-width: 991px) {
  .step {
    /* For less than 991px */
    padding-left: 0;
  }
}

.box_general_3.cart label {
  font-weight: 500;
}

.message {
  background-color: #f8f8f8;
  padding: 15px;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.message p {
  margin: 0;
}

.summary ul {
  margin: 0 0 15px 0;
  padding: 0;
}
.summary ul li {
  margin-bottom: 10px;
}
.summary ul li strong {
  font-weight: 500;
}

ul.treatments.checkout {
  margin: 0;
  padding: 0;
}
ul.treatments.checkout li {
  margin-bottom: 8px;
}
ul.treatments.checkout li strong {
  font-weight: 500;
}
ul.treatments.checkout li.total {
  text-transform: uppercase;
  color: #3f4079;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
}

#confirm {
  text-align: center;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg path {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*-------- 2.9 Pricing page --------*/
.pricing_head {
  padding: 100px 0 120px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .pricing_head {
    /* For less than 767px */
    padding: 80px 0;
  }
}
.pricing_head h1 {
  color: #fff;
  font-weight: 500;
  font-size: 38px;
  font-size: 2.375rem;
}
.pricing_head p {
  font-weight: 300;
  font-size: 21px;
  font-size: 1.3125rem;
}

.margin_tabs {
  margin-top: -97px;
}
@media (max-width: 991px) {
  .margin_tabs {
    /* For less than 991px */
    margin-top: -70px;
  }
}
@media (max-width: 767px) {
  .margin_tabs {
    /* For less than 767px */
    margin-top: -50px;
  }
}

.tabs {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 35px;
}
.tabs nav {
  text-align: center;
  overflow: hidden;
}
.tabs nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.tabs nav ul li {
  margin: 0 -4px 0 0;
  display: block;
  display: inline-block;
  background-color: #f5f8fa;
  width: 33%;
  text-align: left;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .tabs nav ul li {
    /* For less than 991px */
    text-align: center;
  }
}
.tabs nav ul li a {
  padding: 25px 35px 25px 90px;
  color: #555;
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
}
@media (max-width: 991px) {
  .tabs nav ul li a {
    /* For less than 991px */
    padding: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.tabs nav ul li a i {
  position: absolute;
  left: 35px;
  top: 25px;
  font-size: 38px;
  font-size: 2.375rem;
}
@media (max-width: 991px) {
  .tabs nav ul li a i {
    /* For less than 991px */
    display: none;
  }
}
.tabs nav ul li a em {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
}
@media (max-width: 767px) {
  .tabs nav ul li a em {
    /* For less than 767px */
    display: none;
  }
}
.tabs nav ul li:first-child {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  -ms-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  border-right: 2px solid #ddd;
}
.tabs nav ul li:last-child {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  -ms-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
  border-left: 2px solid #ddd;
}
.tabs nav ul li.tab-current {
  background-color: #fff;
  z-index: 100;
}
.tabs nav ul li.tab-current:after {
  right: auto;
  left: 100%;
  width: 4000px;
}
.tabs nav ul li.tab-current a {
  color: #222;
}
.tabs nav ul li.tab-current a i {
  color: #3f4079;
}

/* Content */
.content section {
  padding: 60px 0 0 0;
  display: none;
  max-width: 1230px;
  margin: 0 auto;
}
.content section:before, .content section:after {
  content: '';
  display: table;
}
.content section.content-current {
  display: block;
}

.content section:after {
  clear: both;
}

.no-js .content section {
  display: block;
  padding-bottom: 2em;
  border-bottom: 1px solid #e2e2e2;
}

.box_pricing {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #ededed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
}
@media (max-width: 767px) {
  .box_pricing {
    /* For less than 767px */
    padding: 15px;
  }
}
.box_pricing hr {
  margin: 25px -30px;
  border-color: #ededed;
}
@media (max-width: 767px) {
  .box_pricing hr {
    /* For less than 767px */
    margin: 25px -15px;
  }
}
.box_pricing ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0 0 30px 0;
}
.box_pricing a {
  background-color: #3f4079;
  display: block;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.box_pricing a:hover {
  background-color: #e74e84;
  color: #fff;
}
.box_pricing .price {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: #3f4079;
}
.box_pricing .price sup {
  font-size: 16px;
  font-size: 1rem;
}
.box_pricing .price em {
  font-size: 16px;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  position: absolute;
  top: 19px;
  right: -21px;
}
.ribbon span.top_selling {
  background: #00dfaa;
}
.ribbon span.top_selling::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #008a69;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #008a69;
}
.ribbon span.top_selling::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #008a69;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #008a69;
}

/*-------- 2.10 Submit review --------*/
.box_general_3.write_review h1 {
  font-weight: 500;
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.box_general_3.write_review label {
  font-weight: 500;
}

.rating {
  display: inline-block;
  position: relative;
}

.rating-input {
  display: none;
}

.rating:hover .rating-star:hover,
.rating:hover .rating-star:hover ~ .rating-star,
.rating-input:checked ~ .rating-star {
  background-position: 0 0;
}

.rating-star,
.rating:hover .rating-star {
  cursor: pointer;
  float: right;
  display: block;
  margin-right: 3px;
  width: 37px;
  height: 37px;
  background: url(../img/stars.svg) 0 -38px;
}

.fileupload 
{
  position: relative;
  width: 100%;
}

input[type=file] 
{
  background-color: #fff;
  border: 1px solid #e1e8ed;
  padding: 5px;
  height: auto;
  color: #999;
  border-radius: 3px;
  width: 100%;
}

input[type=file]::-webkit-file-upload-button, input[type=file].invalid::-webkit-file-upload-button, input[type=file].valid::-webkit-file-upload-button {
  color: #fff;
  font-size: 13px;
  border: 0;
  border-radius: 3px;
  padding: 8px 10px 8px 38px;
  background: #3f4079 url(../img/camera.svg) 8px center no-repeat;
  outline: none;
}

/*-------- 2.11 Home with map --------*/
.hero_map {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (max-width: 767px) {
  .hero_map {
    /* For less than 767px */
    height: 550px;
  }
}
.hero_map .search_wp {
  width: 100%;
  position: absolute;
  bottom: 15px;
}
@media (max-width: 991px) {
  .hero_map .search_wp {
    /* For less than 991px */
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .hero_map .search_wp {
    /* For less than 767px */
    position: relative;
    bottom: 140px;
  }
}
.hero_map .search_wp #custom-search-input ul li label {
  background-color: #3f4079;
  color: #fff;
}

.cta_subscribe h3 {
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.cta_subscribe p {
  font-size: 16px;
  font-size: 1rem;
}
.cta_subscribe .block_1 {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #3f4079;
  color: #fff;
}
@media (max-width: 767px) {
  .cta_subscribe .block_1 {
    /* For less than 767px */
    padding: 60px 15px;
  }
}
.cta_subscribe .block_2 {
  padding: 60px;
  background-color: #4a4b8e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .cta_subscribe .block_2 {
    /* For less than 767px */
    padding: 60px 15px;
  }
}
.cta_subscribe a.btn_1,
.cta_subscribe .btn_1 {
  border: none;
  color: #fff;
  width: 180px;
  background: #74d1c6;
  outline: none;
  cursor: pointer;
  display: inline-block;
  margin: 15px auto 0;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-size: 0.875rem;
}
.cta_subscribe a.btn_1:hover,
.cta_subscribe .btn_1:hover {
  background-color: #fff;
  color: #e74e84;
}

/*-------- 2.12 About --------*/
a.box_feat_about {
  text-align: center;
  background: #fff;
  padding: 40px 30px 30px 30px;
  display: block;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-box-shadow: 0px 3px 0px 0px #f0f2f4;
  -moz-box-shadow: 0px 3px 0px 0px #f0f2f4;
  box-shadow: 0px 3px 0px 0px #f0f2f4;
  color: #555;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 767px) {
  a.box_feat_about {
    /* For less than 767px */
    padding: 20px 20px 0 20px;
  }
}
a.box_feat_about:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 3px 0px 0px #ebedef;
  -moz-box-shadow: 0px 3px 0px 0px #ebedef;
  box-shadow: 0px 3px 0px 0px #ebedef;
}
a.box_feat_about i 
{
  font-size: 70px;
  font-size: 4.375rem;
  color: #0096A7;
  margin-bottom: 10px;
}
a.box_feat_about h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

.about-review {
  margin-bottom: 30px;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 25px;
  min-height: 230px;
}
@media (max-width: 767px) {
  .about-review {
    /* For less than 767px */
    min-height: inherit;
  }
}
.about-review .user_review {
  padding-left: 60px;
  position: relative;
  padding-top: 10px;
}
.about-review .user_review figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.about-review .user_review figure img {
  width: auto;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-review .user_review h4 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #777;
}
.about-review .user_review span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  font-weight: normal;
}
.about-review .rating {
  color: #222;
  margin-bottom: 10px;
}
.about-review .rating i {
  color: #999;
}
.about-review .rating .voted 
{
 color: #0096A7;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.bg_color_1 {
  background-color: #fff;
}

.bg_color_2 
{
 background: #009899 url(../img/hero_bg_1.svg) repeat fixed;
}

.form-control {
  font-size: 14px;
  font-size: 0.875rem;
  min-height: 40px;
  border-color: #e1e8ed;
}

#booking .loader {
  position: absolute;
  right: 15px;
  top: 13px;
  color: #fff;
}

#contactform .loader {
  position: relative;
  margin-left: 10px;
  color: #204d74;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}

.box_form 
{
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  /* -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3); */
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  /* box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3); */
  margin-bottom: 25px;
  color: #555;
  border: 1px solid #e1e8ed;
}
.box_form label {
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 3px;
}
.box_form .form-group 
{
 margin-bottom: 15px;
}

.box_general {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  color: #555;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.box_general hr {
  margin-left: -30px;
  margin-right: -30px;
}

.box_general_2 {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #e1e8ed;
}
.box_general_2 hr {
  margin-left: -30px;
  margin-right: -30px;
}

.box_general_3 
{
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 0px;
  border: 1px solid #e1e8ed;
}
.box_general_3 hr {
 margin: 15px -30px 15px -30px;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container_check input:checked ~ .checkmark {
  background-color: #3f4079;
  border: 1px solid transparent;
}
.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

/*Show/hide password*/
.my-toggle {
  background: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  font-size: 10px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  margin-right: 5px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
}
.my-toggle:hover, .my-toggle:focus {
  background-color: #eee;
  color: #555;
  outline: transparent;
}

.hideShowPassword-wrapper {
  width: 100% !important;
}

/*-------- 3.2 List --------*/
ul.bullets {
  line-height: 1.8;
  margin-bottom: 0;
}
ul.bullets li {
  position: relative;
  padding-left: 20px;
}
ul.bullets li:before {
  font-style: normal;
  font-weight: normal;
  font-family: FontAwesome;
  font-size: 14px;
  content: "\f046";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

.box_faq {
  position: relative;
  padding-left: 50px;
}
.box_faq h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
.box_faq i {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

/*-------- 3.3 Spacing --------*/
.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 
{
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .add_bottom_45 {
    /* For less than 767px */
    margin-bottom: 30px;
  }
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_60 {
 padding-top: 30px;
 padding-bottom: 30px;
}
@media (max-width: 767px) {
  .margin_60 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.margin_60_35 {
 padding-top: 35px;
 padding-bottom: 35px;
}
@media (max-width: 767px) {
  .margin_60_35 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .margin_120 {
    /* For less than 991px */
    padding-top: 60px;
    padding-bottom: 35px;
  }
}

.margin_120_95 
{
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .margin_120_95 {
    /* For less than 991px */
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .margin_120_95 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

/*-------- 3.4 Scroll top button --------*/
#toTop 
{
 position: fixed;
 right: 15px;
 bottom: 10px;
 padding: 3px 5px 5px 5px;
 margin: 0 auto 0px auto;
 line-height: normal;
 text-decoration: none;
 width: 30px;
 height: 30px;
 display: none;
 z-index: 9999999;
 text-align: center;
 color: #fff;
 background-color: #069aab;
 border-radius: 50%;
 border: none;
 cursor: pointer;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 -webkit-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
}
#toTop:hover
{
  background-color: #057a87;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
#toTop:before {
  font-family: "fontello";
  content: "\e899";
}

/*-------- 3.5 Community badges --------*/
.box_badges {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 25px 5px 25px;
  position: relative;
  margin-bottom: 30px;
}
.box_badges h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}
.box_badges ul li {
  display: inline-block;
  background-color: #74d1c6;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  line-height: normal;
  color: #fff;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
  min-width: 120px;
  margin-bottom: 5px;
}

#badge_level_1,
#badge_level_2,
#badge_level_3,
#badge_level_4,
#badge_level_5,
#badge_level_6 {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  position: relative;
}

.disabled_badge {
  opacity: 0.8;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.disabled_badge:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  opacity: 1;
}
.disabled_badge i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -45px;
  z-index: 9;
  width: 40px;
  height: 40px;
  color: rgba(0, 0, 0, 0.6);
  text-indent: 0;
  font-size: 40px;
  font-size: 2.5rem;
}
.disabled_badge i:before {
  margin: 0;
}
.disabled_badge:hover i {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.badge_list_1 {
  position: relative;
  top: -2px;
  margin-left: 10px;
}

/*-------- 3.6 Pagination --------*/
.page-item.active .page-link 
{
  background-color: #009899;
  border-color: #009899;
}

.page-item.disabled .page-link {
  color: #999;
  border-color: #e1e8ed;
}

.page-link {
  color: #009899;
  border: 1px solid #e1e8ed;
}
.page-link:focus, .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #009899;
  border-color: #009899;
}

/*-------- 3.7 Cookie bar --------*/
#cookie-bar {
  background: rgba(0, 0, 0, 0.8);
  height: auto;
  line-height: 24px;
  color: #eeeeee;
  text-align: center;
  padding: 15px 0;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}
#cookie-bar p {
  margin: 0;
  padding: 0;
}
#cookie-bar a {
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  padding: 2px 10px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  #cookie-bar a {
    /* For less than 767px */
    display: block;
    max-width: 150px;
    margin: auto;
    margin-bottom: 5px;
  }
}
#cookie-bar .cb-enable {
  background: #74d1c6;
}
#cookie-bar .cb-enable:hover {
  background: #fff;
  color: #74d1c6;
}
#cookie-bar .cb-disable {
  background: #990000;
}
#cookie-bar .cb-disable:hover {
  background: #bb0000;
}
#cookie-bar .cb-policy {
  background: #e74e84;
}
#cookie-bar .cb-policy:hover {
  background: #fff;
  color: #e74e84;
}
#cookie-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}
#cookie-bar.fixed.bottom {
  bottom: 0;
  top: auto;
}
@media (max-width: 767px) {
  #cookie-bar {
    /* For less than 767px */
    padding: 5px 0;
  }
}

/*-------- 3.8 Date dropper/time dropper --------*/
.form-control:disabled#booking_date,
.form-control[readonly]#booking_date,
.form-control:disabled#booking_time,
.form-control[readonly]#booking_time {
  background-color: #fff;
  opacity: 1;
}

div.datedropper, .td-wrap {
  font-family: "Poppins", Helvetica, sans-serif !important;
}

div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-v:hover {
  text-decoration: none !important;
}

div.datedropper.primary:before,
div.datedropper.primary .pick-submit,
div.datedropper.primary .pick-lg-b .pick-sl:before,
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-lg-h 
{
  background-color: #009899 !important;
}

div.datedropper.primary .pick-y.pick-jump,
div.datedropper.primary .pick li span,
div.datedropper.primary .pick-lg-b .pick-wke,
div.datedropper.primary .pick-btn {
  color: #fd4741;
}

/*-------- 3.9 Faq --------*/
.box_style_cat {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #e1e8ed;
  margin-bottom: 25px;
}

ul#cat_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul#cat_nav li {
  border-bottom: 1px solid #e1e8ed;
}
ul#cat_nav li i {
  font-size: 16px;
  font-size: 1rem;
  margin: 1px 10px 0 0;
  float: left;
}
ul#cat_nav li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
ul#cat_nav li a {
 position: relative;
 color: #555;
 display: block;
 padding: 10px 10px;
}
ul#cat_nav li a:after 
{
  font-family: "fontello";
  content: "\e89b";
  position: absolute;
  right: 15px;
  top: 28px;
  color: #0096A7;
}
ul#cat_nav li a span {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #999;
}
ul#cat_nav li a:hover, ul#cat_nav li a#active, ul#cat_nav li a.active {
  color: #e74e84;
}
ul#cat_nav li:first-child a:hover, ul#cat_nav li:first-child a#active, ul#cat_nav li:first-child a.active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
ul#cat_nav li:last-child a:hover, ul#cat_nav li:last-child a#active, ul#cat_nav li:last-child a.active {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -ms-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.card {
  border: 0;
  margin-bottom: 5px;
}
.card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #e1e8ed;
  padding: 10px 20px;
}

.card-body {
  padding-bottom: 0;
}

.card-header h5 
{
  font-size: 16px;
  font-size: 1rem;
}
.card-header h5 a 
{
 border: 0;
 display: block;
 color: #999;
 font-size: 15px;
 font-weight: 500;
 color: #0398a9;
}
.card-header h5 a i.indicator 
{
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  float: right;
  color: #0096A7;
}



/* Custom Css Added By Amol date 8/8/2019 */

.submenu-a
{
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-size: 16px;
  font-size: 1rem;
  padding: 10px 20px;
  margin-right: 5px;
  margin-bottom: 23px;
  background-color: #009999;
  color: white;
  border-radius: 5px;
}

.submenu-active
{ 
  color: #009899;
  background-color: white;
  border-color: #009899;
  border-bottom: 2px solid #009899;
}

.second-tab-content
{
  margin-top: 32px;
  /*border-top: 1px solid #e1e8ed;*/
}
.second-tab-nav
{
  border-bottom: 0px solid #e1e8ed !important;
}

.third-tab-nav
{
  border-bottom: 0px solid #e1e8ed !important;
}
.patient-profile-thumbnail
{
  margin-bottom: 3px !important;
  height: 150px;
  width: 150px;
  text-align: center;
  margin: 25px auto !important;
  margin-bottom: 7px !important;
}
.profile-img
{
  border-radius: 50%;
  border: 2px solid #009899;
  height: 120px;
  width: 120px;
}

.new-login-form
{
  width: 650px;
  margin: 60px auto;
  color: #fff;
  margin-top: 0px;
}
.login-bg
{
 background-color: #009899 !important;
}
.border-0
{
  border: 0px solid #e1e8ed;
}
.login-tab
{
  text-align: center;
  width: 22%;
  margin: auto;
  border-bottom: 0px solid !important;
}
.login-tab-link
{
  background-color: #4ABCD7;
  border-color: #e74e84 !important;
  color: white;
  border-radius: 0px;
}
.patient-nav-link
{
  background-color: #4ABCD7;
}
.doctor-nav-link
{
  margin-right: 0px !important;
  border-radius: 5px;
  border-color: #4abcd7 !important;
}

.common-color-white
{
  color: white !important;
}

.register-patient
{
  margin: 60px auto;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}
.register-here-text
{
  color: #e74e84;
  text-align: center;
  font-size: 30px;
  /* margin: 10px; */
  margin-top: 1px;
  margin-bottom: 25px;
  font-weight: 500;
}
.mb-5
{
  margin-bottom: 5px !important;
}
.mb-40
{
  margin-bottom: 50px;
  margin-top: 15px;
}
.common-float-right
{
  float: right;
}
.padd-lr-0
{
  padding-left: 0px;
  padding-right: 0px;
}
.mt-20
{
  margin-top: 20px;
}
.am-span
{
  padding-top: 5px;
  display: inline-block;
  padding-bottom: 5px;
}

.my-booking .booking_details 
{
  list-style: none;
  margin: 10px 0 10px;
  padding: 0;
  width: 100%;
}
.my-booking .booking_details li 
{
 margin-bottom: 5px;
 display: flex;
 padding: 4px 0px;
}

.my-booking .booking_details li strong 
{
 width: 174px;
 display: inline-block;
 color: #009899;
 font-size: 14px;
}
.app-doctor-name
{
  font-size: 18px;
  padding-bottom: 5px;
  font-weight: 500;
  text-align: left;
  color: #3f4079;
  margin-bottom: 5px;
}
.app-doctor-image
{
  border-radius: 50%;
  height: 110px;
  width: 110px;
  margin-right: 25px;
  margin-top: 34%;
}
.my-booking
{
  border: 1px solid #e1e8ed;
}
.app-row
{
  margin-top: 15px;
  margin-bottom: 15px;
}

.submenu-a:hover
{
  color: #333;
}
.submenu-a:focus
{
  color: #333;
}
/*.front-logo
{
    width: 150px;
    height: 90px;
    }*/
    .right-header
    {
      padding-top: 12px;
      padding-bottom: 5px;
    }
    .edit-profile-btn
    {
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .loginBtn 
    {
      border-radius: 9999px;
      padding: 5px 30px;
      font-size: 15px !important;
      margin-right: 10px;
      color: #fff;
      background: linear-gradient(135deg, #00AFA3 0%, #0d9488 50%, #0f766e 100%);
      background-size: 200% 200%;
      animation: gradientShift 3s ease infinite;
      border: none;
      font-weight: 500;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px -3px rgba(3, 199, 184, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .loginBtn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }

    .loginBtn:hover::before {
      left: 100%;
    }

    .loginBtn:hover
    {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px -5px rgba(3, 199, 184, 0.5), 0 8px 10px -6px rgba(3, 199, 184, 0.4) !important;
   }

   .registerBtn 
   {
    border-radius: 9999px;
    padding: 0px 22px;
    font-size: 15px !important;
    margin-right: 2px;
    color: #009899;
    background-color: white;
    border: 2px solid transparent;
    font-weight: 500;
    line-height: 21px;
    position: relative;
    background-clip: padding-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .registerBtn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #00AFA3, #0d9488, #0f766e);
  }

  .registerBtn:hover 
  {
    background: linear-gradient(135deg, rgba(3, 199, 184, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%) !important;
    transform: translateY(-2px);
    /* border: 1px solid #009899 !important; */
    color: #fff !important;
    background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
  }
  .calender-icon
  {
    font-size: 18px;
    font-weight: 600;
    padding-right: 5px;
  }

  .pending
  {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    font-size: 12px;
    font-size: 15px;
    color: #fff;
    font-style: normal;
    padding: 5px 20px 5px;
    margin-left: 3px;
    position: relative;
    top: -3px;
    line-height: 19px;
    background-color: #fd7e14;
    margin-top: 16px;
  }

  .accept
  {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    font-size: 12px;
    font-size: 15px;
    color: #fff;
    font-style: normal;
    padding: 5px 20px 5px;
    margin-left: 3px;
    position: relative;
    top: -3px;
    line-height: 19px;
    background-color: green;
    margin-top: 16px;
  }

  .reject
  {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    font-size: 12px;
    font-size: 15px;
    color: #fff;
    font-style: normal;
    padding: 5px 20px 5px;
    margin-left: 3px;
    position: relative;
    top: -3px;
    line-height: 19px;
    background-color: #dc3545;
    margin-top: 16px;
  }
  .af-timeslot-text
  {
    font-size: 16px !important;
    font-weight: 500;
    text-align: left;
    color: #009899;
  }
  .details-card-header
  {
    padding: 8px 8px !important;
  }

  .new-card-header
  {
    padding: 5px !important;
  }
  .page-heading
  {
    font-size: 18px;
    color: white;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 10px;
    font-weight: 500;
  }
  .header-profile-image
  {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }
  .specialization-icon
  {
    height: 40px;
    width: 45px;
    padding-right: 5px;
  }
  .morning-list-margin
  {
    margin-bottom: 5px;
  }
  .profile-dr-name
  {
    font-size: 16px;
    font-weight: 500;
    color: #009899;
  }
  .thanks-msg
  {
    font-size: 32px;
    font-weight: 500;
    color: #009899;
  }
  .online-text
  {
    color: #009899;
  }
  .home-search-btn
  {
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px !important;
    margin-right: 10px;
    color: #fff;
    background-color: #009899;
    border-color: #009899;
    font-weight: 500;
    border: 2px solid #4abcd7;
  }

  .home-search-btn:hover
  {
   background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
 }
 .custom-ddl
 {
  padding: 8px 0px;
  font-size: 17px;
  height: 51px;
  min-height: 51px;
  padding-left: 10px;
}
.doctor-search-btn
{
  background-color: #4abcd7;
  border-color: #4abcd7;
  padding: 5px 30px;
  margin-top: 0px;
}

#search-doctor-back 
{
  background: #3f4079 url(../img/page-images/page-bg-01.jpg);
  padding: 1px 0 0px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#appointment-back 
{
  background: #3f4079 url(../img/page-images/page-bg-02.jpg);
  padding: 1px 0 0px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#doctor-list-back 
{
  background: #3f4079 url(../img/page-images/page-bg-03.jpg);
  padding: 1px 0 0px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.doctor-desc
{
  color: #333;
}

.gradient-back
{
  background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
}



@media (max-width: 768px) 
{
  .profile-dr-name 
  {
    margin-top: -42px !important;
  }

  .evening-timeslot-no 
  {
    width: 80% !important;
    margin: auto;
  }

  .file-upload 
  {
    top: -53px !important;
  }

  .change-lang 
  {
    display: block !important;
    border: 1px solid rgb(3, 152, 169);
    padding: 6px 2px !important;
    border-radius: 25px;
    background-color: #0096A7;
    margin-top: 4px;
    margin-bottom: 2px;
    width: 80px;
    margin: 0 auto;
  }

  .no-time-slots 
  {
    color: #0096A7;
    margin-bottom: 0px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 600;
    /*border: 1px solid #009899;*/
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    margin-left: 15px;
  }



  footer {
    background-color: #fff;
    color: #555;
    text-align: center;
  }

  .today-app-ul 
  {
    border-top: 0px solid #ededed !important;
    margin: -10px -15px -6px -5px !important;
    padding: 8px 8px !important;
  }

  .right-french 
  {
    margin-left: 0px!important;
  }

  .chk-label {
    color: white;
    font-size: 12px;
  }
  .custom-search-input 
  {
    width: auto;
    margin-bottom: 30px;
  }
  .registerBtn 
  {
    border-radius: 20px;
    padding: 0px 11px;
    font-size: 13px !important;
    background-color: transparent;
    border: 1px solid #009899;
    color: #009899;
    line-height: 10px;
    margin-left: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  a.box_cat_home 
  {
    background-color: #fff;
    display: block;
    padding: 10px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    color: #999;
  }
  .login-tab 
  {
    text-align: center;
    width: 43%;
    margin: auto;
    border-bottom: 0px solid !important;
    display: -webkit-inline-box;
    margin-left: 28px;
  }

  .new-login-form 
  {
    width: 100%;
    margin: 60px auto;
    color: #fff;
    margin-top: 0px;
  }
  .res-text-center
  {
    text-align: center;
  }
  .box_form .form-group 
  {
    margin-bottom: 15px;
  }
  .register-here-text 
  {
    color: #e74e84;
    text-align: center;
    font-size: 20px;
    /* margin: 10px; */
    margin-top: 1px;
    margin-bottom: 25px;
    font-weight: 500;
  }

  #results h4 
  {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 15px !important;
    margin-bottom: 15px;
  }

  .search_bar_list 
  {
    position: relative;
    margin-bottom: 20px;
  }

  .page-heading 
  {
    font-size: 18px;
    color: white;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 3px;
    font-weight: 600;
  }

  .profile-img 
  {
    border-radius: 50%;
    border: 2px solid #009899;
    height: auto;
    width: 100%;
  }

  .tabs_styled_2 .tab-pane 
  {
    background-color: #fff;
    padding: 30px 20px 20px 20px;
    border: 1px solid #e1e8ed;
    border-top: none;
  }

  .my-booking .booking_details li 
  {
    margin-bottom: 5px;
    display: inline-block;
    padding: 4px 0px;
  }

  .app-doctor-image 
  {
    border-radius: 50%;
    height: auto;
    width: auto;
    margin-right: 25px;
    margin-top: 2%; 
  }

  .my-booking .booking_details li strong 
  {
    width: 160px;
    display: block;
    color: #de5586;
  }

  .second-tab-content 
  {
    margin-top: 0px;
    border-top: 1px solid #e1e8ed;
  }
  .thanks-msg 
  {
    font-size: 24px;
    font-weight: 500;
    color: #009899;
  }
}

@media (max-width: 1000px) 
{
  .second-tab-content 
  {
    margin-top: 0px;
    border-top: 1px solid #e1e8ed;
  }
}


@media only screen and (max-width: 1000px) and (min-width: 900px)  
{
 .second-tab-nav 
 {
  height: 13vh;
}

.third-tab-nav 
{
  height: 13vh;
}
.morning-tab-content 
{
  margin-top: 0px !important;
}
}

@media only screen and (max-width: 900px) and (min-width: 768px)  
{
 .second-tab-nav 
 {
  height: 13vh;
}
.third-tab-nav 
{
  height: 13vh;
}
.morning-tab-content 
{
  margin-top: 0px !important;
}
}

@media only screen and (max-width: 768px) and (min-width: 500px)  
{
 .second-tab-nav 
 {
  height: 13vh;
}
.third-tab-nav 
{
  height: 13vh;
}
.morning-tab-content 
{
  margin-top: 0px !important;
}
}

@media only screen and (max-width: 500px) and (min-width: 300px)  
{
 .second-tab-nav 
 {
  height: 26vh;
}
.third-tab-nav 
{
  height: 18vh;
}

.add-to-btn
{
  margin-bottom: 15px;
}

.morning-tab-content 
{
  margin-top: 0px !important;
}
}


@media only screen and (max-width: 1200px) and (min-width: 1000px)  
{
 .third-tab-nav 
 {
  height: 13vh;
}
.morning-tab-content 
{
  margin-top: 0px !important;
}
}

@media only screen and (max-width: 992px) and (min-width: 768px)  
{
  .registerBtn 
  {
    border-radius: 20px;
    padding: 0px 11px;
    font-size: 13px !important;
    background-color: transparent;
    border: 1px solid #009899;
    color: #009899;
    line-height: 10px;
    margin-left: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .date-day-div-ul 
  {
    display: block !important;
    list-style-type: none;
  }
}


.find-view-details-btn
{
 background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
 border-color: #0a9bad;
 padding: 5px 20px;
 border-radius: 30px;
 width: 135px;
 margin: 0 auto;
 margin-bottom: 15px;
 color: white !important;
 font-size: 15px;
}


.find-view-details-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
  border-color: #41b7d2;
}

.find-view-details-btn:focus
{
  outline: none;
  box-shadow: none;
}

.dr-label
{
  margin-top: 27px;
}
/* Custom Css End */

/* Multistep from css Start */
.project-tab 
{
  padding: 8% 10%;
  margin-top: 0%;
  float: none !important;
  margin-bottom: -5%;
  padding-top: 3%;
}
.project-tab #tabs{
  background: #007b5e;
  color: #eee;
}
.project-tab #tabs h6.section-title{
  color: #eee;
}
.project-tab #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active 
{
  color: #0498aa;
  background-color: transparent;
  border-color: transparent transparent #f3f3f3;
  border-bottom: 3px solid !important;
  font-size: 16px;
  font-weight: bold;
}
.project-tab .nav-link 
{
 border: 0px solid transparent;
 border-top-left-radius: .25rem;
 border-top-right-radius: .25rem;
 color: #dc3545;
 font-size: 16px;
 font-weight: 600;
}
.project-tab .nav-link:hover {
  border: none;
}
.project-tab thead{
  background: #f3f3f3;
  color: #333;
}
.project-tab a{
  text-decoration: none;
  color: #333;
  font-weight: 600;
}



.stepwizard-step p {
  margin-top: 0px;
  color:#666;
}
.stepwizard-row {
  display: table-row;
}
.stepwizard 
{
  display: table;
  width: 100%;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}
.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
    filter: alpha(opacity=100) !important;*/
  }
  .stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
    opacity:1 !important;
    color:#bbb;
  }
  .stepwizard-row:before 
  {
   top: 17px;
   bottom: 0;
   position: absolute;
   content: " ";
   width: 100%;
   height: 2px;
   background-color: #0599ab;
   z-index: 0;
   margin: 0 auto;
 }
 .stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.btn-circle 
{
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 6px 0;
  font-size: 17px;
  line-height: 1.428571429;
  border-radius: 25px;
  border: 1px solid #0699ab;
}

.main-nav-new
{
  width: 50%;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}
.reg-main-container
{
  padding: 12px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  background-color: #fbfbfb;
}

.first-step-btn
{
  background-color: #0398a9;
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 6px 0;
  font-size: 17px;
  line-height: 1.428571429;
  /*border-radius: 50%;*/
  border: 1px solid #0598aa;
  color: white !important;
}

.first-step-btn:hover
{
  background-color: #079aac;
  border-color: #079aac;
}
.custom-next-btn
{
  float: right;
  border-radius: 30px;
  padding: 5px 30px;
  font-size: 15px !important;
  margin-right: 10px;
  color: #fff;
  background-color: #009899;
  border-color: #009899;
  font-weight: 500;
  /* border-color: #4abcd7; */
  border: 2px solid #4abcd7;
  background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
}

.custom-next-btn:focus
{
  outline: none;
  box-shadow: none;
}

.custom-next-btn:hover
{
  float: right;
  border-radius: 30px;
  padding: 5px 30px;
  font-size: 15px !important;
  margin-right: 10px;
  color: #fff;
  background-color: #009899;
  border-color: #009899;
  font-weight: 500;
  /* border-color: #4abcd7; */
  border: 2px solid #4abcd7;
  background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
}

.custom-next-btn-new:focus
{
  outline: none;
  box-shadow: none;
}

.custom-next-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
  border-color: #079aac;
}

.custom-next-btn-new:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
  border-color: #079aac;
}

.choose-maps-btn
{
  border-radius: 4px;
  padding: 4px 15px;
  font-size: 15px !important;
  margin-right: 10px;
  color: #fff;
  background-color: #009899;
  border-color: #009899;
  font-weight: 500;
  /* border-color: #4abcd7; */
  border: 1px solid #0398a9;
  cursor: pointer;
}

.modal-close-button:focus
{
 outline: none;
}

/* Multistep from css End */



/* Multi Select DropdownList Css Start */

.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url("chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
/*@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
  }*/

  /* @end */

  /* Multi Select DropdownList Css End */



  @media (max-width: 768px) 
  {
    .chosen-container 
    {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      font-size: 13px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    .display-contents
    {
      display: contents;
    }

    .date-day-div-ul 
    {
      display: block !important;
      list-style-type: none;
    }

    .morning-tab-content 
    {
      margin-top: 0px !important;
    }

    .book-app-now 
    {
      text-align: left;
      padding-right: 0px !important;
      margin-right: -30px !important;
    }



    .chosen-container * {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }

    .chosen-container .chosen-drop {
      position: absolute;
      top: 100%;
      z-index: 1010;
      width: 100%;
      border: 1px solid #aaa;
      border-top: 0;
      background: #fff;
      -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
      box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
      clip: rect(0, 0, 0, 0);
      -webkit-clip-path: inset(100% 100%);
      clip-path: inset(100% 100%);
    }

    .chosen-container.chosen-with-drop .chosen-drop {
      clip: auto;
      -webkit-clip-path: none;
      clip-path: none;
    }

    .chosen-container a {
      cursor: pointer;
    }

    .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
      margin-right: 4px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      font-weight: normal;
      color: #999999;
    }

    .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
      content: ":";
      padding-left: 2px;
      vertical-align: top;
    }

    /* @end */
    /* @group Single Chosen */
    .chosen-container-single .chosen-single {
      position: relative;
      display: block;
      overflow: hidden;
      padding: 0 0 0 8px;
      height: 25px;
      border: 1px solid #aaa;
      border-radius: 5px;
      background-color: #fff;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
      background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
      background-clip: padding-box;
      -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
      color: #444;
      text-decoration: none;
      white-space: nowrap;
      line-height: 24px;
    }

    .chosen-container-single .chosen-default {
      color: #999;
    }

    .chosen-container-single .chosen-single span {
      display: block;
      overflow: hidden;
      margin-right: 26px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .chosen-container-single .chosen-single-with-deselect span {
      margin-right: 38px;
    }

    .chosen-container-single .chosen-single abbr {
      position: absolute;
      top: 6px;
      right: 26px;
      display: block;
      width: 12px;
      height: 12px;
      background: url("chosen-sprite.png") -42px 1px no-repeat;
      font-size: 1px;
    }

    .chosen-container-single .chosen-single abbr:hover {
      background-position: -42px -10px;
    }

    .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
      background-position: -42px -10px;
    }

    .chosen-container-single .chosen-single div {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      width: 18px;
      height: 100%;
    }

    .chosen-container-single .chosen-single div b {
      display: block;
      width: 100%;
      height: 100%;
      background: url("chosen-sprite.png") no-repeat 0px 2px;
    }

    .chosen-container-single .chosen-search {
      position: relative;
      z-index: 1010;
      margin: 0;
      padding: 3px 4px;
      white-space: nowrap;
    }

    .chosen-container-single .chosen-search input[type="text"] {
      margin: 1px 0;
      padding: 4px 20px 4px 5px;
      width: 100%;
      height: auto;
      outline: 0;
      border: 1px solid #aaa;
      background: url("chosen-sprite.png") no-repeat 100% -20px;
      font-size: 1em;
      font-family: sans-serif;
      line-height: normal;
      border-radius: 0;
    }

    .chosen-container-single .chosen-drop {
      margin-top: -1px;
      border-radius: 0 0 4px 4px;
      background-clip: padding-box;
    }

    .chosen-container-single.chosen-container-single-nosearch .chosen-search {
      position: absolute;
      clip: rect(0, 0, 0, 0);
      -webkit-clip-path: inset(100% 100%);
      clip-path: inset(100% 100%);
    }

    /* @end */
    /* @group Results */
    .chosen-container .chosen-results {
      color: #444;
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
      margin: 0 4px 4px 0;
      padding: 0 0 0 4px;
      max-height: 240px;
      -webkit-overflow-scrolling: touch;
    }

    .chosen-container .chosen-results li {
      display: none;
      margin: 0;
      padding: 5px 6px;
      list-style: none;
      line-height: 15px;
      word-wrap: break-word;
      -webkit-touch-callout: none;
    }

    .chosen-container .chosen-results li.active-result {
      display: list-item;
      cursor: pointer;
    }

    .chosen-container .chosen-results li.disabled-result {
      display: list-item;
      color: #ccc;
      cursor: default;
    }

    .chosen-container .chosen-results li.highlighted {
      background-color: #3875d7;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
      background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
      color: #fff;
    }

    .chosen-container .chosen-results li.no-results {
      color: #777;
      display: list-item;
      background: #f4f4f4;
    }

    .chosen-container .chosen-results li.group-result {
      display: list-item;
      font-weight: bold;
      cursor: default;
    }

    .chosen-container .chosen-results li.group-option {
      padding-left: 15px;
    }

    .chosen-container .chosen-results li em {
      font-style: normal;
      text-decoration: underline;
    }

    /* @end */
    /* @group Multi Chosen */
    .chosen-container-multi .chosen-choices {
      position: relative;
      overflow: hidden;
      margin: 0;
      padding: 0 5px;
      width: 100%;
      height: auto;
      border: 1px solid #aaa;
      background-color: #fff;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
      background-image: linear-gradient(#eee 1%, #fff 15%);
      cursor: text;
    }

    .chosen-container-multi .chosen-choices li {
      float: left;
      list-style: none;
    }

    .chosen-container-multi .chosen-choices li.search-field {
      margin: 0;
      padding: 0;
      white-space: nowrap;
    }

    .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
      margin: 1px 0;
      padding: 0;
      height: 25px;
      outline: 0;
      border: 0 !important;
      background: transparent !important;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #999;
      font-size: 100%;
      font-family: sans-serif;
      line-height: normal;
      border-radius: 0;
      width: 25px;
    }

    .chosen-container-multi .chosen-choices li.search-choice {
      position: relative;
      margin: 3px 5px 3px 0;
      padding: 3px 20px 3px 5px;
      border: 1px solid #aaa;
      max-width: 100%;
      border-radius: 3px;
      background-color: #eeeeee;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
      background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
      background-size: 100% 19px;
      background-repeat: repeat-x;
      background-clip: padding-box;
      -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
      box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
      color: #333;
      line-height: 13px;
      cursor: default;
    }

    .chosen-container-multi .chosen-choices li.search-choice span {
      word-wrap: break-word;
    }

    .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
      position: absolute;
      top: 4px;
      right: 3px;
      display: block;
      width: 12px;
      height: 12px;
      background: url("chosen-sprite.png") -42px 1px no-repeat;
      font-size: 1px;
    }

    .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
      background-position: -42px -10px;
    }

    .chosen-container-multi .chosen-choices li.search-choice-disabled {
      padding-right: 5px;
      border: 1px solid #ccc;
      background-color: #e4e4e4;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
      background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
      color: #666;
    }

    .chosen-container-multi .chosen-choices li.search-choice-focus {
      background: #d4d4d4;
    }

    .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
      background-position: -42px -10px;
    }

    .chosen-container-multi .chosen-results {
      margin: 0;
      padding: 0;
    }

    .chosen-container-multi .chosen-drop .result-selected {
      display: list-item;
      color: #ccc;
      cursor: default;
    }

    /* @end */
    /* @group Active  */
    .chosen-container-active .chosen-single {
      border: 1px solid #5897fb;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    .chosen-container-active.chosen-with-drop .chosen-single {
      border: 1px solid #aaa;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
      background-image: linear-gradient(#eee 20%, #fff 80%);
      -webkit-box-shadow: 0 1px 0 #fff inset;
      box-shadow: 0 1px 0 #fff inset;
    }

    .chosen-container-active.chosen-with-drop .chosen-single div {
      border-left: none;
      background: transparent;
    }

    .chosen-container-active.chosen-with-drop .chosen-single div b {
      background-position: -18px 2px;
    }

    .chosen-container-active .chosen-choices {
      border: 1px solid #5897fb;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    .chosen-container-active .chosen-choices li.search-field input[type="text"] {
      color: #222 !important;
    }

    /* @end */
    /* @group Disabled Support */
    .chosen-disabled {
      opacity: 0.5 !important;
      cursor: default;
    }

    .chosen-disabled .chosen-single {
      cursor: default;
    }

    .chosen-disabled .chosen-choices .search-choice .search-choice-close {
      cursor: default;
    }

    /* @end */
    /* @group Right to Left */
    .chosen-rtl {
      text-align: right;
    }

    .chosen-rtl .chosen-single {
      overflow: visible;
      padding: 0 8px 0 0;
    }

    .chosen-rtl .chosen-single span {
      margin-right: 0;
      margin-left: 26px;
      direction: rtl;
    }

    .chosen-rtl .chosen-single-with-deselect span {
      margin-left: 38px;
    }

    .chosen-rtl .chosen-single div {
      right: auto;
      left: 3px;
    }

    .chosen-rtl .chosen-single abbr {
      right: auto;
      left: 26px;
    }

    .chosen-rtl .chosen-choices li {
      float: right;
    }

    .chosen-rtl .chosen-choices li.search-field input[type="text"] {
      direction: rtl;
    }

    .chosen-rtl .chosen-choices li.search-choice {
      margin: 3px 5px 3px 0;
      padding: 3px 5px 3px 19px;
    }

    .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
      right: auto;
      left: 4px;
    }

    .chosen-rtl.chosen-container-single .chosen-results {
      margin: 0 0 4px 4px;
      padding: 0 4px 0 0;
    }

    .chosen-rtl .chosen-results li.group-option {
      padding-right: 15px;
      padding-left: 0;
    }

    .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
      border-right: none;
    }

    .chosen-rtl .chosen-search input[type="text"] {
      padding: 4px 5px 4px 20px;
      background: url("chosen-sprite.png") no-repeat -30px -20px;
      direction: rtl;
    }

    .chosen-rtl.chosen-container-single .chosen-single div b {
      background-position: 6px 2px;
    }

    .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
      background-position: -12px 2px;
    }
  }

  .custom-file-upload
  {
   width: 48% !important;
 }
 .btn-login-doctor-new
 {
  border-radius: 9999px !important;
  padding: 7px 30px !important;
  font-size: 15px !important;
  margin-right: 10px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #00AFA3 0%, #0d9488 50%, #0f766e 100%) !important;
  background-size: 200% 200% !important;
  animation: gradientShift 3s ease infinite !important;
  border: none !important;
  font-weight: 500 !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px -3px rgba(3, 199, 184, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-login-doctor-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-login-doctor-new:hover::before {
  left: 100%;
}

.btn-login-doctor-new:hover
{
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px -5px rgba(3, 199, 184, 0.5), 0 8px 10px -6px rgba(3, 199, 184, 0.4) !important;
}

.btn-login-doctor-new:focus
{
 outline: none;
}

.patient-reg-btn
{
  border-radius: 9999px !important;
  padding: 8px 60px !important;
  font-size: 15px !important;
  margin-right: 10px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #00AFA3 0%, #0d9488 50%, #0f766e 100%) !important;
  background-size: 200% 200% !important;
  animation: gradientShift 3s ease infinite !important;
  font-weight: 500 !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px -3px rgba(3, 199, 184, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.patient-reg-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.patient-reg-btn:hover::before {
  left: 100%;
}

.patient-reg-btn:hover
{
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px -5px rgba(3, 199, 184, 0.5), 0 8px 10px -6px rgba(3, 199, 184, 0.4) !important;
}

/* Login Page Css Start */

.wellnessFont
{
  font-size: 60px !important;
  color: #333;
}
.totalWellness{
 margin: 30px 0px;
}
.wellnessCol{
 margin-top: 30px;
}
.wellnessParagraph{
 color: rgba(102, 102, 102, .8);
}
.learn-More{
 padding: .8em 2.4em;
 min-width: 180px;
 background-color: transparent;
 border: 1px solid #009899 !important;
 color: #009899;
 border-radius: 1.6em;
}
.tb-hero-btn{
 margin-top: 40px;
}
.tb-box-shadow2 
{
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 68px 0 rgba(2, 2, 2, .07);
  box-shadow: 0 5px 68px 0 rgba(2, 2, 2, .07);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.tb-form-heading.tb-style1 {
 padding: 40px;
 padding-bottom: 30px;
 background-color: #fff;
}
.tb-form-heading.tb-style1 
{
  padding: 40px;
  padding-bottom: 10px;
  background-color: #fbfbfb;
}
.text-center {
 text-align: center !important;
}
.tb-box-shadow2 .fnt-wight {
 font-weight: 600;
 font-size: 30px;
}
.tb-mb4 {
 margin-bottom: 4px;
}
.tb-mt-6 
{
  margin-top: 10px;
}
.tb-box-shadow2 .fnt-wight {
 font-weight: 600;
 font-size: 30px;
}
.tb-radious-4 {
 border-radius: 4px;
 overflow: hidden;
}
.titleColor::before {
 content: "Your";
 color: #009899;
}
.titleColor::after {
 content: "Doc";
 color: #7f7f7f;
}
hr {
 margin: 0;
 border-color: #eaeaea;
}
.tb-mb-6 {
 margin-bottom: -6px;
 margin-top: 10px;
}
.tb-hero-form.tb-style2 .tb-form-body 
{
  padding: 40px;
  padding-top: 15px;
  background-color: #fbfbfb;
}
div.wpcf7 {
 margin: 0;
 padding: 0;
}
div.wpcf7 .screen-reader-response {
 position: absolute;
 overflow: hidden;
 clip: rect(1px, 1px, 1px, 1px);
 height: 1px;
 width: 1px;
 margin: 0;
 padding: 0;
 border: 0;
}
button, input {
 overflow: visible;
}
button, input, optgroup, select, textarea {
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 line-height: inherit;
}
.tb-appointment-form form>p, .tb-contact-form-wrapper p {
 margin: 0;
}
.form-group {
 position: relative;
 margin-bottom: 1.5rem;
}
.form-control {
 display: block;
 width: 100%;
 padding: .375rem .75rem;
 font-size: 1rem;
 line-height: 1.5;
 color: #495057;
 background-color: #fff;
 background-clip: padding-box;
 border: 1px solid #ced4da;
 border-radius: .25rem;
 transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control-placeholder {
 position: absolute;
 top: 0;
 padding: 9px 0 0 13px;
 transition: all 200ms;
 opacity: 1;
}
label {
 display: inline-block;
 margin-bottom: .5rem;
}
.wpcf7-form-control-wrap {
 position: relative;
}
.wpcf7-form-control-wrap {
 position: relative;
}
.tb-btn.tb-color8 {
 background-color: #009899 !important;
 border-color: #009899;
 border: none;
 color: #fff;
}
.mt-40 {
 margin-top: 40px !important;
}
.bordrLine::before, .bordrLine::after {
 display: inline-block;
 content: "";
 border-top: 1px solid black;
 width: 40px;
 margin: 0 1rem;
 transform: translateY(-4px);
}
.bordrLine::after {
 display: inline-block;
 content: "";
 border-top: 1px solid black;
 width: 40px;
 margin: 0 1rem;
 transform: translateY(-4px);
}
.mt-15 
{
 margin-top: 35px;
 display: inherit;
 text-align: center;
}

.tb-btn.tb-style4, .tb-btn.tb-style6 {
 padding: .8em 2.4em;
 min-width: 180px;
}
.tb-btn.tb-style3, .tb-btn.tb-style4, .tb-btn.tb-style5, .tb-btn.tb-style6, .tb-btn.tb-style7, .tb-btn.tb-style8 {
 font-size: 15px;
 border-radius: 4px;
}
.Register_color {
 color: #fff !important;
}
.form-control:focus + .form-control-placeholder,
.form-control:valid + .form-control-placeholder {
 font-size: 75%;
 transform: translate3d(0, -100%, 0);
 opacity: 3;
}
.form-group {
 position: relative;
 margin-bottom: 1.5rem;
}
.form-control-placeholder {
 position: absolute;
 top: 0;
 padding: 7px 0 0 13px;
 transition: all 200ms;
 opacity: 0.5;
}
.form-control:focus + .form-control-placeholder,
.form-control:valid + .form-control-placeholder {
 font-size: 75%;
 transform: translate3d(0, -100%, 0);
 opacity: 1;
}
.tb-hero-text{
 position: relative;
 top: 130px;
}
.TextInput {
 width: 100%;
 max-width: 367px;
 height: 48px;
 display: flex;
 align-items: left;
 flex-direction: column;
}
.TextInput-input {
 width: 100%;
 background: none;
 border: none;
 outline: none;
 border-bottom: 1px solid #A3C1D1;
 color: #FFF;
 font-family: Geologica, Work Sans;
 font-size: 16px;
 line-height: 24px;
 margin-top: 18px;
}
.TextInput-label 
{
 transition: all 0.1s ease-in-out;
 /* font-family: Work Sans; */
 font-size: 14px !important;
 line-height: 24px !important;
 letter-spacing: 1px;
 text-transform: none;
 color: #AAAAAA !important;
 position: absolute;
 margin-top: 18px;
 padding-left: 15px;
 font-weight: 400 !important;
 opacity: 0.5;
}
.TextInput-input:focus {
 border-bottom: 1px solid #AAAAAA;
 color: #AAAAAA;
}
.TextInput-input:focus + .TextInput-label {
 transition: all 0.1s ease-in-out;
 margin-top: -2px;
 color: #AAAAAA;
}
.TextInput-input:valid + .TextInput-label {
 margin-top: -2px;
}
.click-link
{
  color: #007bff;
  cursor: pointer;
}

.login-btn-div
{
  width: 200px;
  margin: 0 auto;
}

.discover-title
{
  padding-top: 15px;
  padding-bottom: 3px;
}
.discover-title-head
{
  color: #0397a9;
  font-size: 18px;
  font-weight: 500;
}
.day-after-date
{
  font-size: 11px;
  padding-top: 6px;
  display: block;
  padding-bottom: 2px;
}
.book-day
{
  min-width: 120px !important;
  margin: 3px 8px !important;
}
.search-location-txt-height
{
  height: 50px !important;
}
.search-dr-padding
{
  padding-bottom: 0px !important;
}
.show-results-mt
{
  margin-top: 9px;
}
.new-dr-register-btn
{
  width: 200px;
  margin: 20px auto;
  margin-top: 35px;
}
.patient-text
{
  color: #0398a9;
  font-size: 15px;
  font-weight: 700;
}
.civility-field
{
  margin-top: 27px;
}
.custom-civility-ddl
{
  padding: 5px 4px;
}
.dentist-view-details-btn
{
  position: relative;
  display: block;
}
.view-profile-circle
{
 border: 3px solid #0598aa;
 height: 100px;
 width: 100px;
 margin: 0 auto;
 padding: 20px;
 border-radius: 50%;
 background-color: #b8dde687;
}

.view-profile-circle:hover
{
  background-color: white;
}
.dentist-text
{
 text-align: center;
 padding: 12px 0px;
 color: #0397a9;
 font-size: 20px;
 font-weight: 500;
 margin-bottom: 0px;
}
.dr-specialist-content
{
  text-align: center;
  color: #171414;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}

#emergency-page-back {
  background: #3f4079 url(../../front/login/assets/img/hero-bg.jpg);
  padding: 1px 0 0px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.emergency-submit-btn
{
  margin-top: -10px;
}
.register-text
{
  color: white !important;
  font-size: 15px !important;
}
.home-search-button-new
{
  border-radius: 30px;
  padding: 7px 15px;
  font-size: 15px !important;
  margin-right: 10px;
  color: #fff;
  background-color: #0096A7;
  border-color: #0096a7;
  font-weight: 500;
  border: 1px solid #009899;
  width: 120px;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.home-search-button-new:hover 
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}

.home-search-button-new:focus 
{
  outline: none;
}
.new-patient-text
{
  color: #2c71be;
  font-size: 24px;
  font-weight: 700;
}
.dr-fa
{
  font-size: 22px !important;
  position: relative;
  top: -2px;
}

.input-icon
{
  position: absolute;
  left: 3px;
  top: calc(50% - 0.5em);
  color: #009899;
  padding-left: 4px;
  font-size: 23px !important;
}
.input-custom-textbox
{
 padding-left: 27px !important;
}
.input-custom
{
  position: relative;
}


.box {

}

.box select 
{
  background-color: #fefefe;
  outline: none;
  padding-left: 30px !important;
}

.box::before 
{
  content: "\f0f0";
  font-family: FontAwesome;
  position: absolute;
  top: 0px;
  /* right: 0; */
  width: 32px;
  height: 100%;
  text-align: center;
  font-size: 23px;
  line-height: 50px;
  color: #0096A7;
  background-color: white;
  pointer-events: none;
  left: 0;
}

.choose-map-btn
{
  padding: 5px 20px;
  font-weight: 400;
}

.choose-map-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}
.change-pass-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}

.custom-time-picker
{
  background-color: white !important;
  opacity: 1 !important;
}
.login-with-text
{
  font-size: 24px;
  font-weight: 600;
  color: #009899;
}
.doc-text
{
  color: #455b73;
  font-size: 24px;
  font-weight: 700;
}
.about-your-doc-text
{
  font-weight: 500;
  letter-spacing: 0px;
  font-size: 27px;
  margin: 0;
  text-transform: uppercase;
  color: #0398a9;
  margin-bottom: 10px;
}
.pt-pb
{
  padding-top: 20px;
  padding-bottom: 20px;
}
.payment-icon
{
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.payments-text
{
 letter-spacing: 0px;
 font-size: 18px;
 margin: 0;
 text-transform: none;
 color: #0096A7;
 margin-bottom: 12px;
 font-weight: 500;
}
.contact-us-text
{
  font-weight: 400;
  letter-spacing: -1px;
  font-size: 28px;
  margin: 0;
  text-transform: none;
  color: #0096A7;
  margin-bottom: 5px;
}
.get-direction-text
{
  font-weight: 500;
  letter-spacing: 0px;
  font-size: 18px !important;
  margin: 0;
  text-transform: none;
  color: #0096A7;
  margin-bottom: 5px;
}
.cookies-text
{
  font-weight: 500;
  letter-spacing: 0px;
  font-size: 20px;
  margin: 0;
  text-transform: none;
  color: #0699ab;
  margin-bottom: 10px;
}
.privacy-policy-contents
{
  font-weight: 400;
  font-size: 15px;
  color: #777;
  line-height: 23px;
  text-align: justify;
  margin-bottom: 10px;
}
.lang-no-border
{
  border: 0px solid black;
  width: 150px;
}

.lang-no-border:focus
{
  box-shadow: none;
}
.speciality-block
{
  border: 2px solid #0598aa;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 50%;
  margin-top: 15px;
}
.change-lang
{
  display: block;
  border: 2px solid rgb(3, 152, 169);
  padding: 5px 6px;
  border-radius: 25px;
  background-color: #0096A7;
  margin-top: 4px;
  margin-bottom: 2px;
  width: 96px;
  margin: 5px auto;
  cursor: pointer;
  color: white;
  font-weight: 500;
}

.change-lang:hover
{
  display: block;
  border: 2px solid rgb(3, 152, 169);
  padding: 5px 6px;
  border-radius: 25px;
  background-color: #fff;
  margin-top: 4px;
  margin-bottom: 2px;
  width: 96px;
  margin: 5px auto;
  cursor: pointer;
  color: #7f7f7f;
  font-weight: 500;
}
.flag-image
{
  margin-top: 26px;
  height: 20px;
  width: 20px;
}
.right-french
{
  margin-left: 6px;
}

.chk-label
{
  font-size: 14px;
  font-weight: 400;
}
.main-check
{
  position: relative;
  top: 2px;
}
.search-dr-name
{
  font-size: 15px !important;
  font-size: 1.375rem;
  margin-top: 0;
  display: block !important;
  margin-right: 0px;
  color: #006c67;
  font-weight: 500;
}
.search-dr-icon
{
  font-size: 18px !important;
  margin-right: 6px;
  color: #009899;
}
.actual-dr-name
{
  font-size: 18px !important;
  margin-top: 0;
  display: block !important;
  margin-right: 10px;
  color: #3f4079;
  font-weight: 500;
}
.app-row
{
 border-top: 1px solid #ededed;
 margin: 15px -15px -15px -115px;
 padding: 10px 5px;
}
.today-app-text
{
  font-size: 15px !important;
  font-size: 1.375rem;
  margin-top: 5px !important;
  display: block !important;
  margin-right: 10px;
  color: #009899;
  font-weight: 500;
}
.today-app-input
{
  display: none;
  cursor: pointer;
}
.today-app-label
{
  display: inline-block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 5px 5px 5px;
  line-height: 1;
  min-width: 90px;
  margin: 3px 5px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #009899;
  color: #009899;
  border-radius: 50px;
}
.today-app-label:hover
{
  background-color: #4ABCD7;
  color: #fff;
}


.today-app-label:checked + label {
  background-color: #009899;
  color: #fff;
}
.today-app-box
{
  display: inline-flex;
}

.today-app-ul
{
  border-top: 0px solid #ededed !important;
  margin: -10px -15px -6px -20px !important;
  padding: 8px 8px !important;
}

.new-list ul li:first-child:after {
  content: '!';
  font-weight: 400;
  margin-left: 8px;
  color: #ccc;
  display: none;
}

.common-float-none
{
  float: none !important;
}

#more 
{
  display: none;
}


#more-01 
{
  display: none;
}

#more-02 
{
  display: none;
}

#more-03 
{
  display: none;
}
.more-btn
{
 border-radius: 30px;
 padding: 5px 7px;
 font-size: 12px !important;
 margin-right: 0px;
 color: #fff;
 background-color: #009899;
 border-color: #009899;
 font-weight: 500;
 border: 1px solid #4abcd7;
 margin-top: 3px;
}
.more-btn:focus
{
 outline: none;
}
.arrow-down
{
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.french-text
{
  position: relative;
  top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #7f7f7f;
}


.strip_list:hover
{
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.uk-icon
{
  height: 20px;
  width: 20px;
}

#myDropdown .dd-select 
{
  border-radius: 2px;
  border: solid 0px #ccc;
  position: relative;
  cursor: pointer;
  background: white !important;
  margin-top: 21px;
}

#myDropdown .dd-desc 
{
  color: white;
  display: none;
  overflow: hidden;
  font-weight: normal;
  line-height: 1.4em;
}
#myDropdown label 
{
  display: inline-block;
  margin-bottom: .5rem;
  margin-top: 0px;
  color: #7f7f7f;
  font-size: 15px;
  font-weight: 500;
}

#myDropdown .dd-option-selected 
{
  background: white;
}

#myDropdown .dd-option 
{
  padding: 5px 10px;
  display: block;
  border-bottom: solid 1px #ddd;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
}

#myDropdown .dd-pointer 
{
  width: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}

#myDropdown .dd-pointer-up 
{
  border: solid 5px transparent !important;
  border-bottom: solid 5px #000 !important;
  margin-top: -11px !important;
}


.select-this-add
{
 width: 148px;
}
.tomorrow-app-label
{
  border: 2px solid #3f4079 !important;
  color: #3f4079 !important;
}
.tomorrow-color
{
  color: #3f4079!important;
}

.tomorrow-bg
{
  background-color: #3f4079 !important;
}


.last-tom li:last-child
{
  float: none!important;
}
.no-time-slots
{
 padding-top: 4px;
 padding-bottom: 8px;
 font-weight: 500;
 /* border: 1px solid #3f4079; */
 padding-left: 5px;
 padding-right: 5px;
 border-radius: 4px;
 background-color: #fefefe;
 text-align: center;
 color: #3f4079;
 font-size: 15px;
 width: 72%;
 margin: auto;
}
.new-gradient-bg
{
  background-image: linear-gradient(to right, #ededed , #43b8d2) !important;
}

.new-gradient-bg:hover
{
  background-image: linear-gradient(to right, #fff , #fff) !important;
}

.new-no-timeslot
{
  color: #3f4079;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 500;
  border: 1px solid #3f4079;
  padding-left: 10px;
  padding-right: 5px;
  border-radius: 3px;
  width: 100%;
  margin-top: -9px;
  font-size: 15px;
  background-color: #ffffff;
  text-align: center;
}

.clinic-pic-div
{
  background-color: #009899;
  color: #fff;
  margin: -30px -30px 30px -30px;
  padding: 17px 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.clinic-pic-text
{
  font-size: 1rem;
  margin: 0;
  color: #fff;
}
.new-box-profile
{
  height: auto;
  width: 200px;
  margin: 0 auto;
}
.modal-save-pass-btn
{
  background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
  border: 1px solid #0091a1;
  margin-bottom: 0px;
  border-radius: 25px;
  padding: 5px 20px !important;
  font-size: 15px;
  font-weight: 500;
  margin-left: 0px;
}

.modal-save-pass-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}

.modal-footer-center
{
  justify-content: center;
}
.modal-close-btn
{
  font-size: 17px !important;
  border: 1px solid;
  padding: 6px 8px;
  border-radius: 50%;
  background-color: black;
  color: white;
  opacity: 1;
  /* z-index: 999999; */
  font-weight: 300 !important;
}
.profile-dr-name
{
 margin-top: -68px;
}

.add-pl
{
  padding-left: 27px;
}

.new-lang-icon 
{
  font-size: 19px !important;
  margin-right: 8px;
  position: relative;
  top: 2px;
  color: #009899;
}
.book-app-btn-new
{
 font-size: 14px !important;
}

.book-app-btn-new:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}

.custom-week-ddl 
{
  width: auto;
  display: inline-flex !important;
  height: 36px !important;
  padding: 2px 15px;
  min-height: 36px;
  background-color: #009899;
  color: white;
  border: 1px solid #009899;
}
.custom-week-ddl:focus
{
  color: white;
  background-color: #009899;
  border-color: #009899;
  outline: 0;
  box-shadow: none;
}
.week-main-div
{
  padding-top: 9px !important;
  padding-bottom: 8px !important;
  text-align: center;
}

.book-app-now
{
  text-align: left;
  padding-right: 0px !important;
  /* margin-right: -6px !important;*/
}

.custom-select-btn
{
  background-color: #009899;
  border: 1px solid #009899;
}
.custom-right-arrow
{
  color: white;
  font-size: 21px !important;
  position: relative;
  top: 3px;
  font-weight: 100 !important;
}

.custom-select-btn:focus
{
  outline: none;
  border: 1px solid #009899;
}

.date-day-div-ul
{
  display: inline-flex;
  list-style-type: none;
  margin-bottom: -5px;
  margin-top: -5px;
  margin-left: 15px;
  margin-right: 15px;
}
.date-day-div-heading
{
  border: 1px solid #ced4da;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 4px;
  color: white;
  font-weight: 400;
  width: 95px;
  max-width: 95px;
  background-color: #6FA9D1;
}

.date-day-div-heading:hover
{
  background-color: #165476;
}
.dr-profile-image
{
  height: 110px;
  width: 110px;
  border-radius: 50%;
}

.morning-timeslots-text 
{
 font-size: 15px;
 text-align: center;
 font-weight: 500;
 margin-top: 0px;
 margin-bottom: 15px;
 color: #0096a7;
 border: 1px solid;
 padding: 11px 10px;
 border-radius: 5px;
}
.custom-hr-new
{
  margin: 5px -30px 5px -30px !important;
}
.common-display-flex
{
  display: inline-flex;
}

.new-af-timeslot
{
  display: inline-block;
}
.morning-tab-content 
{
 margin-top: 20px;
}
.af-timeslot-bg
{
  background-color: #3D7898 !important;
}
.eve-timeslot-bg
{
  background-color: #6FA9D1 !important;
}

.submenu-a-new {
 border-top-left-radius: 3px;
 border-top-right-radius: 3px;
 font-size: 14px;
 padding: 7px 20px;
 margin-right: 5px;
 margin-bottom: 0px;
 background-color: #009999;
 color: white;
 border-radius: 5px;
}
.submenu-a-new:focus {
  color: white;
}

.submenu-a-new:hover 
{
  color: white;
}

.submenu-active-new {
  color: white;
  background-color: #327879;
}

.new-modal-close-icon
{
  color: red !important;
  font-size: 20px;
  opacity: 1;
}

.modal-close-icon {
  font-size: 14px !important;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.modal-close-button {
 position: absolute;
 top: 0px;
 right: 3px;
 border-radius: 50%;
 border: none !important;
 color: white !important;
 font-weight: bold !important;
 cursor: pointer !important;
 font-size: 1.25em !important;
 background-color: #0096A7 !important;
 width: 30px;
 height: 30px;
 line-height: 30px !important;
 text-align: center;
 padding: 0 !important;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
 transition: background-color .1s ease-in-out, color .1s ease-in-out, transform .1s ease-in-out;
 opacity: 1 !important;
}
.home-modal-popup
{
  position: relative;
  top: 7%;
}
.click-here-link-new
{
  font-size: 15px;
  font-weight: 500;
  color: #1574d9;
}
.border-0
{
  border-bottom: 0px solid #e9ecef;
}
.modal-login-text
{
  font-size: 14px;
  text-align: center;
  color: black;
  margin-bottom: 0px;
  border: 1px solid #dbc1c1;
  padding: 10px;
  border-radius: 30px;
  font-weight: 500;
}
/*.aft-new-label
{
    border: 2px solid #3d7898 !important;
    color: white !important;
    background-color: #3d7898 !important;
}

.mor-new-label
{
    border: 2px solid #327879 !important;
    color: white !important;
    background-color: #327879 !important;
}

.eve-new-label
{
    border: 2px solid #6fa9d1 !important;
    color: white !important;
    background-color: #6fa9d1 !important;
    }*/
    .plr-0
    {
      padding-left: 0px;
      padding-right: 0px;
    }
    .plr-5
    {
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
    .evening-timeslot-no
    {
     width: 70%;
     margin: auto;
   }

   .mt-20
   {
    margin-top: 20px;
  }
  .final-timeslot
  {
    margin-left: 10px;
  }


  @media (min-width: 768px) 
  {
    .ten-columns > .col-md-2 
    {
      width: 20%;
      max-width: 20%;
      flex: 0 0 20%;
    }
  }


  @media (min-width: 768px)
  {
    .navbar-nav 
    {
      float: left;
      margin: 0;
    }

    .navbar-nav>li>a 
    {
      padding-top: 15px;
      padding-bottom: 15px;
    }
  }


  @media only screen and (max-width: 600px) and (min-width: 400px) 
  {
    .hero_home.version_1 
    {
      height: 350px;
    }
  }


  @media only screen and (max-width: 400px) and (min-width: 300px) 
  {
    .hero_home.version_1 
    {
      height: 330px;
    }

    .french-text 
    {
      position: relative;
      top: 14px;
      font-size: 12px;
      font-weight: 500;
      color: #7f7f7f;
    }
  }
  @media only screen and (max-width: 400px) and (min-width: 300px) 
  {
    .hero_home.version_007 
    {
      height: 330px;
    }

    .french-text 
    {
      position: relative;
      top: 14px;
      font-size: 12px;
      font-weight: 500;
      color: #7f7f7f;
    }
  }



  @media (max-width: 990px) 
  {
    .tb-hero-text 
    {
      position: relative;
      top: -28px;
    }
    .wellnessFont 
    {
      font-size: 40px !important;
    }
  }


  @media only screen and (max-width: 975px) and (min-width: 768px)  
  {
    .profile-dr-name 
    {
      margin-top: -44px !important;
    }

    .file-upload 
    {
      top: -48px !important;
    }

    .profile-img 
    {
      border-radius: 50%;
      border: 2px solid #009899;
      height: 100px;
      width: 100px;
    }
  }


  .center-login
  {
    padding: 10px;
    text-align: center;
    border: 2px solid #009899;
    border-radius: 50px;
  }
  .first-login-text
  {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
  }
  .click-here-link
  {
    font-size: 18px;
    font-weight: 500;
    color: #1574d9;
  }

  .click-here-link:hover
  {
    font-size: 18px;
    font-weight: 500;
    color: #1574d9;
  }
  .close-back
  {
    background-color: #009899 !important;
    line-height: 24px;
    width: 28px;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    font-size: 31px;
    height: 28px;
    margin-top: -8px !important;
    margin-bottom: -6px !important;
    margin-right: -7px !important;
  }
  .new-modal-close-btn-01
  {
    font-size: 28px;
    color: white;
    position: relative;
    top: -13px;
    left: -7px;
    font-weight: 400;
  }
  .modal-header-border
  {
    border-bottom: 0px solid #e9ecef;
  }
  .modal-footer-border
  {
    border-top: 0px solid #e9ecef;
  }

  .modal-content-body
  {
    top: 20%;
    width: 100% !important;
  }
  .break-text
  {
    word-break: break-word;
  }
  .education-icon
  {
    font-size: 19px !important;
    margin-right: 2px;
    position: relative;
    top: 3px;
    color: #009899;
  }
  .common-color-white
  {
    color: white;
  }
  .aft-overflow
  {
   /* height: 140px;*/
   overflow-x: auto;
   margin-left: 0px;
   margin-top: 15px;
   margin-bottom: 15px;
 }
 .custom-padding-28
 {
  padding: 7px 28px;
}
.custom-padding-32
{
  padding: 7px 32px;
}
.common-display-ib
{
  display: inline-block;
}

/*
 *  STYLE 10
 */

 .style-10::-webkit-scrollbar-track
 {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}

.style-10::-webkit-scrollbar
{
  width: 5px;
  background-color: #F5F5F5;
}

.style-10::-webkit-scrollbar-thumb
{
  background-color: #AAA;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(90deg,
    rgba(0, 0, 0, .2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, .2) 50%,
    rgba(0, 0, 0, .2) 75%,
    transparent 75%,
    transparent)
}
.border-separation
{
 /* border-right: 1px solid #ced4da; */
 box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.login-page-back-image
{
  background: url(../img/page-images/page-bg-01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.login-screen-mr
{
  margin-bottom: 35px;
  margin-top: 35px;
}

.reason-for-visits
{
  width: 174px !important;
  max-width: 174px;
  min-width: 174px;
}
.visit-reason
{
  word-break: break-word;
}
.today-app
{
  width: 174px !important;
  max-width: 174px;
  min-width: 174px;
}
.future-appt
{
 width: 174px !important;
 max-width: 174px;
 min-width: 174px;
}
.specialization-icon-new
{
  height: 25px;
  width: 25px;
  padding-right: 0px;
  /* position: relative; */
  /* left: -5px; */
  margin-left: -3px;
}
.education-cap
{
  color: #00999a !important;
  font-size: 42px !important;
  position: absolute !important;
  left: 0 !important;
  /* color: #3f4079; */
  top: 0 !important;
}
.dr-edu-text
{
  margin-top: 5px !important;
}
.intro
{
  background-color: black;
  color: black;
}
.md-close-btn:focus
{
  outline: none;
}

.change-pass-btn
{
  outline: none !important;
}

.change-pass-btn:focus
{
  outline: none !important;
  box-shadow: none !important;
}
.change-pass-btn:hover
{
  color: #fff;
  background-color: #1aa3b8;
  border-color: #21a7bc;
}

.modal-save-pass-btn
{
 outline: none !important;
}

.modal-save-pass-btn:focus
{
 outline: none !important;
 box-shadow: none !important;
}

.modal-save-pass-btn:hover
{
 color: #fff;
 background-color: #1aa3b8;
 border-color: #21a7bc;
}
.upd-btn-margin
{
  margin-bottom: 10px !important;
}
.subscription-close-btn {
  position: absolute;
  top: -7px;
  right: -5px;
  border-radius: 50%;
  border: none !important;
  color: white !important;
  font-weight: bold !important;
  cursor: pointer !important;
  font-size: 1.25em !important;
  background-color: #0096A7 !important;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  text-align: center;
  padding: 0 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: background-color .1s ease-in-out, color .1s ease-in-out, transform .1s ease-in-out;
  opacity: 1 !important;
}
.subscription-close-btn:focus
{
 outline: none;
}
.modal-content-body {
  top: 20%;
  width: 100% !important;
}
.subscription-modal-header {
  padding-top: 20px;
  padding-bottom: 0px;
}
.modal-header-border {
  border-bottom: 0px solid #e9ecef;
}
.subscription-desc-text {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 0px;
  padding-left: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #ecf1f5;
  text-align: left;
  background-color: #09818f;
  color: #fff;
  padding: 8px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}
.add-sub-dept-main-div {
  padding: 1em;
  border: #46bad4 solid 1px;
  margin-top: -17px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.no-data-text {
 font-size: 16px;
 color: #7f7f7f;
 padding: 5px 20px;
 border: 1px solid #0096a7;
 font-weight: 600;
 border-radius: 4px;
 text-align: center;
 margin-bottom: 15px;
 display: inline-block;
}
.no-data-text-main-div
{
  width: 100%;
  text-align: center;
}
.verify-link
{
 border: 1px solid #1E9FF2;
 padding: 4px 10px;
 margin-top: 3px;
 display: inline-block;
 border-radius: 30px;
 color: #1E9FF2;
 background-color: white;
 font-size: 15px;
 font-weight: 400;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -webkit-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
}

.verify-link:hover
{
  border: 1px solid #099bad;
  padding: 4px 10px;
  margin-top: 3px;
  display: inline-block;
  border-radius: 30px;
  color: white;
  background-color: #089aac;
  font-size: 15px;
  font-weight: 400;
}
.custom-row-pl-0
{
  padding-left: 0px;
}
.registerBtn
{
  outline: none !important;
  box-shadow: none !important;
}
.loginBtn
{
  outline: none !important;
  box-shadow: none !important;
}
.your-doc-btn:hover
{
  background-image: linear-gradient(to right, #0598aa , #46bad5) !important;
}
.footer-padding
{
  padding-top: 40px;
  padding-bottom: 20px;
}

.authorities-below-line 
{
  display: block;
  width: 150px;
  height: 3px;
  background: #0398a9;
  margin: 15px auto;
  margin-bottom: 30px;
}
.contact-submit-btn:hover
{
  background: var(--primary-brand-hover) !important;
  background-image: none !important;
}
.about-content
{
  font-size: 15px;
  color: #e74e84;
  font-weight: 400;
  text-align: justify;
  line-height: 21px;
  margin-bottom: 15px;
}
.book-visit-content
{
  font-size: 14px;
  color: #555;
  font-weight: 400;
  /* text-align: justify; */
  line-height: 21px;
  margin-bottom: 20px;
}
.appointment-no-text
{
  font-size: 15px;
  color: black;
  font-weight: 600;
  text-align: justify;
  line-height: 21px;
}

/* Doctor Details New Page Design Start */

.gray-color{
  background-color: #ededed;
}
.btn-new{
  /*background-color: #81c41c;*/
  width: 215px;
}
.btn-wait{
  /*background-color: #81c41c;*/
  width: 215px;
}
.btn-emergency{
  /*background-color: #e74e84;*/
  width: 215px;
}
.test-in{
  float: left;
}
.select-slot{
  /*background-color: #4abcd7 !important;*/
  background-color: #165476  !important;
}
.put-slot{
  cursor: pointer !important;
  background-color: #81c41c !important;
}
   /*.active{
   background-color: red !important;
   }*/
   .bread-manual{
    color: white;
  }
   /*   #invoice{
   padding: 30px;
   }*/
   .invoice 
   {
     /* position: relative;
      background-color: #FFF;
     
      padding: 15px*/
    }
    .invoice header {
      padding: 10px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid #3989c6
    }
    .invoice .company-details {
      text-align: right
    }
    .invoice .company-details .name {
      margin-top: 0;
      margin-bottom: 0
    }
    .invoice .contacts {
      margin-bottom: 20px
    }
    .invoice .invoice-to {
      text-align: left
    }
    .invoice .invoice-to .to {
      margin-top: 0;
      margin-bottom: 0
    }
    .invoice .invoice-details {
      text-align: right
    }
    .invoice .invoice-details .invoice-id {
      margin-top: 0;
      color: #3989c6;
      float: left;
    }
    .invoice main 
    {
     padding: 15px;
     padding-bottom: 0px;
   }
   .invoice main .thanks {
    /*margin-top: -100px;*/
    font-size: 2em;
    text-align: center;
    /*margin-bottom: 50px*/
  }
  .invoice main .notices {
    padding-left: 6px;
    border-left: 6px solid #3989c6
  }
  .invoice main .notices .notice {
    font-size: 1.2em
  }
  .invoice table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .invoice table td,.invoice table th 
  {
    padding: 10px 10px;
    background: #f6f6f8;
    border-bottom: 1px solid #28a745;
  }
  .invoice table th {
   white-space: nowrap;
   font-weight: 600 !important;
   font-size: 15px;
 }
 .invoice table td h3 {
  margin: 0;
  font-weight: 400;
  color: #3989c6;
  font-size: 1.2em
}
.invoice table .qty,.invoice table .total,.invoice table .unit {
  text-align: right;
  font-size: 1.2em
}
.invoice table .no {
  color: #fff;
  font-size: 1.6em;
  background: #3989c6
}
.invoice table .unit {
  background: #ddd
}
.invoice table .total {
  background: #3989c6;
  color: #fff
}
.invoice table tbody tr:last-child td {
  border: none
}
.invoice table tfoot td {
  background: 0 0;
  border-bottom: none;
  white-space: nowrap;
  text-align: right;
  padding: 10px 20px;
  font-size: 1.2em;
  border-top: 1px solid #aaa
}
.invoice table tfoot tr:first-child td {
  border-top: none
}
.invoice table tfoot tr:last-child td 
{
  color: #538cc9;
  font-size: 16px;
  border-top: 1px solid #28a745 !important;
  font-weight: 600;
}
.invoice table tfoot tr td:first-child {
  border: none
}
.invoice footer {
  width: 100%;
  text-align: center;
  color: #777;
  border-top: 1px solid #aaa;
  padding: 8px 0
}

.hr-border
{
  border-bottom: 1.6px solid #09818f;
}
.modal-confirm-btn
{
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 400;
}
.modal-cancel-btn
{
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
}
.modal-btn-main-div
{
  margin-top: 15px;
  margin-bottom: 0px;
}
.back-btn-margin
{
  margin-left: 10px;
}
.custom-alert
{
  position: relative;
  padding: 0px 1.25rem;
  margin-bottom: 0px;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.booking-appointment-text
{
  letter-spacing: 0px;
  font-size: 21px;
  margin: 0;
  text-transform: none;
  color: #3f4079;
  margin-bottom: 5px;
  text-align: center;
  /* padding: 15px 10px; */
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #d9e2e9;
  border-radius: 25px;
  background-color: #ededed;
}
.terms-below-line
{
  width: 230px;
}
.contactus-below-line
{
  width: 120px;
}
.faq-below-line
{
  width: 320px;
}

@media print {
  .invoice {
   font-size: 11px!important;
   overflow: hidden!important
 }
 .invoice footer {
   position: absolute;
   bottom: 10px;
   page-break-after: always
 }
 .invoice>div:last-child {
   page-break-before: always
 }
}

/* Doctor Details New Page Design End */

/* Search Doctor page css start */

.acre_none{
 display: none;
}
.acre_block{
 display: block;
}
.full{
  height: auto !important;
} 
.full_temp{
  height: auto !important;
}
.short{
  height: 45px;
  overflow: hidden; 
}
.new-list{
  display: inherit !important;
}
@media (max-width: 767px)
{
  .custom-more-btn {
    position: absolute;
    top: -2px;
    right: -2px;
  }  
  .short{
    height: 78px;
    overflow: hidden; 
  } 
  

}
.short_temp{
  /*height: 78px;*/
  height: 45px !important;
  /*overflow: hidden; */
  overflow: hidden !important; 
} 

.error-message
{
  font-size: 14px !important;
  background: red;
  padding: 3px 15px;
  border-radius: 3px;
  position: relative;
  display: inline-block!important;
  box-shadow: 1px 1px 1px #aaaaaa;
  margin-top: 10px;
  color: white !important;
  font-weight: 400;
  line-height: 20px;
}

.error-message:before
{ 
 content: '';
 width: 0;
 height: 0;
 border-left: 10px solid transparent;
 border-right: 10px solid transparent;
 border-bottom: 10px solid #fe0000;
 position: absolute;
 top: -10px;
}
.p-margin-bottom
{
  margin-bottom: 0px;
}
.margin-lr
{
  margin-left: 0px;
  margin-right: 0px;
}
.tm-slot-new
{
  padding-top: 15px;
}
/* Search Doctor page css End */

/* Patient Profile page css Start */

.file-upload 
{
 height: 40px;
 width: 40px;
 border-radius: 100px;
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 border: 0px solid #FFFFFF;
 overflow: hidden;
 background-image: linear-gradient(to bottom, #3f4079 50%, #FFFFFF 50%);
 background-size: 100% 200%;
 transition: all 1s;
 color: #FFFFFF;
 font-size: 100px;
 margin: 0 auto;
 top: -81px;
}
.camera-icon 
{
 font-size: 20px !important;
}
.file-upload input[type='file'] 
{
 height: 40px;
 width: 40px;
 position: absolute;
 top: 0;
 left: 0;
 opacity: 0;
 cursor: pointer;
}
.change-pass-btn 
{
  background-image: linear-gradient(to right, #4ABCD7 , #0096A7) !important;
  border: 1px solid #0091a1;
  margin-bottom: 20px;
  border-radius: 25px;
  padding: 5px 4px;
  font-size: 13px;
  font-weight: 600;
  margin-left: -15px;
}
.greenColor
{
 color: #09e809;
}

.no-doctor-available-text 
{
  font-size: 16px;
  color: #7f7f7f;
  padding: 5px 20px;
  border: 1px solid #0096a7;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
}
.otp-btn-margin
{
  margin-bottom: 8px;
}
.show-error-msg-new
{
  font-size: 16px;
  color: red;
  padding: 5px 20px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
}
/* Patient Profile page css Start */