/*-----------------------------------------------------------------------------------

    Template Name: GanFarm
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	  02. Header
    03. Hero
	  04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800");
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #121212;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #121212;
  margin: 0px; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #121212;
  margin: 0px; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 0 32px;
  font-size: 16px;
  line-height: 48px;
  color: #0067f4;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  text-transform: uppercase; }
  @media (max-width: 767px) {
    .main-btn {
      font-size: 14px;
      padding: 0 20px;
      line-height: 40px; } }

/*===== All Section Title Style =====*/
.section-title .title {
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
  color: #121212;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 40px;
  }

  .section-title .second-title {
    font-size: 25px;
    line-height: 40px;
  }
}

.section-title .second-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 55px;
  color: #121212;
}

.section-title .text {
  font-size: 16px;
  line-height: 24px;
  color: #6c6c6c;
  margin-top: 24px;
}

/*===========================
    2.HEADER css
===========================*/
/*===== NAVBAR ONE =====*/
.navgition {
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .navgition.navgition-transparent {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99; }
  .navgition.sticky {
    position: fixed;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .navgition .navbar {
    position: relative;
    padding: 0; }
    .navgition .navbar .navbar-toggler .toggler-icon {
      width: 30px;
      height: 2px;
      background-color: #121212;
      margin: 5px 0;
      display: block;
      position: relative;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 7px; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
      opacity: 0; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg);
      top: -7px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navgition .navbar .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 0;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); } }
    @media (max-width: 767px) {
      .navgition .navbar .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 0;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); } }
    .navgition .navbar .navbar-nav .nav-item {
      margin: 0 16px;
      position: relative; }
      .navgition .navbar .navbar-nav .nav-item a {
        font-size: 15px;
        line-height: 24px;
        font-weight: 700;
        padding: 26px 0;
        color: #121212;
        text-transform: uppercase;
        position: relative;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navgition .navbar .navbar-nav .nav-item a {
            padding: 10px 0;
            display: block; } }
        @media (max-width: 767px) {
          .navgition .navbar .navbar-nav .nav-item a {
            padding: 10px 0;
            display: block; } }
        .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
          position: absolute;
          content: '';
          width: 8px;
          height: 4px;
          background-color: #0067f4;
          left: 50%;
          margin: 0 2px;
          bottom: 14px;
          opacity: 0;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
          @media only screen and (min-width: 768px) and (max-width: 991px) {
            .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
              display: none; } }
          @media (max-width: 767px) {
            .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
              display: none; } }
        .navgition .navbar .navbar-nav .nav-item a::after {
          left: auto;
          right: 50%; }
      .navgition .navbar .navbar-nav .nav-item.active > a, .navgition .navbar .navbar-nav .nav-item:hover > a {
        color: #0067f4; }
        .navgition .navbar .navbar-nav .nav-item.active > a::before, .navgition .navbar .navbar-nav .nav-item.active > a::after, .navgition .navbar .navbar-nav .nav-item:hover > a::before, .navgition .navbar .navbar-nav .nav-item:hover > a::after {
          opacity: 1; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navgition .navbar .navbar-social {
        position: absolute;
        right: 70px;
        top: 7px; } }
    @media (max-width: 767px) {
      .navgition .navbar .navbar-social {
        position: absolute;
        right: 60px;
        top: 7px; } }
    .navgition .navbar .navbar-social span {
      font-size: 16px;
      font-weight: 700;
      color: #6c6c6c;
      line-height: 24px;
      margin-right: 14px; }
    .navgition .navbar .navbar-social ul li {
      display: inline-block;
      margin-right: 5px; }
      .navgition .navbar .navbar-social ul li a {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 700;
        color: #6c6c6c;
        border-radius: 4px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .navgition .navbar .navbar-social ul li a:hover {
          color: #0067f4; }

	.navgition .navbar .auth-nav .nav-item{
		margin: 0px 6px;
	}

	.navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
		border: 1px solid #5BB318;
		padding: 6px 20px;
		border-radius: 50px;
	}

	.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
		border: 1px solid #5BB318;
		background: #5BB318;
		color: #FFF;
		padding: 6px 20px;
		border-radius: 50px;
	}

    .navgition .navbar .navbar-nav .nav-item a.sing-in-btn::before, .navgition .navbar .navbar-nav .nav-item a.sing-in-btn::after{
		content: '';
		background: #FFF;
		display: none;
	}

	.navgition .navbar .navbar-nav .nav-item a.sing-up-btn::before, .navgition .navbar .navbar-nav .nav-item a.sing-up-btn::after{
		content: '';
		background: #FFF;
		display: none;
	}
.logo{
   max-height: 40px;
}

p.slogan-text {
  font-size: 10px;
  position: absolute;
  left: 30px;
  top: 50px;
}

@media (max-width: 767px) {
  p.slogan-text {
    top: 25px;
  }
}

.header-hero {
  height: 850px;
  position: relative;
}

.header-hero-home {
  height: 750px !important;
}

@media only screen and (max-width: 479px) {
  .header-hero-home {
    height: 650px !important;
  }
}

.header-content-home {
  padding-top: 95px !important;
}

.featured-list {
  background: #ffffff !important;
}

.page-hero{
  height: 350px;
  position: relative;
  margin-bottom: 30px;
}

.page-hero-contact{
  height: 250px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-hero {
    height: 700px;
  }
}

@media (max-width: 767px) {
  .header-hero {
    height: 650px;
  }
}

.header-hero::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
  background: -o-linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
  background: linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
}

.header-hero .header-content {
    padding-top: 195px;
    position: relative;
    z-index: 9;
}

  .page-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: -o-linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: linear-gradient(rgba(229, 255, 216, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
  }

.page-hero .header-content {
    padding-top: 135px;
    position: relative;
    z-index: 9;
}

.page-hero .header-content .header-title {
  font-family: Poppins,sans-serif;
  font-size: 35px;
  line-height: 55px;
  color: #121212;
  font-weight: 600;
}

@media only screen and (max-width: 479px){
  .page-hero .header-content .header-title {
    font-size: 30px;
  }
}

.page-hero .header-content .description-title {
  padding-top: 35px;
}

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-hero .header-content {
            padding-top: 130px;
	    }

	    .navgition .navbar .auth-nav .nav-item{
			margin: 0px 16px;
		}

		.navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
			border: 0;
			padding: 10px 0;
			border-radius: 50px;
		}

		.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
			border: 0;
			padding: 10px 0;
			border-radius: 0px;
			background: #FFF;
			color: #121212;
		}
	}
    @media (max-width: 767px) {
	  .navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
			border: 0;
			padding: 10px 12px;
			border-radius: 50px;
		}

    #select_language{
      background: transparent;
      color: #000;
      border: none;
      font-weight: 700;
      padding-left: 20px;
    }


		.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
			border: 0;
			padding: 10px 12px;
			border-radius: 0px;
			background: #FFF;
			color: #121212;
		}
      .header-hero .header-content {
        padding-top: 120px; } }

.header-hero .header-content .header-title {
  font-family: Poppins,sans-serif;
  font-size: 35px;
  line-height: 55px;
  color: #121212;
  font-weight: 600;
}

      @media (max-width: 767px) {
        .header-hero .header-content .header-title {
          font-size: 30px;
          line-height: 40px; } }
    .header-hero .header-content .text {
      font-size: 20px;
      line-height: 32px;
      color: #6c6c6c;
      margin-top: 16px; }
      @media (max-width: 767px) {
        .header-hero .header-content .text {
          font-size: 16px;
          line-height: 24px; } }
    .header-hero .header-content .header-btn {
      margin-top: 22px; }
      .header-hero .header-content .header-btn li {
        display: inline-block;
        margin: 10px 10px 0; }
        .header-hero .header-content .header-btn li a.main-btn {
          border-radius: 50px;
          overflow: hidden;
          background-color: #fff;
          -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          border: 0;
          line-height: 50px; }
          .header-hero .header-content .header-btn li a.main-btn i {
            margin-left: 5px; }
          .header-hero .header-content .header-btn li a.main-btn.btn-one {
            color: #fff; }
            .header-hero .header-content .header-btn li a.main-btn.btn-one::before {
              position: absolute;
              content: '';
              width: 100%;
              height: 100%;
              top: 0;
              left: 0;
              background-image: -webkit-linear-gradient(left, #0067f4, #2bdbdc);
              background-image: -o-linear-gradient(left, #0067f4, #2bdbdc);
              background-image: linear-gradient(to right, #0067f4, #2bdbdc);
              background-position: right center;
              z-index: -1;
              -webkit-transition: all 0.3s ease-out 0s;
              -moz-transition: all 0.3s ease-out 0s;
              -ms-transition: all 0.3s ease-out 0s;
              -o-transition: all 0.3s ease-out 0s;
              transition: all 0.3s ease-out 0s; }
            .header-hero .header-content .header-btn li a.main-btn.btn-one:hover::before {
              background-image: -webkit-linear-gradient(right, #0067f4, #2bdbdc);
              background-image: -o-linear-gradient(right, #0067f4, #2bdbdc);
              background-image: linear-gradient(to left, #0067f4, #2bdbdc);
              background-position: left center;
              -webkit-transition: all none ease-out 0s;
              -moz-transition: all none ease-out 0s;
              -ms-transition: all none ease-out 0s;
              -o-transition: all none ease-out 0s;
              transition: all none ease-out 0s; }
          .header-hero .header-content .header-btn li a.main-btn.btn-two:hover {
            -webkit-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
            -moz-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16); }
  .header-hero .header-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    .header-hero .header-shape img {
      width: 100%; }

/*===========================
      3.featureS css
===========================*/
.features-area {
  padding-top: 0px;
  padding-bottom: 120px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-area {
      padding-top: 100px;
      padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .features-area {
      padding-top: 20px;
      padding-bottom: 20px;
    }
}

.feature-box{
	background: #FFF;
    padding: 30px 15px;
    /* box-shadow: 1px 3px 5px #e9e9e9; */
    border: 1px solid #5BB318;
    border-radius: 5px;
    height: 200px;
}

@media only screen and (max-width: 479px){
  .feature-box {
    height: 90%;
  }
}

.features-content .features-icon i {
  font-size: 64px;
  color: #0067f4;
}

.features-content .features-content {
  padding-left: 15px; }
  @media (max-width: 767px) {
    .features-content .features-content {
      padding-left: 0;
      padding-top: 15px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-content .features-content {
      padding-left: 15px;
      padding-top: 0; } }
  .features-content .features-content .features-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #121212; }
  .features-content .features-content .text {
    font-size: 14px;
    line-height: 20px;
    color: #121212;
    margin-top: 8px; }

.features-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-image {
      width: 34%; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-image {
      position: relative;
      width: 720px;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .features-image {
      position: relative;
      width: 100%;
      padding-left: 15px;
      padding-right: 16px;
      margin: 0 auto; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-image {
      position: relative;
      width: 540px;
      margin: 0 auto; } }
  .features-image .image {
    max-width: 580px;
    width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .features-image .image {
        margin: 0 auto;
        padding-top: 50px; } }
    @media (max-width: 767px) {
      .features-image .image {
        margin: 0 auto;
        padding-top: 50px; } }
    .features-image .image img {
      width: 100%; }

/*===========================
      4.PRICING css
===========================*/
.pricing-area {
  padding-top: 100px;
  padding-bottom: 20px;
  background-color: #FFFFFF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-area {
      padding-top: 100px;
      padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .pricing-area {
      padding-top: 20px;
      padding-bottom: 20px;
    }
}

.single-pricing {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 24px 20px 50px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-color: #fff; }

.single-pricing .pricing-header .sub-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #121212;
  position: relative;
  padding-bottom: 8px;
}

.single-pricing .pricing-header .sub-title::before {
  position: absolute;
  content: '';
  width: 72px;
  height: 4px;
  bottom: 0;
  left: 0;
  /*right: 0;*/
  background-color: #2bdbdc;
  margin: 0 auto;
}

.single-pricing .pricing-header .price {
  display: block;
  font-size: 34px;
  font-weight: 600;
  line-height: 80px;
  margin-top: 32px;
  color: #121212;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
      .single-pricing .pricing-header .price {
        font-size: 50px;
        margin-top: 16px; } }
    @media (max-width: 767px) {
      .single-pricing .pricing-header .price {
        font-size: 50px;
        margin-top: 16px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single-pricing .pricing-header .price {
        font-size: 64px;
        margin-top: 32px; } }
  .single-pricing .pricing-header .year {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #6c6c6c;
    margin-top: 3px;
  }

.single-pricing .pricing-list {
  margin-top: 40px;
}

.single-pricing .pricing-list ul li {
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-pricing .pricing-list ul li {
    font-size: 14px;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .single-pricing .pricing-list ul li {
    font-size: 14px;
    margin-top: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-pricing .pricing-list ul li {
    font-size: 16px;
    margin-top: 16px;
  }
}

.single-pricing .pricing-list ul li i {
  color: #0067f4;
  margin-right: 8px;
}

.single-pricing .pricing-list ul li i.lni-cross-circle {
     color: red;
}

.single-pricing .pricing-list ul li i.lni-warning {
  color: #ec885d;
}

.single-pricing .pricing-btn {
  margin-top: 42px;
}

.single-pricing .pricing-btn .main-btn {
    background-color: #0067f4;
    border-radius: 50px;
    color: #fff;
    border-color: #0067f4;
}

.single-pricing .pricing-btn .main-btn:hover {
  background-color: #5BB318;
  border-color: #5BB318;
}

.single-pricing .buttom-shape {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 101%;
}

.single-pricing.pro .pricing-header .sub-title::before {
  right: auto;
  left: 0;
  background-color: #5BB318;
}

.single-pricing.pro .pricing-baloon {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 80px;
}

.single-pricing.pro.mt-40 {
  background-color: #ec5c9130;
}

.single-pricing.enterprise .pricing-header .sub-title::before {
  right: 0;
  left: auto;
  background-color: #0067f4; }

.single-pricing.enterprise .pricing-flower {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 144px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-pricing.enterprise .pricing-flower {
      width: 110px; } }
  @media (max-width: 767px) {
    .single-pricing.enterprise .pricing-flower {
      width: 110px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-pricing.enterprise .pricing-flower {
      width: 144px; } }
  .single-pricing.enterprise .pricing-flower img {
    width: 100%; }
  .yearly-package{
    display: none;
  }


/*===========================
    5.CALL TO ACTION css
===========================*/
.call-to-action {
  background-color: #0067f4;
  position: relative; }

.call-action-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-image {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .call-action-image {
    position: relative;
    width: 100%;
  }
}

.call-action-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.call-action-content {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 230px;
  padding-bottom: 236px;
}

@media (max-width: 767px) {
  .call-action-content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 10px;
  }
}

.call-action-content .call-title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 55px;
}

@media (max-width: 767px) {
  .call-action-content .call-title {
    font-size: 28px;
    line-height: 38px;
  }
}

.call-action-content .text {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin-top: 16px;
}

@media (max-width: 767px) {
      .call-action-content .text {
        font-size: 14px; } }
  .call-action-content .call-newsletter {
    max-width: 410px;
    position: relative;
    margin: 24px auto 0; }
    .call-action-content .call-newsletter i {
      font-size: 26px;
      color: #0067f4;
      position: absolute;
      left: 18px;
      top: 15px; }
    .call-action-content .call-newsletter input {
      width: 100%;
      height: 56px;
      border: 0;
      border-radius: 50px;
      background-color: #fff;
      padding-left: 60px;
      padding-right: 30px; }
      .call-action-content .call-newsletter input::placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .call-action-content .call-newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .call-action-content .call-newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c;
      }
.call-action-content .call-newsletter input::-webkit-input-placeholder {
  opacity: 1;
  color: #6c6c6c;
}

.call-action-content .call-newsletter button {
  border: 0;
  border-radius: 50px;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #5BB318;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .call-action-content .call-newsletter button {
    position: relative;
    right: auto;
    margin-top: 15px;
    background-color: #fff;
    color: #5BB318;
  }
}

.call-action-content .call-newsletter button:hover {
  background-color: #5BB318;
  color: #fff;
}

/*===========================
    6.CALL TO ACTION css
===========================*/
.contact-area {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-area {
    padding-top: 100px;
    padding-bottom: 100px; }

}

@media (max-width: 767px) {
  .contact-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }

}

.form-group {
  margin: 0;
}

p.form-message.success,
p.form-message.error {
  font-size: 16px;
  color: #121212;
  background: #cbced1;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px;
}

p.form-message.error {
  color: #f00;
}

.contact-form .single-form {
  margin-top: 30px;
}

.contact-form .single-form textarea,
.contact-form .single-form input {
  width: 100%;
  height: 56px;
  border: 1px solid #cbced1;
  border-radius: 5px;
  padding: 0 25px;
  background-color: #fff;
  font-size: 16px;
}

.contact-form .single-form textarea::placeholder,
.contact-form .single-form input::placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea::-webkit-input-placeholder,
.contact-form .single-form input::-webkit-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea {
    height: 160px;
    padding-top: 15px;
    resize: none;
}

.contact-form .single-form .main-btn {
    border-radius: 50px;
    background-color: #0067f4;
    color: #fff;
}

.contact-form .single-form .main-btn:hover {
      background-color: #005ad5;
}

.list-unstyled li {
  font-size: 13px;
  margin-left: 2px;
  margin-top: 5px;
  color: #f00;
}


/*===========================
       7.FOOTER css
===========================*/
.footer-area {
  background-color: #f4f6f7;
}

.footer-logo img {
	max-height: 28px;
}
.footer-widget {
  padding-top: 30px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.footer-logo-support .footer-logo .social {
  margin-left: 35px; }
  .footer-logo-support .footer-logo .social li {
    display: inline-block;
    margin-right: 10px; }
    .footer-logo-support .footer-logo .social li a {
      font-size: 24px;
      color: #6c6c6c;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer-logo-support .footer-logo .social li a:hover {
        color: #0067f4; }

.footer-logo-support .footer-support span {
  font-size: 20px;
  line-height: 25px;
  color: #6c6c6c;
  font-weight: 600; }
  @media (max-width: 767px) {
    .footer-logo-support .footer-support span {
      display: block; } }
  .footer-logo-support .footer-support span.mail {
    margin-left: 32px; }
    @media (max-width: 767px) {
      .footer-logo-support .footer-support span.mail {
        margin-left: 0; } }

.footer-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #6c6c6c; }

.footer-link {
  margin-top: 32px; }
  .footer-link ul {
    margin-top: 8px; }
    .footer-link ul li a {
      font-size: 16px;
      line-height: 24px;
      color: #121212;
      margin-top: 16px;
      font-weight: 500;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer-link ul li a:hover {
        color: #0067f4; }

.footer-newsletter {
  margin-top: 32px; }
  .footer-newsletter .newsletter {
    margin-top: 24px;
    position: relative; }
    .footer-newsletter .newsletter input {
      width: 100%;
      height: 44px;
      border-radius: 50px;
      padding: 0 24px;
      border: 0;
      background-color: rgba(33, 33, 33, 0.12);
      font-weight: 500; }
      .footer-newsletter .newsletter input::placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-webkit-input-placeholder {
        opacity: 1;
        color: #6c6c6c; }
    .footer-newsletter .newsletter button {
      position: absolute;
      top: 0;
      right: 0;
      height: 44px;
      width: 44px;
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
      border: 0;
      font-size: 20px;
      color: #121212;
      cursor: pointer;
      background: none; }
  .footer-newsletter .text {
    margin-top: 16px; }

.footer-copyright {
  background-color: #1d4219;
}

.copyright {
  padding: 23px 0; }
  .copyright .text {
    color: #fff; }

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #0067f4;
  bottom: 10px;
  right: 20px;
  z-index: 999;
  color: #fff;
  font-size: 20px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  display: none; }
  .back-to-top:hover {
    background-color: #005ad5;
    color: #fff; }

/*===========================
       8.Auth Form css
===========================*/

.auth-form .single-form {
  margin-top: 30px; }
  .auth-form .single-form textarea,
  .auth-form .single-form input,
  .auth-form .single-form select {
    width: 100%;
    height: 56px;
    border: 1px solid #cbced1;
    border-radius: 5px;
    padding: 0 25px;
    background-color: #fff;
    font-size: 16px; }
    .auth-form .single-form textarea::placeholder,
    .auth-form .single-form input::placeholder, {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-moz-placeholder,
    .auth-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-moz-placeholder,
    .auth-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-webkit-input-placeholder,
    .auth-form .single-form input::-webkit-input-placeholder {
      opacity: 1;
      color: #a4a4a4; }
  .auth-form .single-form textarea {
    height: 160px;
    padding-top: 15px;
    resize: none; }
  .auth-form .single-form .main-btn {
    border-radius: 50px;
    background-color: #0067f4;
    color: #fff; }
    .auth-form .single-form .main-btn:hover {
      background-color: #005ad5; }

  .auth-form .single-form .red-btn {
    border-radius: 50px;
    background-color: #F44336;
    color: #fff; }
    .auth-form .single-form .red-btn:hover {
      background-color: #F44336; }
  .with-errors{color: red;}

/*===========================
       9.Page css
===========================*/

.page p{
	font-size: 16px;
    line-height: 26px;
    color: #6c6c6c;
    margin-top: 24px;
}

.contact-form .single-form .main-btn:disabled  {
    background-color: #dfdfdf;
    cursor: no-drop;
}

.faq-box{
   margin-bottom: 15px;
}

.faq-box > .card-header{
    background-color: #FFF;
    height: 71px;
    font-size: 18px;
    padding-top: 23px;
}

@media only screen and (max-width: 479px){
  section#faq {
    padding-top: 20px;
  }

  .faq-box > .card-header{
    height: 100%;
  }
}

.faq-box ol {
  list-style: decimal;
  margin-left: 30px;
}

/** General Sections **/
.general-area {
	/*padding-top: 120px;*/
	padding-bottom: 120px;
	position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .general-area {
      padding-top: 100px;
      padding-bottom: 100px;
	}
}
@media (max-width: 767px) {
    .general-area {
      padding-top: 80px;
      padding-bottom: 80px;
	}
}

/** About Us **/
.about-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;

}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-image {
      width: 34%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-image {
      position: relative;
      width: 720px;
      margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-image {
      position: relative;
      width: 100%;
      padding-left: 15px;
      padding-right: 16px;
      margin: 0 auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image {
    position: relative;
    width: 540px;
    margin: 0 auto;
  }
}

.about-image .image {
  max-width: 580px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
      .about-image .image {
        margin: 0 auto;
        padding-top: 50px;
      }
}

@media (max-width: 767px) {
      .about-image .image {
        margin: 0 auto;
        padding-top: 50px;
      }
}

.about-image .image img {
  width: 100%;
}

@media only screen and (max-width: 479px){
  section#about {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/** language Switcher **/
#select_language{
	padding: 6px 20px;
	border-radius: 50px;
}

/*-------------------- 34. START Search Result ------------ */


.list-center .first-title {
  letter-spacing: 0px;
  margin: 0px;
  min-width: 0px;
  font-size: 30px;
  font-weight: 600;
  line-height: 58px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}

.list-center .second-title {
  letter-spacing: 0px;
  margin: 0px;
  min-width: 0px;
  font-size: 22px;
  font-weight: 600;
  line-height: 58px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}

.list-center .sub-title {
  color: #5e6d77;
  font-size: 14px;
  margin-bottom: 15px;
}


.line-hr {
  border: 1px solid #dfdfdf;
}

.center_search {
  margin-top: 2em;
}

.topbar-search {
  letter-spacing: 0px;
  font-size: 18px;
  font-weight: 300;
  color: black;
  font-family: Poppins,sans-serif;
}

.center-list-item .topbar-search .text {
  letter-spacing: 0px;
  margin: 0px;
  min-width: 0px;
  font-size: 20px;
  font-weight: 600;
  line-height: 58px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}

.center_wrap .center-list-item .topbar-search {
  display: flex;
  align-items: center;
}


.center_wrap .center-list-item .topbar-search .control {
  flex: 1 1 75%;
  color: #1a2b48;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
}

.center_wrap .center-list-item .topbar-search .control .item:first-child {
  border: none;
}

.center_wrap .center-list-item .topbar-search .control .item {
  display: flex;
  align-items: center;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid #a7a7a7;
}

.center_wrap .center-list-item .topbar-search .control .dropdown {
  /*flex: 1 1 55%;*/
  color: #1a2b48;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  margin-left: 10px;
}

.center_wrap .center-list-item .topbar-search .control a {
  color: #1a2b48;
  text-decoration: none;
  cursor: pointer;
}

.center_wrap .center-list-item .topbar-search .control .item {
  display: flex;
  align-items: center;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid #a7a7a7;
}

.center_wrap .center-list-item .topbar-search .control .item .item-title {
  line-height: normal;
}

.search_map .list-item .item-loop .service-review .review {
  margin-left: 10px;
}

.search_map .list-item .item-loop .service-review .review:after {
  left: -8px;
}

.search_map .list-center .item-loop .target-audience {
  top: 145px !important;
}

.center_wrap .center-list-item .topbar-search .control .item .dropdown .dropdown-toggle {
  padding: 7px 15px;
  border: 1px solid #ccc;
}

.center_wrap .center_search .center-list-item .list-item {
  margin-top: 15px;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list {
  border: 1px solid #dfdfdf;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  display: flex;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .thumb-image {
  overflow: hidden;
  height: 190px;
  background: #ccc;
  position: relative;
  flex: 0 0 30%;
  padding: 0;
}



.center_wrap .center_search .center-list-item .list-item .item-loop-list .thumb-image a img {
  transition: all .3s;
  max-width: 100%;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list a {
  text-decoration: none;
  transition: all .3s;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .thumb-image .service-wishlist {
  position: absolute;
  right: 0;
  z-index: 10;
  top: 0;
  color: #fff;
  padding: 20px;
  cursor: pointer;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .thumb-image .service-wishlist i {
  transition: all .3s;
  font-size: 18px;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-info {
  flex: 0 0 45%;
  padding: 15px;
  position: relative;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-info .item-title {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-bottom: 5px;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-info .item-title a {
  color: #1a2b50;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list a {
  text-decoration: none;
  transition: all .3s;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price {
  flex: 1;
  padding: 15px 15px 15px 0;
  position: relative;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  border-right: 1px solid #dfdfdf;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: #1a2b48;
  font-weight: 400;
  line-height: 25px;
  justify-content: flex-end;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .left {
  text-align: right;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .left .head-rating {
  display: block;
  line-height: 13px;
  margin-top: 8px;
  margin-bottom: 1px;
  font-weight: 500;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .left .text-rating {
  color: #5191FA;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .score, .center_wrap .center_search .center_content .g-header .review-score .head .score {
  background: #5191FA;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .score {
  position: relative;
  float: right;
  margin-left: 12px;
  padding: 7px 7px 0 9px;
  background: #5191fa;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  min-height: 38px;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .service-review-pc .head .score span {
  font-size: 14px;
  color: #fff;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list  .service-review-pc .head .score::after {
  border-bottom: 15px solid #5191FA;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list  .service-review-pc .head .score:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0;
  left: -8px;
  border: 15px solid transparent;
  border-bottom-color: #5191fa;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  left: -3px;
  position: relative;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  left: -3px;
  position: relative;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  left: -3px;
  position: relative;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right;
}

.center_wrap .center_search .center-list-item .list-item .item-loop-list .g-rate-price .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
}

.center-pagination {
  text-align: center;
  display: block;
  margin-top: 20px;
  margin-bottom: 40px;
}

.center-pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.center-pagination ul li {
  list-style: none;
  font-size: 16px;
  color: #768090;
  float: left;
  margin-right: 10px;
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}

.pagination .count-string {
  font-size: 14px;
  color: #768090;
  margin-top: 5px;
  display: block;
}

.center_wrap .center_search .filter {
  border: 1px solid #d7dce3;
  border-radius: 3px;
  margin-bottom: 30px;
}

.center_wrap .center_search .filter .filter-title {
  font-size: 16px;
  color: #1a2b48;
  margin-bottom: 5px;
  margin-top: 30px;
  font-weight: 500;
}

@media(max-width:766px) {
  .center_wrap .center_search .filter .filter-title {
    margin-bottom: 10px;
    margin-top: 15px
  }
}

.center_wrap .center_search .filter  .filter-title:before {
  background: #5191FA;
}

.center_wrap .center_search .filter  .filter-title:before {
  content: "";
  width: 3px;
  height: 20px;
  background: #5191fa;
  float: left;
  position: relative;
  top: -2px;
  margin-right: 17px;
}

.center_wrap .center_search .filter .g-filter-item {
  border: none;
  border-top: 1px solid #d7dce3;
  border-radius: 0;
  margin-bottom: 0;
  padding: 20px;
}

@media(max-width:766px) {
  .center_wrap .center_search .filter .g-filter-item {
    padding: 15px 20px
  }
}

.center_wrap .center_search .filter .g-filter-item .item-title {
  cursor: pointer;
  position: relative;
}

.center_wrap .center_search .filter .g-filter-item .item-title h3, .center_wrap .center_search .filter .g-filter-item .item-title h4 {
  font-size: 14px;
  color: #1a2b48;
  line-height: 23px;
  margin: 0;
  font-weight: 500;
}

.center_wrap .center_search .filter .g-filter-item .item-title .fa {
  font-size: 22px;
  color: #1a2b48;
  right: 0;
  top: 2px;
  position: absolute;
}

.center_wrap .center_search .filter .g-filter-item .item-content {
  margin-top: 20px;
}

@media(max-width:990px) {
  .center_wrap .center_search .filter .g-filter-item .item-content {
    display: none
  }
}

.center_wrap .center_search .filter .g-filter-item .item-content ul {
  list-style: none;
}

.center_wrap .search-checkbox {
  margin-bottom: 15px;
}

.center_wrap .search-checkbox label {
  position: relative;
  cursor: pointer;
  transition: all .3s;
  padding-left: 25px;
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
  margin-bottom: 0;
}

.center_wrap .search-checkbox input[type=checkbox] {
  display: none;
}

.center_wrap .search-checkbox input {
  margin-right: 5px;
}

.center_wrap .search-checkbox input[type=checkbox]+.checkmark, .center_wrap .search-checkbox input[type=checkbox]:checked+.checkmark {
  background-repeat: no-repeat!important;
  background-position: 50%;
}

.center_wrap .search-checkbox .checkmark {
  display: inline-block;
  height: 17px;
  left: 0;
  position: absolute;
  top: 0;
  width: 17px;
  border: 1px solid #a0a9b2;
  border-radius: 2px;
  background: #fff;
}

.center_wrap .search-checkbox input[type=checkbox]:checked+.checkmark:after {
  border: solid #5191FA;
  border-width: 0 2px 2px 0;
}

.center_wrap .search-checkbox input[type=checkbox]:checked+.checkmark:after {
  content: "";
  position: absolute;
  background-color: transparent;
  border-radius: 0;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #5191fa;
  border-width: 0 2px 2px 0;
  transform: rotate(
          45deg
  );
}

.center_wrap .center_search .filter .g-filter-item .item-content .btn-more-item {
  font-size: 14px;
  color: #5191fa;
  padding: 0;
  text-decoration: none;
}

.center_wrap .search-checkbox .fa-star {
  color: #fa5636;
  font-size: 15px;
  position: relative;
  top: -1px;
  margin-right: 3px;
}

.center_wrap .center_search .filter .g-filter-item .hide {
  display: none;
}

.center_wrap .center_search .filter .g-filter-item .item-title.e-close .fa {
  transform: rotate(
          180deg
  )!important;
}

.center_wrap .center_search .filter .g-filter-item .item-title .fa {
  font-size: 22px;
  color: #1a2b48;
  right: 0;
  top: 2px;
  position: absolute;
}




/*-------------------- END Search Result ------------ */

/*-------------------- 33. START Center Detail & Search ------------ */
@media (min-width: 1200px) {
  .container {
    max-width: 1350px;
  }
}

.center_wrap .center_detail .center_content .g-header {
  margin-top: 40px;
  margin-bottom: 10px;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  justify-content: space-between;
}

.center_wrap .center_detail .center_content .g-header .right {
  min-width: 230px;
}

.center_wrap .center_detail .center_content .g-header .star-rate {
  line-height: 16px;
}

.center_wrap .center_detail .center_content .g-header h1, .center_wrap .center_detail .center_content .g-header h2 {
  margin-top: 0;
  color: #1a2b48;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 0;
}

.center_wrap .center_detail .center_content .g-header .star-rate .fa-star {
  color: #fa5636;
  font-size: 15px;
  position: relative;
  margin-right: 3px;
}

.center_wrap .center_detail .center_content .g-header .address {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.center_wrap .center_detail .center_content .g-header h1, .center_wrap .center_detail .center_content .g-header h2 {
  margin-top: 0;
  color: #1a2b48;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 0;
}

.center_wrap .center_detail .center_content .g-header .right {
  min-width: 230px;
}

.center_wrap .center_detail .center_content .g-header .review-score .head {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 22px;
  color: #1a2b48;
  font-weight: 400;
  line-height: 25px;
  justify-content: flex-end;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .left {
  text-align: right;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .left .head-rating {
  display: block;
  line-height: 13px;
  margin-top: 8px;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .left .text-rating {
  color: #5191FA;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .left .text-rating {
  color: #5191fa;
  font-size: 14px;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .left {
  text-align: right;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .score {
  background: #5191FA;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .score {
  position: relative;
  float: right;
  margin-left: 20px;
  padding: 10px 10px 0;
  background: #5191fa;
  border-radius: 4px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  min-height: 45px;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .score span {
  font-size: 14px;
  color: #fff;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .score:after {
  border-bottom: 25px solid #5191FA;
}

.center_wrap .center_detail .center_content .g-header .review-score .head .score:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0;
  left: -8px;
  border: 15px solid transparent;
  border-bottom: 25px solid #5191fa;
}

.center_wrap .center_detail .center_content .g-header .review-score .foot {
  color: #5e6d77;
  font-size: 14px;
  text-align: right;
}

.center_wrap .center_detail .g-gallery {
  margin: 10px 0;
  position: relative;
  min-height: 75px;
}

.center_wrap .center_detail .g-gallery .social {
  position: absolute;
  right: 30px;
  top: 30px;
}

.center_wrap .center_detail .g-gallery .social .social-share {
  display: inline-flex;
  position: relative;
}

.center_wrap .center_detail .g-gallery .social .social-share .social-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 43, 72, .7);
  color: #fff;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  margin-right: 10px;
}

.center_wrap .center_detail .g-gallery .social .social-share .share-wrapper {
  visibility: hidden;
  opacity: 0;
  padding-left: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  padding-top: 5px;
  transition: all .3s;
}

.center_wrap .center_detail .g-gallery .social .social-share .share-wrapper li {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.center_wrap .center_detail .g-gallery .social .social-share .share-wrapper li a {
  color: #1a2b48;
}

.center_wrap .center_detail .g-gallery .social .social-share a {
  text-decoration: none;
}

.center_wrap .center_detail .g-gallery .social .service-wishlist {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 43, 72, .7);
  color: #fff;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.center_wrap .center_detail .center_content .g-overview {
  margin-bottom: 30px;
  margin-top: 20px;
  border-top: 1px solid #d7dce3;
  padding-top: 20px;
}

.center_wrap .center_detail .center_content h2 {
  font-size: 1.5rem;
}

.center_wrap .center_detail .center_content h1 {
  font-size: 1.5rem;
}

.center_wrap .center_detail .center_content h3 {
  font-size: 1.5rem;
}

.center_wrap .center_detail .center_content .g-overview .description {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
  position: relative;
}

.center_wrap .center_detail .center_content .g-overview h4, .center_wrap .center_detail .center_content .g-overview strong {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 500;
  margin-bottom: 30px;
}

.center_wrap .center_detail .center_content .g-overview ul {
  padding-left: 25px;
}

.center_wrap .center_detail .center_content .g-overview ul li {
  font-size: 14px;
  color: #5e6d77;
  margin-bottom: 20px;
  list-style: none;
}

.center_wrap .center_detail .center_content .g-overview ul li:before {
  content: "";
  border: 1px solid #5191fa;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 20px;
}

.fa-heart-o:before {
  content: "\f08a";
}

.center_wrap .center_detail .center_content .line-hr {
  width: 100%;
  height: 1px;
  background: #eaeef3;
  margin-top: 30px;
  margin-bottom: 30px;
}

.center_wrap .center_detail .center_content .g-location .location-title {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.center_wrap .center_detail .center_content .g-location .location-title .address {
  color: #5e6d77;
}

.center_wrap .center_detail .center_banner .btn-group .has-icon {
  display: flex;
  align-items: center;
}
.center_wrap .center_detail .center_banner .btn-group .btn {
  margin-left: 10px;
  background: rgba(26,43,72,.5);
  font-size: 14px;
  color: #fff;
  padding: 10px 15px;
}

.center_wrap .center_detail .g-gallery .social .social-share:hover .share-wrapper {
  visibility: visible;
  opacity: 1;
}

.center_wrap .center_detail .center_content .g-gallery .social .social-share .share-wrapper li a {
  color: #1a2b48;
}
.center_wrap .center_detail .center_content .g-gallery .social .social-share a {
  text-decoration: none;
}

.center_wrap .center_detail .center-related-widget {
  margin-top: 30px;
}

.center_wrap .center_detail .center-related-widget .heading {
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  font-size: 18px;
  color: #1a2b48;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.center_wrap .center_detail .center-related-widget .heading:after {
  background: #5191FA;
}

.center_wrap .center_detail .center-related-widget .heading:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 3px;
  height: 30px;
  background: #5191fa;
}

.center_wrap .center_detail .center-related-widget .item {
  margin-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
}

.center_wrap .center_detail .center-related-widget .item .media .media-left {
  width: 100px;
  padding-right: 15px;
}

.center_wrap .center_detail .center-related-widget .item .media .media-body .star-rate {
  line-height: 16px;
}

.center_wrap .center_detail .center-related-widget .item .media .media-body .media-heading {
  margin-top: 5px;
  font-size: 14px;
}

.center_wrap .center_detail .center-related-widget .item .media .media-body .price-wrapper {
  margin-top: 8px;
  font-size: 12px;
  color: #5e6d77;
}

.center_wrap .center_detail .center-related-widget .item .media .media-body .star-rate .fa-star {
  color: #fa5636;
  font-size: 12px;
  position: relative;
}

.center_wrap .center_detail .center-related-widget .item .media .media-body .media-heading {
  margin-top: 5px;
  font-size: 14px;
}

.center_wrap .center_detail .center_banner {
  background-color: #fff !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}

.center_wrap .center_detail .center_banner .center_gallery {
  height: 100px;
  position: relative;
}

@media only screen and (max-width: 479px){
  .center_wrap .center_detail .center_banner .center_gallery {
    display: none;
  }
}

.center_wrap .center_detail .center_banner .btn-group {
  position: absolute;
  bottom: 30px;
  right: 0;
}

.center_wrap .center_detail .center_content .g-attributes h3 {
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7dce3;
  position: relative;
  font-size: 18px;
  color: #1a2b48;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.center_wrap .center_detail .center_content .g-attributes h3:after {
  background: #5191FA;
}

.center_wrap .center_detail .center_content .g-attributes h3:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 3px;
  height: 30px;
  background: #5191fa;
}

.center_wrap .center_detail .center_content .g-attributes {
  margin-top: 30px;
}

.center_wrap .center_detail .center_banner .btn-group .btn:hover {
  background: #1a2b48;
}

.center_wrap .center_detail .center_content .g-overview ul li:before {
  content: "";
  border: 1px solid #5191fa;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 20px;
}

.business-widget {
  background-color: #fcfcfc;
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-bottom: 0;
}

.section-search {
  min-height: 450px;
  background-size: 100% auto;
  position: relative;
  background-blend-mode: Darken;
  padding: 80px 0;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.banner-wrapper .banner-header {
  margin-top: 50px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 479px) {
  .banner-wrapper .banner-header {
    margin-top: 0px;
  }
}

.search-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-group {
  margin-bottom: 1.25rem;
}

.search-box .form-control {
  border: 1px solid #ccc;
  box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%);
  border-radius: 5px;
  padding-right: 35px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.field-icon-video {
  margin-right: 10px;
}

@media(min-width: 1024px){
  .g-all-attribute.is_mobile {
    display:none
  }

  .g-all-attribute.is_pc {
    display:block
  }
}

@media(max-width: 1023px){
  .g-all-attribute.is_mobile {
    display:block
  }

  .g-all-attribute.is_pc {
    display:none
  }
}

.owner-info {
  background: #fff;
  border-radius: 3px;
  padding: 15px;
  border: 1px solid #d7dce3;
  margin-top: 40px;
}

.owner-info .media-left a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-cover {
  background-size: cover;
  background-position: 50%;
}

.owner-info .media-heading {
  font-weight: 500;
  font-size: 14px;
  color: #1a2b48;
  margin-top: 5px;
  margin-bottom: 5px;
}

.owner-info p {
  margin-bottom: 5px;
  color: #5e6d77;
  font-size: 12px;
}

.control-map-group #map_content {
  margin-right: 0px;
  height: 300px;
}


/*-------------------- END Center Detail & Search ------------ */

/*------------------------ START Team ------------------- */

.team_section {
  background-color: #fbe5fd;
  padding-top: 3em;
  padding-bottom: 3em;
  margin-bottom: 3em;
}

.team_member {
  display: flex;
  /*flex-direction: column;*/
  justify-content: left;
  align-items: center;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 2em;
  background-color: #ffffff;
  border-radius: 2%;
}

.team_member img{
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

section#team {
  margin-top: 2em;
}

.team_members {
  margin-top: 0em;
}

.team_members div {
  padding: 10px;
  padding-left: 15px;
  height: 130px;
  margin-bottom: 10px;
}

.team_section .team_members .team_member:hover img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.team_member .overlay {
  padding: 1em;
}

.team_member .overlay h3 {
  font-weight: 300;
  padding-top: 20px;
}

.listing-main-content {
  padding-left: 0em;
}

@media only screen and (max-width: 479px){
  .listing-main-content {
    padding-top: 30px;
  }

  div#listing-video {
    padding-top: 30px;
  }

  div#listing-map {
    padding-top: 30px;
  }

  div#listing-hours {
    margin-top: 20px;
  }

  div#listing-business-info {
    margin-top: 20px;
  }

  div#listing-center-images {
    margin-top: 20px;
  }

  div#listing-maps {
    padding-top: 30px;
  }
}

.team_member_profession {
  font-size: 12px;
  color: darkgrey;
  margin-bottom: 0px;
}

.team_member_role {
  font-size: 12px;
  text-transform: none;
  color: darkgrey;
  margin-bottom: 0px;
}


/*------------------------ START - Image Gallery ------------------- */

.gallery_images_section {
  margin-top: 2em;
}

.revGallery-anchor, .gal-overlay, .nak-gallery-poster{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.revGallery-anchor{
  overflow: hidden;
  position: relative;
  width: calc(100% / 5);
  display: block;
  float: left;
  border: 5px solid #e9e9e9;
}

.gal-overlay{
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(27,27,27, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  transition: background .4s ease;
  -webkit-transition: background .4s ease;
}

.revGallery-anchor:hover .gal-overlay{
  background: rgba(27,27,27, 0);
}

.nak-gallery {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.nak-gallery-poster{
  padding-bottom:100%;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
}

.revGallery-anchor:hover .nak-gallery-poster{
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
}

.img-responsive{
  display:none;
}

.button-gallery{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  width: 200px;
  height: 48px;
  border: 1px solid rgba(0,169,157,1);
  background-color: rgba(0,169,157,1);
  border-radius: 2px;
  color: #fff;
  letter-spacing: 2px;
}

.button-gallery:hover {
  background-color: #363636;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.button-gallery:active,
.button-gallery.is-checked {
  background-color: #28F;
}

.button-gallery.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button-gallery:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

.revGallery-anchor-width1{
  width: 40%
}

.revGallery-anchor-width2{
  width: 30%
}

.revGallery-anchor-width3{
  width: 20%
}

.nak-gallery-height1{
  padding-bottom: 400px
}

.nak-gallery-height2{
  padding-bottom: 300px
}

.nak-gallery-height3{
  padding-bottom: 200px
}

.preloader{
  display: none;
}

.preloaderStyle{
  background: red;
  width: 100%;
  height: 100px;
}

.site-filters li input {
  display: none;
}
.site-filters.center {
  text-align: center;
}
.site-filters {
  margin-bottom: 30px;
}
.clearfix:after, .clearfix:before {
  content: "";
  display: table;
}
.site-filters.center ul {
  display: inline-block;
  margin: auto;
}
.site-filters ul {
  margin: 0;
  list-style: none;
}
.site-filters li.button-gallery-menu {
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: 0!important;
}

.site-filters li {
  display: inline-block;
  padding: 0;
  margin-bottom: 3px;
}
.button-gallery-menu {
  -moz-user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  padding: 8px 16px;
  text-align: center;
  transition: all .2s ease-in-out 0s;
  vertical-align: middle;
  white-space: nowrap;
}
.site-filters.style1 li a {
  color: #000316;
  font-family: montserrat;
  font-weight: 500;
  margin: 0;
  padding: 0 15px;
  position: relative;
}
.site-filters a {
  margin: 0 5px 5px 0;
}
.site-filters.style1 li a:after {
  background-color: #000316;
  content: "";
  height: 100%;
  opacity: .2;
  position: absolute;
  right: -2px;
  top: 0;
  transform: skew(
          -20deg
          ,
          -20deg
  );
  -moz-transform: skew(-20deg,-20deg);
  -webkit-transform: skew(
          -20deg
          ,
          -20deg
  );
  -o-transform: skew(-20deg,-20deg);
  width: 2px;
}
.site-filters.style1 li.active a {
  color: #ff5ea5;
}

/*------------------------ START - Description ------------------- */

@media (min-width: 1200px) {
  .listing-main-content > div {
    margin-bottom: 30px;
  }

  .listing-main-content > div {
    margin: 0 0 20px;
    background: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 9%);
    box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 9%);
  }


  .listing-main-content > div .widget-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    padding: 15px 30px;
    border-bottom: 1px solid #f1f3f7;
  }

  .listing-main-content > div .widget-title + div {
    padding: 30px;
  }

  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Muli", Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    color: #1b2032;
  }
}

.sidebar-detail-job .widget.listing-hours .listing-hours-inner1 {
  display: block;
}

.sidebar-detail-job .listing-day {
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-detail-job .listing-day .day {
  display: inline-block;
  text-transform: capitalize;
  float: left;
}

.sidebar-detail-job .listing-day .bottom-inner {
  text-align: right;
  overflow: hidden;
}

.listing-hours .widget-title .hour-present {
  font-weight: normal;
  margin-top: 6px;
  font-size: 14px;
  margin-left: 5px;
}

.sidebar .widget, .apus-sidebar .widget {
  background: #fff;
  padding: 0 20px 20px;
  -webkit-box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 9%);
  box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 9%);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
}
.sidebar .widget .widget-title, .sidebar .widget .widgettitle, .apus-sidebar .widget .widget-title, .apus-sidebar .widget .widgettitle {
  padding: 20px 0;
}
.sidebar .widget .widget-title, .sidebar .widget .widgettitle, .apus-sidebar .widget .widget-title, .apus-sidebar .widget .widgettitle {
  padding: 15px 0;
  border-bottom: 1px solid #f1f3f7;
  margin: 0 0 30px;
}
@media only screen and (max-width: 479px){
  .sidebar .widget .widget-title, .sidebar .widget .widgettitle, .apus-sidebar .widget .widget-title, .apus-sidebar .widget .widgettitle {
    padding: 30px 0;
  }
}
.sidebar-detail-job .widget.listing-hours .listing-hours-inner1 {
  display: block;
}
.sidebar-detail-job .listing-day {
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-detail-job .listing-day.current {
  color: #ffa737;
}
.sidebar-detail-job .listing-day {
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar .widget .widget-title > i, .sidebar .widget .widgettitle > i {
  margin-right: 15px;
}
.sidebar .widget .widget-title > i, .sidebar .widget .widgettitle > i {
  line-height: 1;
  color: #5BB318;
  font-weight: bold;
  margin-right: 10px;
}

.sidebar-detail-job .listing-day .bottom-inner {
  text-align: right;
  overflow: hidden;
}

.widget-title, .wpb_content_element .widgettitle, .widget .wpb_heading, .widget .widget-title, .widget .widgettitle {
  position: relative;
  line-height: 1;
  font-size: 18px;
  margin: 0 0 15px;
}

.listing-hours .widget-title .hour-present {
  font-weight: normal;
  margin-top: 6px;
  font-size: 14px;
  margin-left: 5px;
}

.listing-hours .widget-title .hour-present .time-items {
  margin-left: 5px;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

p {
  margin: 0 0 25px;
}

body {
  font-family: "Muli", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #626a70;
  background: #fff;
  overflow-x: hidden;
  /*background: #f9fafc;*/
}

.pull-right {
  float: right !important;
}

@media only screen and (max-width: 479px){
  .pull-right {
    float: left !important;
  }
}

#listing-hours .widget-title .listing-time.closed {
  color: #ef2f24;
}

#listing-hours .widget-title .listing-time {
  color: #5cb85c;
  text-transform: capitalize;
}

@media only screen and (max-width: 479px){
  #listing-hours .widget-title .listing-time {
    padding-top: 5px;
  }
}

.close-text {
  color: #ef2f24;
}

.direction-map.active, .direction-map.active i, .direction-map:hover, .direction-map:hover i {
  color: #ffa737;
}

.direction-map {
  margin-right: 5px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #33393d;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.direction-map:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 479px){
  .direction-map:last-child {
    padding-top: 10px;
  }
}

.direction-map i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 7px;
  color: #021f4a;
}

.top-nav-m {
  position: absolute;
  z-index: 9;
  top: -38px;
  right: 20px;
}

@media only screen and (max-width: 479px){
  .top-nav-m {
    position: absolute;
    z-index: 9;
    top: -38px;
    right: 50px;
  }

  .listing-map .widget-title {
    height: 50px;
  }

  .p-relative {
    padding-top: 10px;
  }
}

.p-relative {
  position: relative !important;
  z-index: 0;
}

.company_video_inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.photos-wrapper {
  margin-bottom: 15px;
}

.widget-description {
  margin-left: 20px;
}

div#listing-team {
  padding-bottom: 2em;
}

.widget-title i {
  color: #5BB318;
}

.map-direction i{
  color: #000000;
}

@media (min-width: 1200px){
  .sidebar .widget, .apus-sidebar .widget {
    margin-bottom: 30px;
    padding: 0 30px 30px;
  }

  .direction-map {
    margin-right: 15px;
  }

  .top-nav-m {
    right: 30px;
    top: -35px;
  }

  .listing-main-content > div .widget-title i {
    margin-right: 10px;
  }

  .photos-wrapper {
    margin-bottom: 30px;
    padding-left: 3em;
    margin-right: 3em;
  }
}


.info-featured {
  font-family: Nunito, serif;
  font-size: 18px;
  color: black;
}

.info-featured span {
  margin-left: 12px;
}

.info-target-audience-large {
  font-family: Nunito, serif;
  font-size: 18px;
  color: black;
  margin-left: 0px;
}

.info-target-audience-large span {
  margin-left: 8px;
}

.info-target-audience {
  font-family: Nunito, serif;
  font-size: 18px;
  color: black;
  margin-left: 5px;
}

.info-target-audience span {
  margin-left: 15px;
}

/*------------------------ START - Header - Slider ------------------- */

.header-center {
  border-top: #e9ecef;
  border-bottom: #e9ecef;
  background-color: #e9ecef;
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.header-center-info-left {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  flex-grow: 1;
  padding: 40px;
  max-width: 500px;
  overflow-wrap: break-word;
}

@media (min-width: 1200px){
  .header-center-info-left {
    max-width: 700px;
    padding-top: 56px;
    padding-left: 56px;
    padding-right: 56px;
  }
}

.header-center-name{
  letter-spacing: 0px;
  margin: 0px;
  min-width: 0px;
  font-size: 40px !important;
  font-weight: 700;
  line-height: 58px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}

.header-center-address{
  font-size: 20px;
  font-weight: 400;
  color: black;
}


.revlink {
  display: block;
  line-height: 50px;
  border: none !important;
  color: #fff !important;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  height: 50px;
  letter-spacing: 1px;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  background-color: #2b2459;
  text-align: center;
  border-radius: 5px;
  margin-top: 2.5em;
  width: 300px;
}

.revlink.red {
  background-color: #5BB318;
}

.revlink.grey{
  background-color: #FFFFFF;
  color: #000000 !important;
  border: #0c0c0c 1px solid !important;
}

.revlink:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: 100;
  display:block;
  content:'\e804';
  position: absolute;
  right: 28px;
  top: -1px;
  font-size: 18px;
  opacity: 0;
}

.revlink:hover:after {
  right: 20px;
  opacity: 1;
}

.revlink:hover {
  padding-right: 40px !important;
  margin-left: -5px !important;
}

.ratings-box {
  background: #f0151f;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  margin-right: 5px;
  padding: 3px 10px;
  color: #fff;
  float: left;
  border-radius: 2px;
}

.header-star-rate {
  margin-top: 1em;
  color: #000000;
}

.container-center {
  margin-top: 2em;
  margin-left: 2.5em;
  margin-right: 2.5em;
}

@media only screen and (max-width: 479px){
  .container-center {
    margin-top: 2em;
    margin-left: 1.5em;
    margin-right: 1.5em;
  }

  .widget-title i {
    margin-left: 8px;
    margin-right: 10px;
  }
}


a#services {
  margin-top:40px;
}

button[disabled=disabled], button:disabled {
  background-color: #cecece !important;
}

/* Fullscreen Slider
----------------------------------------------------------- */
.fullScreenSlider { position: relative;}
.fullScreenSlider .sliderHomeBullets .rsBullets .rsBullet span { background: #fff; border-color: #fff;}
.fullScreenSlider .sliderHomeBullets .rsBullets .rsBullet.rsNavSelected span { background-color: transparent; }

.fullScreenSlider .sliderHomeBullets .textBlock { color: #fff;}
.fullScreenSlider .sliderHomeBullets .order a { border: 1px solid #fff; color: #fff;  background-color: rgba(255,255,255,0.2); }
.fullScreenSlider .sliderHomeBullets .order a:hover { background-color: rgba(255,255,255,0.5); color: rgba(0,0,0,0.5); }
.fullScreenSlider .sliderHomeBullets .fonBlock { position: absolute; z-index: 2; left: 0;top: 0; width: 100%; height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
}
.fullScreenSlider .sliderHomeBullets .slideContent { height:100%; }

/* New Fullscreen Sliders */
.videoBackground.overlay:after { content: ''; position:absolute; left:0; top:0; bottom:0; right:0; background-color:rgba(0,0,0,0.3); z-index:3; }
.videoBackground.overlay:after { background-image:url(../images/bg/texture_7.png); }

/* Revolution Slider styles */
.tp-bullets.simplebullets.round .bullet {
  background: transparent;
  height: 9px;
  width: 9px;
  margin-left: 8px;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.round .bullet:hover { background-color: rgba(255, 255, 255, 1); }
.tp-leftarrow.default,
.tp-rightarrow.default {
  background: rgba(255, 255, 255, 0.1);
  height: 70px;
  position: relative;
  width: 70px;
  text-align: center;
}
.tp-leftarrow.default:hover,
.tp-rightarrow.default:hover { background: rgba(255, 255, 255, 0.2); }
.tp-leftarrow.default:before,
.tp-rightarrow.default:before {
  font-family: Fontello;
  font-size: 18px;
  line-height: 70px;
  height: 70px;
  width: 70px;
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
}
.tp-leftarrow.default:before { content: '\e803'; }
.tp-rightarrow.default:before { content: '\e804'; }

.tp-leftarrow.hidearrows { left:-100px !important; }
.tp-rightarrow.hidearrows { right:-100px !important; }

.mainslider_1 .tp-caption a{
  color:#ff7302;
  text-shadow:none;
  -webkit-transition:all 0.2s ease-out;
  -moz-transition:all 0.2s ease-out;
  -o-transition:all 0.2s ease-out;
  -ms-transition:all 0.2s ease-out
}
.mainslider_1 .tp-caption a:hover{
  color:#ffa902
}

.mainslider_1 .tp-caption.trxmiddledark1,
.mainslider_1 .trxmiddledark1{
  font-size:35px;
  line-height:44px;
  font-weight:300;
  color:#2b2459;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  font-style:italic;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_1 .tp-caption.trxbigwhite1,
.mainslider_1 .trxbigwhite1{
  font-size:50px;
  line-height:90px;
  font-weight:600;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_1 .tp-caption.trxbigblack1,
.mainslider_1 .trxbigblack1{
  font-size:50px;
  line-height:90px;
  font-weight:600;
  color:#000000;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_1 .tp-caption.trx-middle-white,
.mainslider_1 .trx-middle-white{
  font-size:60px;
  line-height:75px;
  font-weight:300;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_1 .tp-caption.trx-middle-dark,
.mainslider_1 .trx-middle-dark{
  font-size:14px;
  line-height:18px;
  font-weight:400;
  color:#2b2459;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Arimo",sans-serif;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:0.5px;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_1 .tp-caption.trx-button,
.mainslider_1 .trx-button{
  font-size:12px;
  line-height:50px;
  height:50px;
  font-weight:600;
  letter-spacing:1px;
  font-family:"Arimo",sans-serif;
  color:rgb(90,98,102);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  text-shadow:none;
  text-align:center;
  text-transform:uppercase;
  border-width:0px;
  border-color:rgb(255,255,255);
  border-style:none;
}

.mainslider_2 .tp-caption.trxmiddledark1,
.mainslider_2 .trxmiddledark1{
  font-size:35px;
  line-height:44px;
  font-weight:300;
  color:#2b2459;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  font-style:italic;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trxbigwhite1,
.mainslider_2 .trxbigwhite1{
  font-size:80px;
  line-height:90px;
  font-weight:600;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-middle-white,
.mainslider_2 .trx-middle-white{
  font-size:60px;
  line-height:75px;
  font-weight:300;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-middle-dark,
.mainslider_2 .trx-middle-dark{
  font-size:14px;
  line-height:18px;
  font-weight:400;
  color:#2b2459;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Arimo",sans-serif;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:0.5px;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-button,
.mainslider_2 .trx-button{
  font-size:12px;
  line-height:50px;
  height:50px;
  font-weight:600;
  letter-spacing:1px;
  font-family:"Arimo",sans-serif;
  color:rgb(90,98,102);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  text-shadow:none;
  text-align:center;
  text-transform:uppercase;
  border-width:0px;
  border-color:rgb(255,255,255);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-middle-red,
.mainslider_2 .trx-middle-red{
  font-size:35px;
  line-height:44px;
  font-weight:300;
  font-family:"Playfair Display",sans-serif;
  color:rgb(228,68,116);
  font-style:italic;
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  text-shadow:none;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-middle-white-1,
.mainslider_2 .trx-middle-white-1{
  font-size:50px;
  line-height:65px;
  font-weight:300;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Playfair Display",sans-serif;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}
.mainslider_2 .tp-caption.trx-small-red,
.mainslider_2 .trx-small-red{
  font-size:14px;
  line-height:18px;
  font-weight:400;
  color:#e44474;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-shadow:none;
  font-family:"Arimo",sans-serif;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:0.5px;
  border-width:0px;
  border-color:rgb(0,0,0);
  border-style:none;
}

@charset "UTF-8";

/*----------------- 9. Slick Slider -----------------------*/

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  box-shadow: 1px 6px 14px rgba(0,0,0,0.2);
  background: #fff;
  border-radius: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  background: #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #0de0fe;
  color: #fff;
  opacity: 1;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #fff;
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #383838;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 0;
  z-index:1;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: 0;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}

/*-----------------
	15. Home
-----------------------*/
.section-search {
  min-height: 450px;
  background-size: 100% auto;
  position: relative;
  background-blend-mode: Darken;
  padding: 80px 0;
}
.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 500;
}
.section-header .sub-title {
  color: #757575;
  font-size: 16px;
  max-width: 600px;
  margin: 15px auto 0;
}
.section-header p {
  color: #757575;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 15px;
}
.banner-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.banner-wrapper .banner-header {
  margin-bottom: 30px;
}
.banner-wrapper .banner-header h1 {
  margin: 0px;
  margin-bottom: 10px;
  letter-spacing: 0px;
  min-width: 0px;
  font-size: 35px;
  font-weight: 600;
  line-height: 58px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}
.banner-wrapper .banner-header p {
  color: #000000;
  font-size: 20px;
  margin-bottom: 0;
}
.search-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-box .form-control {
  border: 1px solid #ccc;
  box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
  border-radius: 5px;
  padding-right: 35px;
}
.search-box .search-location {
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  margin-right: 10px;
  position: relative;
  width: 350px;
}

.search-box .search-info {
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  margin-right: 12px;
  position: relative;
  width: 350px;
}

.search-box .search-btn {
  width: 40px;
  -ms-flex: 0 0 40px;
  flex: 0 0 120px;
  height: 40px;
}
.search-box .search-btn span {
  /*display: none;*/
  font-weight: 500;
}
.search-box .form-text {
  color: #000000;
  font-size: 15px;
  text-align: left !important;
}

input#txtlocation, input#txtcenter{
  font-size: 15px;
}

.section-specialities {
  background-color: #fff;
  padding: 80px 0;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 5px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 5px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #C0C0C0;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  display: none;
  font-family: 'slick';
  font-size: 76px;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  content: '-';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  background-color: #0de0fe;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #0de0fe;
}
.slick-slide {
  outline: none !important;
}
.specialities-slider .slick-slide {
  display: block;
  padding: 0 12px;
  margin-right: 0;
  margin-left: 20px;
  margin-top: 10px;
}
.specialities-slider .slick-dots {
  margin-top: 44px;
  position: unset;
}
.speicality-img {
  position: relative;
  height: 150px;
  box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  width: 150px;
  background: #fff;
}
.speicality-img img {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.speicality-img span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
  box-shadow: 1px 6px 14px rgba(0,0,0,0.2);
  border-radius: 50%;
  padding: 5px;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
.speicality-img span i {
  font-size: 15px;
  color:#0de0fe;
}
.speicality-item p {
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 0;
}
.section-doctor {
  background-color: #f8f9fa;
  padding: 80px 0;
}
.section-doctor .section-header {
  margin-bottom: 30px;
}
.section-doctor .section-header p {
  margin-top: 10px;
}
.doctor-slider .slick-slide{
  display: block;
  margin-right: 0;
  padding: 10px;
  width: 280px;
}
.profile-widget {
  background-color: #fff;
  /*border: 1px solid #f0f0f0;*/
  border-radius:4px;
  /*margin-bottom:30px;*/
  position:relative;
  -webkit-transition:all .3s ease 0s;
  -moz-transition:all .3s ease 0s;
  -o-transition:all .3s ease 0s;
  transition:all .3s ease 0s;
  padding: 15px;
  height: 400px;
}
.doc-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  text-align:center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-img img {
  border-radius: 4px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  -ms-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  -o-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  -webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  width: 100%;
  zoom: 0.3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-img:hover img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}
.profile-widget .fav-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  border-radius: 3px;
  color: #2E3842;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.profile-widget:hover .fav-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.profile-widget .fav-btn:hover {
  background-color: #fb1612;
  color: #fff;
}
.pro-content {
  padding: 15px 0 0;
}
.pro-content .title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}
.profile-widget .pro-content .title a {
  display: inline-block;
}
.profile-widget .verified {
  color: #28a745;
  margin-right: 3px;
}
.profile-widget p.speciality {
  font-size: 13px;
  color: #757575;
  margin-bottom: 5px;
  min-height: 40px;
}
.rating {
  list-style: none;
  margin: 0 0 7px;
  padding: 0;
  width: 100%;
}
.rating i {
  color: #ffffff;
}
.rating i.filled {
  color: yellow;
}
.profile-widget .rating {
  color: #757575;
  font-size: 14px;
  margin-bottom: 15px;
}
.profile-widget .rating i {
  font-size: 14px;
}
.available-info {
  font-size: 13px;
  color: #757575;
  font-weight: 400;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  height: 50px;
}
.available-info li + li {
  margin-top: 5px;
}
.available-info li i {
  width: 22px;
}
.row.row-sm {
  margin-left: -3px;
  margin-right: -3px;
}
.row.row-sm > div {
  padding-left: 3px;
  padding-right: 3px;
}
.view-btn {
  color: #5BB318;
  font-size: 13px;
  border: 1px solid #5BB318;
  text-align: center;
  display: block;
  font-weight: normal;
  padding: 0px;
  margin-top: 10px;
  margin-right: 10px;
}
.view-btn:hover, .view-btn:focus {
  background-color: #5BB318;
  color: #fff;
}
.book-btn {
  border: 1px solid #5BB318;
  color: #5BB318;
  font-size: 13px;
  text-align: center;
  display: block;
  font-weight: normal;
  padding: 0px;
  margin-top: 10px;
  margin-left: 10px;
}

.book-btn:hover, .book-btn:focus {
  background-color: #5BB318;
  border-color: #5BB318;
  color: #fff;
}
.book-btn .profile-widget {
  box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.about-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}
.about-content p + p {
  margin-top: 20px;
}
.about-content a {
  background-color: #0de0fe;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  min-width: 150px;
  padding: 15px 20px;
  text-align: center;
}
.about-content a:hover, .about-content a:focus {
  background-color: #01cae4;
  border-color: #01cae4;
  color: #fff;
}
.section-features {
  background-color: #fff;
  padding: 80px 0;
}
.feature-item img {
  border-radius: 100%;
  box-shadow: 1px 6px 14px rgba(0,0,0,0.2);
  height: 115px;
  object-fit: cover;
  width: 115px;
}
.feature-item p {
  font-weight: 500;
  margin: 20px 0 0;
}
.features-slider .slick-slide {
  margin-left: 62px;
}
.features-slider .slick-center {
  opacity: 1;
  transform: scale(1.20);
}
.features-slider .slick-list {
  padding: 16px 50px !important
}
.features-slider .slick-dots {
  margin-top: 44px;
  position: unset;
}
.section-blogs {
  background-color: #f8f9fa;
  padding: 80px 0;
}
.view-all .btn {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: .625rem .75rem;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #adb5bd;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #cad1d7;
  border-radius: .25rem;
}

.input-group-text:hover{
  color: #5BB318;
}

/*-----------------
	43. Responsive
-----------------------*/

@media only screen and (max-width: 479px){
  .section-search {
    min-height: 410px;
    padding-top: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .section-search div {
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-hero {
    height: auto !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px;
  }

  .center_wrap {
    padding-top: 80px;
  }

  .center_wrap .center_detail .center_content .g-header {
    margin-top: 40px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    justify-content: center;
  }

  .center_wrap .center_detail .center_content .g-header .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .center_wrap .center_detail .center_content .g-header .right {
    min-width: 230px;
    display: flex;
    margin-top: 20px;
    justify-content: center;
  }

  .container-fluid {
    padding-left: 0px !important;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 575.98px){

  .search-box form {
    display: block;
  }

  .search-box .search-location {
    width: 100%;
    -ms-flex: none;
    flex: none;
  }

  .search-box .search-info {
    width: 100%;
    -ms-flex: none;
    flex: none;
  }

}

@media only screen and (max-width: 767.98px){

  .section-search, .section-doctor, .section-features {
    padding: 50px 0;
  }

  .section-search {
    background: #f9f9f9;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .search-box {
    max-width: 535px;
    margin: 0 auto;
  }

  .search-box form {
    -ms-flex-direction: column;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
  }

  .search-box .search-location {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .search-box .search-info {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .search-box .search-btn {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-height: 46px;
    width: 100%;
  }
}

@media only screen and (max-width: 991.98px) {

  .section-search {
    min-height: 330px;
  }

  .banner-wrapper {
    max-width: 720px;
  }

  .search-box .search-info {
    -ms-flex: 0 0 410px;
    flex: 0 0 410px;
    width: 410px;
  }
}

@media only screen and (max-width: 1199px){

  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

}


/*-----------------
	43. Responsive
-----------------------*/

@media only screen and (min-width:768px) {
  .avatar-xxl {
    width: 8rem;
    height: 8rem;
  }
  .avatar-xxl .border {
    border-width: 4px !important;
  }
  .avatar-xxl .rounded {
    border-radius: 12px !important;
  }
  .avatar-xxl .avatar-title {
    font-size: 42px;
  }
  .avatar-xxl.avatar-away:before,
  .avatar-xxl.avatar-offline:before,
  .avatar-xxl.avatar-online:before {
    border-width: 4px;
  }
}
@media (min-width: 992px) {
  .main-nav > li {
    margin-left: 30px;
  }
  .main-nav > li:last-child {
    margin-left: 0;
  }
  .main-nav li {
    display: block;
    position: relative;
  }
  .main-nav > li > a {
    line-height: 85px;
    padding: 0 !important;
  }
  .main-nav > li > a > i {
    font-size: 12px;
    margin-right: 3px;
  }
  .main-nav li > ul {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px  rgba(0, 0, 0, 0.1);
    display: block;
    font-size: 14px;
    right: 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    padding: 0;
    position: absolute;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    top: 100%;
    visibility: hidden;
    z-index: 1000;
  }
  .main-nav li .submenu::before {
    border: 7px solid #fff;
    border-color: transparent transparent #fff #fff;
    box-shadow: -2px 2px 2px -1px rgba(0, 0, 0, 0.1);
    content: "";
    right: 45px;
    position: absolute;
    top: 2px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .main-nav li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .main-nav .has-submenu.active > a {
    color: #09dca4;
  }
  .main-nav .has-submenu.active .submenu li.active > a {
    color: #09dca4;
  }
  .main-nav > li .submenu li:first-child a {
    border-top: 0;
  }
  .main-nav > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-top: -1px;
    margin-left: 0;
  }
  .main-nav > li .submenu > li .submenu {
    right: 100%;
    top: 0;
    margin-top: 10px;
  }
  .main-nav li .submenu a:hover {
    color: #09dca4;
    letter-spacing: 0.5px;
    padding-right: 20px;
  }
  .main-nav > .has-submenu > .submenu > .has-submenu > .submenu::before {
    top: 20px;
    margin-right: -35px;
    box-shadow: 1px 1px 0 0 rgba(0,0,0,.15);
    border-color: transparent #fff #fff transparent;
  }
  .header-navbar-rht li.show > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .header-navbar-rht li .dropdown-menu {
    border-radius: 5px;
    padding: 0;
    margin: 0;
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    display: block;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@media only screen and (max-width: 1399px) {
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-name,
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-last-chat {
    max-width: 180px;
  }
  .row.row-grid {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row.row-grid > div {
    padding-right: 8px;
    padding-left: 8px;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-name,
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-last-chat {
    max-width: 150px;
  }
  .chat-cont-left {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .chat-cont-right {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }
  .row.row-grid > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .dash-widget {
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .circle-bar {
    margin: 0 0 15px;
  }
  .header-navbar-rht li.contact-item {
    display: none;
  }
  .map-right {
    height: 450px;
    position: static;
    min-height: inherit;
    margin-bottom: 30px;
    padding-left: 15px;
  }
  .map-listing {
    height: 450px;
  }
  .map-page .content {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991.98px) {
  .main-nav {
    padding: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
  }
  .main-nav ul {
    background-color: #3474ac;
    display: none;
    list-style: none;
    margin: 0;
    padding-right: 0;
  }
  .main-nav > li {
    border-bottom: 1px solid #1663a6;
    margin-right: 0;
  }
  .main-nav li + li {
    margin-right: 0;
  }
  .main-nav > li > a {
    line-height: 1.5;
    padding: 15px 20px !important;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  .main-nav > li > a > i {
    float: left;
    margin-top: 5px;
  }
  .main-nav > li .submenu li a {
    border-top: 0;
    color: #fff;
    padding: 10px 15px 10px 35px;
  }
  .main-nav > li .submenu ul li a {
    padding: 10px 15px 10px 45px;
  }
  .main-nav > li .submenu > li.has-submenu > a::after {
    content: "\f078";
  }
  .main-nav .has-submenu.active > a {
    color: #09dca4;
  }
  .main-nav .has-submenu.active .submenu li.active > a {
    color: #09dca4;
  }
  .login-left {
    display: none;
  }
  .main-menu-wrapper {
    order: 3;
    width: 260px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1060;
    transform: translateX(260px);
    transition: all 0.4s;
    background-color: #15558d;
  }
  .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  #mobile_btn {
    display: inline-block;
  }
  .section-search {
    min-height: 330px;
  }
  .section-specialities {
    padding: 50px 0;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
  .chat-cont-left, .chat-cont-right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    transition: left 0.3s ease-in-out 0s, right 0.3s ease-in-out 0s;
    width: 100%;
  }
  .chat-cont-left {
    border-left: 0;
  }
  .chat-cont-right {
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
  .chat-cont-right .chat-header {
    justify-content: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
  }
  .chat-cont-right .chat-header .back-user-list {
    display: block;
  }
  .chat-cont-right .chat-header .chat-options {
    margin-right: auto;
  }
  .chat-window.chat-slide .chat-cont-left {
    right: -100%;
  }
  .chat-window.chat-slide .chat-cont-right {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .day-slot li.left-arrow {
    right: -10px;
  }
  .container {
    max-width: 100%;
  }
  .appointments .appointment-action {
    margin-top: 10px;
  }
  .appointments .appointment-list {
    display: block;
  }
  .banner-wrapper {
    max-width: 720px;
  }
  .search-box .search-info {
    -ms-flex: 0 0 410px;
    flex: 0 0 410px;
    width: 410px;
  }
  .banner-wrapper .banner-header h1 {
    font-size: 2.125rem;
  }
  .dct-border-rht {
    border-bottom: 1px solid #f0f0f0;
    border-left: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .card-label > label {
    font-size: 12px;
  }
  .footer .footer-top {
    padding-bottom: 10px;
  }
  .time-slot li .timing.selected::before {
    display: none;
  }
  .review-listing .recommend-btn {
    float: none;
  }
  .dash-widget {
    flex-direction: unset;
    text-align: right;
  }
  .circle-bar {
    margin: 0 15px 0 0;
  }
  .call-wrapper {
    height: calc(100vh - 140px);
  }
  .sidebar-overlay.opened {
    display: block;
  }
  .about-content {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 849.98px) {
  .row.row-grid > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  body {
    font-size: 0.875rem;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.375rem;
  }
  h4, .h4 {
    font-size: 1rem;
  }
  h5, .h5 {
    font-size: 0.875rem;
  }
  h6, .h6 {
    font-size: 0.75rem;
  }
  .content {
    padding: 15px 0 0;
  }
  .account-page .content {
    padding: 15px 0;
  }
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .card {
    margin-bottom: 20px;
  }
  .profile-sidebar {
    margin-bottom: 20px;
  }
  .appointment-tab {
    margin-bottom: 20px;
  }
  .features-slider .slick-dots, .features-img img {
    text-align: center;
    margin: 0 auto;
  }
  .doctor-slider {
    margin-top: 25px;
  }
  .breadcrumb-bar {
    height: auto;
  }
  .login-right {
    margin: 0 15px;
    padding: 15px;
  }
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-name,
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-last-chat {
    max-width: 250px;
  }
  .chat-window .chat-cont-right .chat-header .media .media-body {
    display: none;
  }
  .banner-wrapper .banner-header h1 {
    font-size: 2rem;
  }
  .banner-wrapper .banner-header p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 1.875rem;
  }
  .section-header .sub-title {
    font-size: 0.875rem;
  }
  .speicality-item p {
    font-size: 0.875rem;
  }
  .section-header p {
    font-size: 0.9375rem;
  }
  .footer-title {
    font-size: 1.125rem;
  }
  .search-box {
    max-width: 535px;
    margin: 0 auto;
  }
  .search-box form {
    -ms-flex-direction: column;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
  }
  .search-box .search-location {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .search-box .search-info {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .search-box .search-btn {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-height: 46px;
    width: 100%;
  }
  .search-box .search-btn span {
    display: inline-block;
    margin-right: 5px;
    text-transform: uppercase;
  }
  .section-search {
    background: #f9f9f9;
  }
  .day-slot li span {
    font-size: 16px;
    text-transform: unset;
  }
  .time-slot li .timing span {
    display: block;
  }
  .submit-section.proceed-btn {
    margin-bottom: 20px;
  }
  .day-slot li small.slot-year {
    display: none;
  }
  .success-cont h3 {
    font-size: 22px;
  }
  .view-inv-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  .invoice-info.invoice-info2 {
    text-align: right;
  }
  .invoice-item .invoice-details {
    text-align: right;
  }
  .section-search, .section-doctor, .section-features {
    padding: 50px 0;
  }
  .slick-next {
    left: -10px;
  }
  .slick-prev {
    right: -10px;
  }
  [dir='rtl'] .slick-prev {
    right: -10px;
  }
  [dir='rtl'] .slick-next {
    left: -10px;
  }
  .specialities-slider .slick-slide {
    margin-left: 15px;
  }
  .about-content a {
    padding: 12px 20px;
  }
  .submit-section .submit-btn {
    padding: 10px 20px;
    font-size: 15px;
    min-width: 105px;
  }
  .policy-menu {
    margin-top: 10px;
    text-align: right;
  }
  .booking-doc-info .booking-doc-img {
    width: 75px;
  }
  .booking-doc-info .booking-doc-img img {
    height: 75px;
    width: 75px;
  }
  .btn.btn-danger.trash {
    margin-bottom: 20px;
  }
  .nav-tabs.nav-tabs-bottom > li > a.active, .nav-tabs.nav-tabs-bottom > li > a.active:hover, .nav-tabs.nav-tabs-bottom > li > a.active:focus {
    background-color: #f5f5f5;
  }
  .nav-tabs.nav-justified {
    border-bottom: 1px solid #ddd;
  }
  .nav-tabs.nav-justified > li > a.active,
  .nav-tabs.nav-justified > li > a.active:hover,
  .nav-tabs.nav-justified > li > a.active:focus {
    border-color: transparent #20c0f3 transparent transparent;
    border-right-width: 2px;
  }
  .nav-tabs {
    border-bottom: 0;
    position: relative;
    background-color: #fff;
    padding: 5px 0;
    border: 1px solid #ddd;
    border-radius: 3px;
  }
  .nav-tabs .nav-item {
    margin-bottom: 0;
  }
  .nav-tabs > li > a {
    border-width: 2px;
    border-right-color: transparent;
  }
  .nav-tabs .nav-link {
    border-width: 2px;
  }
  .nav-tabs > li > a:hover,
  .nav-tabs > li > a:focus {
    background-color: #fafafa;
  }
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active,
  .nav-tabs > li > a.active,
  .nav-tabs > li > a.active:hover,
  .nav-tabs > li > a.active:focus {
    border-color: transparent #20c0f3 transparent transparent !important;
    border-right-width: 2px;
  }
  .nav-tabs > li.open:not(.active) > a,
  .nav-tabs > li.open:not(.active) > a:hover,
  .nav-tabs > li.open:not(.active) > a:focus {
    background-color: #fafafa;
  }
  .nav-tabs.nav-tabs-solid {
    padding: 5px;
  }
  .nav-tabs.nav-tabs-solid.nav-tabs-rounded {
    border-radius: 5px;
  }
  .nav-tabs.nav-tabs-solid > li > a {
    border-right-width: 0!important;
  }
  .nav-tabs-justified {
    border-bottom: 1px solid #ddd;
  }
  .nav-tabs-justified > li > a.active,
  .nav-tabs-justified > li > a.active:hover,
  .nav-tabs-justified > li > a.active:focus {
    border-width: 0 0 0 2px;
    border-right-color: #20c0f3;
  }
  .review-listing > ul li .comment .comment-body .meta-data span.comment-date {
    margin-bottom: 5px;
  }
  .review-listing > ul li .comment .comment-body .meta-data .review-count {
    position: unset;
  }
  .my-video ul li {
    width: 50px;
  }
  .call-users ul li {
    width: 50px;
  }
  .call-mute {
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .call-duration {
    font-size: 24px;
  }
  .voice-call-avatar .call-avatar {
    height: 100px;
    width: 100px;
  }
  .user-tabs {
    margin-top: 1.5rem;
  }
  .user-tabs .nav-tabs > li > a {
    border-right: 2px solid transparent;
    border-bottom: 0;
    padding: .5rem 1rem;
  }
  .user-tabs .nav-tabs.nav-tabs-bottom > li > a.active,
  .user-tabs .nav-tabs.nav-tabs-bottom > li > a.active:hover,
  .user-tabs .nav-tabs.nav-tabs-bottom > li > a.active:focus {
    border-right-width: 2px;
    color: #20c0f3;
  }
  .doctor-widget {
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .doc-info-right {
    margin-right: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .doc-info-left {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .center-services {
    display: none;
  }
  .doctor-img {
    margin: 0 auto 20px;
  }
  .doctor-action {
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .row.row-grid > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .breadcrumb-bar .breadcrumb-title {
    font-size: 18px;
  }
  .dash-widget h6 {
    font-size: 15px;
  }
  .dash-widget h3 {
    font-size: 20px;
  }
  .dash-widget p {
    font-size: 13px;
  }
  .doctor-widget .doc-name {
    font-size: 18px;
  }
  .exp-title, .booking-total ul li span, .booking-total ul li .total-cost {
    font-size: 14px;
  }
  .invoice-item .customer-text {
    font-size: 16px;
  }
  .call-wrapper {
    height: calc(100vh - 115px);
  }
  .appointment-tab .nav-tabs {
    padding: 1.5rem;
  }
  .submit-btn-bottom {
    margin-bottom: 20px;
  }
  .service-list ul li {
    width: 50%;
  }
  .grid-blog .blog-title {
    min-height: inherit;
  }
  .blog-title {
    font-size: 20px;
  }
  .blog-view .blog-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 575.98px) {
  body {
    font-size: 0.8125rem;
  }
  h1, .h1 {
    font-size: 1.75rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.25rem;
  }
  h4, .h4 {
    font-size: 1rem;
  }
  h5, .h5 {
    font-size: 0.875rem;
  }
  h6, .h6 {
    font-size: 0.75rem;
  }
  .card {
    margin-bottom: 0.9375rem;
  }
  .card-body {
    padding: 1.25rem;
  }
  .card-header {
    padding: .75rem 1.25rem;
  }
  .card-footer {
    padding: .75rem 1.25rem;
  }
  .header-nav {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-navbar-rht {
    display: none;
  }
  .main-nav li.login-link {
    display: block;
  }
  .navbar-header {
    width: 100%;
  }
  #mobile_btn {
    right: 0;
    margin-left: 0;
    padding: 0 15px;
    position: absolute;
    z-index: 99;
  }
  .navbar-brand.logo {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .navbar-brand.logo img {
    height: 40px;
  }
  .search-box form {
    display: block;
  }
  .search-box .search-location {
    width: 100%;
    -ms-flex: none;
    flex: none;
  }
  .search-box .search-info {
    width: 100%;
    -ms-flex: none;
    flex: none;
  }
  .banner-wrapper .banner-header h1 {
    font-size: 28px;
  }
  .slick-next {
    left: 0px;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header .sub-title {
    font-size: 0.875rem;
  }
  .speicality-item p {
    font-size: 0.875rem;
  }
  .section-header p {
    font-size: 0.9375rem;
  }
  .footer-title {
    font-size: 1.125rem;
  }
  .booking-schedule.schedule-widget {
    overflow-x: auto;
  }
  .booking-schedule.schedule-widget > div {
    width: 730px;
  }
  .booking-schedule .day-slot ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .booking-schedule .day-slot li {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
  }
  .booking-schedule .time-slot ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .booking-schedule .time-slot li {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
  }
  .booking-schedule .time-slot li .timing span {
    display: inline-block;
  }
  .booking-schedule .day-slot li.right-arrow {
    left: -20px;
  }
  .booking-doc-info .booking-doc-img {
    width: 70px;
  }
  .booking-doc-info .booking-doc-img img {
    height: 70px;
    width: 70px;
  }
  .voice-call-avatar .call-avatar {
    height: 80px;
    width: 80px;
  }
  .call-duration {
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    position: inherit;
  }
  .end-call {
    margin-top: 10px;
    position: inherit;
  }
  .user-tabs .med-records {
    min-width: 110px;
  }
  .pagination-lg .page-link {
    font-size: 1rem;
    padding: 0.5rem 0.625rem;
  }
  .row.row-grid > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .edit-link {
    font-size: 14px;
    margin-top: 2px;
  }
  .invoice-content {
    padding: 1.25rem;
  }
  .change-avatar .profile-img img {
    height: 80px;
    width: 80px;
  }
  .submit-btn-bottom {
    margin-bottom: 0.9375rem;
  }
  .service-list ul li {
    width: 100%;
  }
  .blog {
    padding: 1.25rem;
  }
  .blog-title {
    font-size: 18px;
  }
  .blog-view .blog-title {
    font-size: 20px;
  }
  .blog-info i {
    font-size: 14px;
  }
  .post-left ul li {
    margin-left: 10px;
  }
  .post-left ul li:last-child {
    margin-left: 10px;
  }
  .about-author-img {
    height: 60px;
    width: 60px;
  }
  .author-details {
    margin-right: 80px;
  }
  .blog-comments .comments-list li img.avatar {
    border-radius: 40px;
    height: 40px;
    width: 40px;
  }
  .blog-comments .comments-list li {
    padding: 10px 0 0 50px;
  }
  .read-more {
    font-size: 14px;
  }
}

@media only screen and (max-width:479px) {
  .section-search {
    min-height: 410px;
    padding: 30px 15px;
  }

  .section-search-map {
    min-height: 0px;
  }

  .specialities-slider .slick-slide {
    margin-left: 10px;
  }
  .speicality-img {
    width: 120px;
    height: 120px;
  }
  .speicality-img img {
    width: 50px;
  }
  .center-booking a.view-pro-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .center-booking a.apt-btn {
    width: 100%;
  }
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-name,
  .chat-cont-left .chat-users-list a.media .media-body > div:first-child .user-last-chat {
    max-width: 160px;
  }
  .section-features, .section-features, .section-specialities {
    background-color: #fff;
    padding: 30px 0;
  }
  .login-header h3 a {
    color: #0de0fe;
    float: none;
    font-size: 15px;
    margin-top: 10px;
    text-align: center;
    display: block;
  }
  .login-header h3 {
    text-align: center;
  }
  .appointments .appointment-list {
    text-align: center;
  }
  .appointment-list .profile-info-widget {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .appointment-list .profile-info-widget {
    text-align: center;
  }
  .appointment-list .profile-info-widget .booking-doc-img {
    margin: 0 0 15px;
  }
  .appointment-list .profile-info-widget .booking-doc-img img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
  }
  .appointment-list .profile-det-info {
    margin-bottom: 15px;
  }
  .appointments .appointment-action {
    margin-top: 0;
  }
  .user-tabs .nav-tabs .nav-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .review-listing .recommend-btn span {
    display: block;
    margin-bottom: 10px;
  }
  .review-listing > ul li .comments-reply {
    margin-right: 0;
  }
  .schedule-nav .nav-tabs li {
    display: block;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }
  .fc-header-toolbar .fc-left {
    margin-bottom: 10px;
  }
  .fc-header-toolbar .fc-right {
    margin-bottom: 10px;
  }
}

/*-----------------
	44. Owl
-----------------------*/

#owl-center-detail .item img{
  display: block;
  width: 100%;
  height: 400px;
}

#owl-center-list .item {
  height: 10rem;
  background: #eeeded;
  padding: 1rem;
  border: 1px solid #3b3838;
  box-shadow: 10px 10px 5px #ccc;
  -moz-box-shadow: 10px 10px 5px #ccc;
  -webkit-box-shadow: 10px 10px 5px #ccc;
  -khtml-box-shadow: 10px 10px 5px #ccc;
}

#owl-center-list .item h4 {
  color: #FFF;
  font-weight: 400;
  margin-top: 0rem;
}

.owl-dots {
  display:none
}

.owl-nav span{
  position:relative;
  top:-1px;
  outline:none!important
}

.owl-nav {
  position:absolute;
  right:0;
  top:-50px;
  display:block!important
}

.owl-nav {
  font-size:40px;
  line-height:33px;
  border:1px solid #000;
  padding:0 10px!important;
  margin-left:10px
}

/*-----------------
	45. Featured Ranches and Staff
-----------------------*/

.center_wrap .list-center .item-loop {
  border: 1px solid #dfdfdf;
  border-radius: 2%;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px;
}

.center_wrap .list-center .item-loop a {
  text-decoration: none;
  transition: all .3s;
}

.list-center .item-loop .featured {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ed0925;
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  border:1px solid #fff;
  font-weight: bold;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px;
}

.list-center .item-loop .target-audience {
  position: absolute;
  top: 180px;
  right: 0;
  background: #ffffff;
  display: inline-block;
  padding: 0 10px;
  color: #000000;
  border:1px solid #443e3e;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px;
}

.target-fotorama {
  top: 165px !important;
}

.center_wrap .list-center .item-loop .item-title a {
  color: #000000;
  font-weight: 700;
}
.center_wrap .list-center .item-loop a {
  text-decoration: none;
  transition: all .3s;
}

.list-center .item-loop .list-star {
  display: inline-block;
  line-height: 13px;
  position: relative;
}

.list-center .item-loop .list-star .booking-item-rating-stars:after, .center_wrap .list-center .item-loop .list-star .booking-item-rating-stars:before {
  content: "";
  display: table;
  clear: both;
}

.list-center .item-loop .list-star .booking-item-rating-stars li {
  list-style: none;
  float: left;
  margin-right: 5px;
}

.list-center .item-loop .list-star .booking-item-rating-stars li .fa {
  font-size: 15px;
  color: #fa5636;
}

.thumb-image {
  display: block;
  width: 100%;
  padding-bottom: 69%;
  overflow: hidden;
  /*background: linear-gradient(118deg,#f6f9fb,#e2ebef);*/
  background: #fff !important;
  position: relative;
}

.list-center .item-loop .item-title {
  padding: 20px 15px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.center_wrap .list-center .item-loop .item-title a:hover {
  text-decoration: underline;
}

.list-center .item-loop .location {
  font-size: 13px;
  color: #5e6d77;
  padding: 0 15px;
}

.center_wrap .list-center .item-loop .service-review {
  padding: 10px 15px 0;
}

.list-center .item-loop  .view-center {
  padding: 0px;
}

.list-center .item-loop .info {
  padding: 0 15px;
}

.list-center .item-loop .service-review {
  padding: 10px 15px 0;
}

.list-center .item-loop .service-review .review {
  margin-left: 0px;
  position: relative;
  color: #6a7a84;
  text-align: center;
}

.list-center .item-loop .service-review .rate {
  color: #000000;
  text-align: center;
  font-weight: bold;
}

.list-center .item-loop .info {
  padding: 0 15px;
}

.list-center .item-loop .info:after, .center_wrap .list-center .item-loop .info:before {
  content: "";
  display: table;
  clear: both;
}

.list-center .item-loop .info .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  position: relative;
}

.list-center .item-loop .info .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
}

.doctor-list-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

/*--------------------------- Center ---------------------------*/

@media(max-width:768px) {
  .bootbox.modal .modal-dialog {
    min-width: 0
  }
}

.modal-backdrop.show {
  opacity: .7
}

.center_wrap .center_search .fil_form_search {
  margin-top: -50px;
  position: relative;
  margin-bottom: 50px
}

@media(max-width:766px) {
  .center_wrap .center_search .fil_form_search {
    margin-top: -30px;
    margin-bottom: 20px
  }
}

.list-item {
  margin-top: 15px
}

.list-item .item-loop {
  border: 1px solid #dfdfdf;
  border-radius: 2%;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px
}

.list-item .item-loop a {
  text-decoration: none;
  transition: all .3s
}

.list-item .item-loop .sale_info {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 10px;
  top: -25px;
  color: #fff;
  font-size: 15px;
  background-color: #5191fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  border: 3px solid #fff
}

.list-item .item-loop .featured {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ed0925;
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px
}

.list-item .item-loop .thumb-image {
  overflow: hidden;
  height: 185px;
  background: #ccc;
  position: relative
}

.list-item .item-loop .thumb-image:hover a img {
  transform: scale(1.1)
}

.list-item .item-loop .thumb-image a img {
  transition: all .3s;
  width: 350px;
  height: 250px;
}

@media only screen and (max-width: 479px){
  .list-item .item-loop .thumb-image a img {
    width: 100%;
    height: auto;
  }
}

.list-item .item-loop .thumb-image a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1
}

.list-item .item-loop .thumb-image .price-wrapper {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  z-index: 10
}

.list-item .item-loop .thumb-image .price-wrapper .price {
  position: relative;
  display: inline-block
}

.list-item .item-loop .thumb-image .price-wrapper .price .text-price {
  color: #fff;
  font-weight: 500;
  font-size: 22px
}

.list-item .item-loop .thumb-image .price-wrapper .price .onsale {
  position: absolute;
  left: 0;
  top: -18px;
  text-decoration: line-through;
  font-size: 15px;
  color: #fff!important;
  font-weight: 400
}

.list-item .item-loop .thumb-image .price-wrapper .price .unit {
  font-size: 14px;
  color: #fff
}

.list-item .item-loop .thumb-image .service-wishlist {
  position: absolute;
  right: 5px;
  z-index: 10;
  top: 10px;
  color: #fff;
  padding: 10px;
  cursor: pointer
}

.list-item .item-loop .thumb-image .service-wishlist i {
  transition: all .3s;
  font-size: 16px
}

.list-item .item-loop .thumb-image .service-wishlist.loading i,
.list-item .item-loop .thumb-image .service-wishlist:hover i {
  color: #ff9290
}

.list-item .item-loop .thumb-image .service-wishlist.active i {
  color: red
}

.list-item .item-loop .location {
  font-size: 13px;
  color: #5e6d77;
  padding: 0 15px;
  height: 15px;
}

.list-item .item-loop .location i {
  position: relative;
  font-size: 16px
}

.list-item .item-loop .category {
  padding: 0 15px
}

.list-item .item-loop .category .fa {
  color: #687882;
  opacity: .6
}

.list-item .item-loop .service-review {
  padding: 10px 15px 0;
  margin-top: 10px;
}

.list-item .item-loop .service-review .rate {
  color: #000000;
  font-weight: 700;
}

.list-item .item-loop .service-review .review {
  margin-left: 30px;
  position: relative;
  color: #6a7a84
}

.list-item .item-loop .service-review .review:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #d0d7dd;
  border-radius: 50%;
  left: -18px;
  top: 8px
}

.list-item .item-loop .item-title {
  padding: 20px 15px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  font-weight: bold;
  height: 50px;
}

@media(max-width:766px) {
  .list-item .item-loop .item-title {
    min-height: auto
  }
}

.list-item .item-loop .item-title a {
  color: #1a2b50
}

.list-item .item-loop .item-title a:hover{
  text-decoration: underline;
}

.list-item .item-loop .item-title i {
  color: #ffc107;
  font-size: 15px;
  margin-right: 2px
}

.list-item .item-loop .info {
  padding: 0 15px
}

.list-item .item-loop .info:after,
.list-item .item-loop .info:before {
  content: "";
  display: table;
  clear: both
}

.list-item .item-loop .info .g-price {
  text-align: left
}

.list-item .item-loop .info .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  position: relative
}

.list-item .item-loop .info .g-price .prefix i {
  font-size: 16px;
  color: #ffc107
}

.list-item .item-loop .info .g-price .price {
  position: relative;
  display: inline-block
}

.list-item .item-loop .info .g-price .price .text-price {
  font-size: 18px;
  color: #1a2b48;
  font-weight: 500
}

.list-item .item-loop .info .g-price .price .onsale {
  text-decoration: line-through;
  font-size: 14px;
  color: #c03!important;
  font-weight: 400
}

.list-item .item-loop .info .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400
}

.list-item .item-loop .star-rate {
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 1
}

.list-item .item-loop .list-star {
  display: inline-block;
  line-height: 13px;
  position: relative
}

.list-item .item-loop .list-star .booking-item-rating-stars {
  padding: 0;
  margin: 0;
  width: 90px
}

.list-item .item-loop .list-star .booking-item-rating-stars:after,
.list-item .item-loop .list-star .booking-item-rating-stars:before {
  content: "";
  display: table;
  clear: both
}

.list-item .item-loop .list-star .booking-item-rating-stars li {
  list-style: none;
  float: left;
  margin-right: 5px
}

.list-item .item-loop .list-star .booking-item-rating-stars li:last-child {
  margin-right: 0
}

.list-item .item-loop .list-star .booking-item-rating-stars li .fa {
  font-size: 15px;
  color: #fa5636
}

.list-item .item-loop.infobox-item {
  position: relative
}

.list-item .item-loop.infobox-item:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-color: transparent #fff #fff transparent;
  border-style: solid;
  border-width: 10px;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  box-shadow: 1px 1px 0 #dfdfdf;
  background: #fff
}

.list-item .item-loop-list {
  border: 1px solid #dfdfdf;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  display: flex
}

@media(max-width:766px) {
  .list-item .item-loop-list {
    flex-wrap: wrap
  }
}

.list-item .item-loop-list a {
  text-decoration: none;
  transition: all .3s
}

.list-item .item-loop-list .sale_info {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 10px;
  top: -25px;
  color: #fff;
  font-size: 15px;
  background-color: #5191fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  border: 3px solid #fff
}

.list-item .item-loop-list .featured {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ed0925;
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px
}

.list-item .item-loop-list .thumb-image {
  overflow: hidden;
  height: 190px;
  background: #ccc;
  position: relative;
  flex: 0 0 30%;
  padding: 0
}

@media(max-width:766px) {
  .list-item .item-loop-list .thumb-image {
    flex: 0 0 100%
  }
}

.list-item .item-loop-list .thumb-image:hover a img {
  transform: scale(1.1)
}

.list-item .item-loop-list .thumb-image a img {
  transition: all .3s;
  max-width: 100%
}

.list-item .item-loop-list .thumb-image a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0, transparent 0, transparent 65%, rgba(0, 0, 0, .75));
  top: 0;
  z-index: 1
}

.list-item .item-loop-list .thumb-image .price-wrapper {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  z-index: 10
}

.list-item .item-loop-list .thumb-image .price-wrapper .price {
  position: relative;
  display: inline-block
}

.list-item .item-loop-list .thumb-image .price-wrapper .price .text-price {
  color: #fff;
  font-weight: 500;
  font-size: 22px
}

.list-item .item-loop-list .thumb-image .price-wrapper .price .onsale {
  position: absolute;
  left: 0;
  top: -18px;
  text-decoration: line-through;
  font-size: 15px;
  color: #fff!important;
  font-weight: 400
}

.list-item .item-loop-list .thumb-image .price-wrapper .price .unit {
  font-size: 14px;
  color: #fff
}

.list-item .item-loop-list .thumb-image .service-wishlist {
  position: absolute;
  right: 0;
  z-index: 10;
  top: 0;
  color: #fff;
  padding: 20px;
  cursor: pointer
}

.list-item .item-loop-list .thumb-image .service-wishlist i {
  transition: all .3s;
  font-size: 18px
}

.list-item .item-loop-list .thumb-image .service-wishlist.loading i,
.list-item .item-loop-list .thumb-image .service-wishlist:hover i {
  color: #ff9290
}

.list-item .item-loop-list .thumb-image .service-wishlist.active i {
  color: red
}

.list-item .item-loop-list .service-review {
  padding: 10px 0 0;
  display: none
}

.list-item .item-loop-list .service-review .rate {
  color: #5191fa
}

.list-item .item-loop-list .service-review .review {
  margin-left: 30px;
  position: relative;
  color: #6a7a84
}

.list-item .item-loop-list .service-review .review:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #d0d7dd;
  border-radius: 50%;
  left: -18px;
  top: 8px
}

@media(max-width:766px) {
  .list-item .item-loop-list .service-review {
    display: block
  }
}

.list-item .item-loop-list .service-review-pc .head {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: #1a2b48;
  font-weight: 400;
  line-height: 25px;
  justify-content: flex-end
}

.list-item .item-loop-list .service-review-pc .head .left {
  text-align: right
}

.list-item .item-loop-list .service-review-pc .head .left .head-rating {
  display: block;
  line-height: 13px;
  margin-top: 8px;
  margin-bottom: 1px;
  font-weight: 500
}

.list-item .item-loop-list .service-review-pc .head .left .text-rating {
  color: #5191fa;
  font-size: 14px
}

.list-item .item-loop-list .service-review-pc .head .score {
  position: relative;
  float: right;
  margin-left: 12px;
  padding: 7px 7px 0 9px;
  background: #5191fa;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  min-height: 38px
}

.list-item .item-loop-list .service-review-pc .head .score span {
  font-size: 14px;
  color: #fff
}

.list-item .item-loop-list .service-review-pc .head .score:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0;
  left: -8px;
  border: 15px solid transparent;
  border-bottom-color: #5191fa
}

.list-item .item-loop-list .service-review-pc .foot {
  color: #5e6d77;
  font-size: 14px;
  text-align: right
}

@media(max-width:766px) {
  .list-item .item-loop-list .service-review-pc {
    display: none
  }
}

.list-item .item-loop-list .g-info {
  flex: 0 0 45%;
  padding: 15px;
  position: relative
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info {
    flex: 0 0 100%;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
  }
  .list-item .item-loop-list .g-info>div {
    flex: 0 0 100%
  }
}

.list-item .item-loop-list .g-info .item-title {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-bottom: 5px
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info .item-title {
    min-height: auto;
    order: 2;
    margin-bottom: 0
  }
}

.list-item .item-loop-list .g-info .item-title a {
  color: #1a2b50
}

.list-item .item-loop-list .g-info .item-title i {
  color: #ffc107;
  font-size: 15px;
  margin-right: 2px
}

.list-item .item-loop-list .g-info .location {
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 13px;
  color: #5e6d77
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info .location {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 5px;
    order: 3;
    margin-bottom: 3px
  }
}

.list-item .item-loop-list .g-info .location i {
  position: relative;
  font-size: 16px
}

.list-item .item-loop-list .g-info .star-rate {
  z-index: 1
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info .star-rate {
    order: 1
  }
}

.list-item .item-loop-list .g-info .list-star {
  display: inline-block;
  line-height: 13px;
  position: relative
}

.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars {
  padding: 0;
  margin: 0;
  width: 90px
}

.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars:after,
.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars:before {
  content: "";
  display: table;
  clear: both
}

.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars li {
  list-style: none;
  float: left;
  margin-right: 5px
}

.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars li:last-child {
  margin-right: 0
}

.list-item .item-loop-list .g-info .list-star .booking-item-rating-stars li .fa {
  font-size: 14px;
  color: #fa5636
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info .terms {
    order: 4
  }
}

.list-item .item-loop-list .g-info .terms .attr-title {
  display: inline-block;
  margin-right: 5px;
  color: #5e6d77;
  font-size: 13px
}

.list-item .item-loop-list .g-info .terms .attr-title i {
  margin-right: 2px
}

.list-item .item-loop-list .g-info .terms .g-attributes .item {
  margin-right: 5px;
  color: #5e6d77;
  font-size: 13px
}

.list-item .item-loop-list .g-info .terms .g-attributes .item:before {
  content: "";
  height: 2px;
  width: 2px;
  display: inline-block;
  background: grey;
  vertical-align: middle;
  margin-right: 5px
}

.list-item .item-loop-list .g-info .terms .g-attributes span:nth-child(2):before {
  display: none
}

@media(max-width:1280px) {
  .list-item .item-loop-list .g-info .terms .g-attributes {
    display: none
  }
}

@media(max-width:1280px) {
  .list-item .item-loop-list .g-info .terms .g-attributes:first-child {
    display: block
  }
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-info .terms .g-attributes {
    display: block
  }
}

.list-item .item-loop-list .g-rate-price {
  flex: 1;
  padding: 15px 15px 15px 0;
  position: relative
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-rate-price {
    flex: 0 0 100%;
    padding: 0 15px 10px
  }
}

.list-item .item-loop-list .g-rate-price:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  border-right: 1px solid #dfdfdf
}

@media(max-width:1280px) {
  .list-item .item-loop-list .g-rate-price:before {
    left: 0
  }
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-rate-price:before {
    display: none
  }
}

.list-item .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-rate-price .g-price {
    position: relative;
    left: 0;
    bottom: 0;
    float: none;
    text-align: left;
    border-top: 1px solid #dfdfdf;
    margin-top: 10px;
    padding-top: 5px
  }
}

.list-item .item-loop-list .g-rate-price .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  left: -3px;
  position: relative
}

.list-item .item-loop-list .g-rate-price .g-price .prefix i {
  font-size: 16px;
  color: #ffc107
}

.list-item .item-loop-list .g-rate-price .g-price .price {
  position: relative;
  display: inline-block
}

.list-item .item-loop-list .g-rate-price .g-price .price .text-price {
  font-size: 18px;
  color: #1a2b48;
  font-weight: 500
}

.list-item .item-loop-list .g-rate-price .g-price .price .onsale {
  text-decoration: line-through;
  font-size: 14px;
  color: #c03!important;
  font-weight: 400
}

.list-item .item-loop-list .g-rate-price .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400
}

.list-item .item-loop-list .g-rate-price .g-price .text-review {
  float: right;
  position: relative;
  top: 5px;
  color: #4b4b4c;
  display: none
}

@media(max-width:766px) {
  .list-item .item-loop-list .g-rate-price .g-price .text-review {
    display: block
  }
}

.center_wrap .search_map .list-item {
  margin-top: 15px
}

.center_search .container {
  max-width: 1350px;
}

.cart-total-group {
  border-top: 1px solid #d7dce3
}

.cart-total-group ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.cart-total-group li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0
}

.cart-total-group li .label {
  flex-grow: 1;
  color: #1a2b48;
  font-weight: 500
}

.cart-total-group li .val {
  flex-shrink: 0
}

.cart-total-group li.line-end-total {
  border-top: 1px solid #d7dce3
}

.cart-total-group li.line-new-section {
  border-top: 1px solid #d7dce3;
  color: #1a2b48;
  font-weight: 500;
  font-size: 16px
}

.cart-total-group li.line-end-total .label {
  font-size: 16px
}

.cart-total-group li.line-end-total .val {
  color: #5191fa;
  font-weight: 500;
  font-size: 16px
}

.has-search-map {
  height: 100%
}

.has-search-map .center_wrap {
  display: flex;
  height: 100%;
  flex-direction: column
}

.has-search-map .center_wrap .search_area {
  flex-grow: 1;
  display: flex;
  overflow-y: auto;
  flex-direction: column
}

.has-search-map .center_wrap .search_area .form_search_map {
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
  padding: 12px
}

.has-search-map .center_wrap .search_area .form_search_map .filter-item {
  padding: 0 8px;
  flex-grow: 1
}

@media(max-width:990px) {
  .has-search-map .center_wrap .search_area .form_search_map .filter-item {
    border-bottom: 1px solid #e0e0e0
  }
  .has-search-map .center_wrap .search_area .form_search_map .filter-item:last-child {
    border-bottom: none
  }
}

.has-search-map .center_wrap .search_area .form_search_map .filter-item .dropdown-menu {
  margin-top: -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  min-width: 250px;
  border-radius: 0
}

.has-search-map .center_wrap .search_area .form_search_map .filter-item .dropdown-toggle:after {
  display: none
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form {
  background: #fff;
  box-shadow: none
}

@media(max-width:990px) {
  .has-search-map .center_wrap .search_area .form_search_map .fil_form {
    display: block!important;
    border: 1px solid #ccc;
    border-bottom: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2)
  }
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-group {
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  height: 42px;
  position: relative
}

@media(max-width:990px) {
  .has-search-map .center_wrap .search_area .form_search_map .fil_form .form-group {
    border: none
  }
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .border-right {
  border-right: 1px solid #d7dce3
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .field-detination {
  position: relative;
  padding: 8px;
  transition: all .3s
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .field-detination #dropdown-destination {
  padding-left: 40px
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .field-detination #dropdown-destination .form-control {
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 14px;
  color: #4b4b4b;
  position: relative;
  left: -5px;
  height: 25px!important
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .field-detination #dropdown-destination .form-control option {
  color: #000
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form label {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
  margin-bottom: 0
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .render {
  font-size: 14px;
  color: #4b4b4b
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .field-icon {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  font-size: 23px;
  color: #5e6d77;
  left: 8px
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .filter-simple .form-group .filter-title {
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .g-button-submit {
  position: relative;
  min-height: 66px;
  margin: 0 -1px 0 -15px
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .g-button-submit button {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  margin-right: -15px;
  border-radius: 0;
  background: #5191fa;
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content {
  padding: 8px 8px 8px 40px
}

@media only screen and (max-width: 479px){
  .has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content {
    padding: 8px 8px 8px 15px;
  }
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search {
  position: static
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search .parent_text {
  font-size: 14px;
  color: #4b4b4b
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search .parent_text::-moz-placeholder {
  color: #4b4b4b
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search .parent_text:-ms-input-placeholder {
  color: #4b4b4b
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search .parent_text::placeholder {
  color: #4b4b4b
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search:after {
  color: #4b4b4b;
  top: 18px;
  right: 15px
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .autocomplete {
  margin-top: 1px;
  right: -1px;
  left: -1px
}

.has-search-map .search_map {
  display: flex;
  flex-grow: 1;
  min-height: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  direction: ltr;
  margin-bottom: 30px;
}

@media(max-width:990px) {
  .has-search-map .search_map {
    display: block
  }
}

.has-search-map .search_map .results_map {
  flex-shrink: 0;
  width: 40%;
  left: 0;
  border-right: 1px solid #e0e0e0;
  position: relative;
  order: 1
}

@media(max-width:990px) {
  .has-search-map .search_map .results_map {
    width: 100%;
    height: 300px;
    padding: 15px;
    border-right: none;
    background: #fff
  }
}

.has-search-map .search_map .results_map .map_loading {
  display: none
}

.has-search-map .search_map .results_map .results_map_inner {
  height: 100%;
  z-index: 1
}

.has-search-map .search_map .results_item {
  flex-grow: 1;
  position: relative;
  order: 2
}

.has-search-map .search_map .results_item #advance_filters {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999999;
  flex-direction: column;
  background: #fff
}

@media(max-width:990px) {
  .has-search-map .search_map .results_item #advance_filters {
    position: fixed;
    bottom: 0
  }
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b {
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 30px
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b .filter-item {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 15px;
  margin-bottom: 15px
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b .filter-item:last-child {
  border-bottom: 0
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b .filter-title {
  margin-bottom: 10px;
  font-size: 15px
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b .filter-items {
  padding: 0;
  list-style: none
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-b .filter-items .filter-term-item label {
  margin-bottom: 8px
}

.has-search-map .search_map .results_item #advance_filters .ad-filter-f {
  border-top: 1px solid #ececec;
  background-color: #fafafa;
  flex-shrink: 0;
  padding: 10px 15px;
  border-bottom: 1px solid #dad8d8
}

.has-search-map .search_map .results_item .text-paginate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 15px 0 0;
  color: #818181
}

.has-search-map .search_map .results_item .text-paginate h2 {
  font-size: 20px;
  color: #000;
  margin-bottom: 0
}

.has-search-map .search_map .results_item .listing_items {
  height: 100%;
  overflow-y: auto
}

.has-search-map .search_map .results_item .listing_items .center-list-item {
  height: 100%;
  padding: 0 30px
}

@media(max-width:1023px) {
  .has-search-map .search_map .results_item .listing_items .center-list-item {
    height: auto
  }
}

@media(max-width:766px) {
  .has-search-map .search_map .results_item .listing_items .center-list-item {
    padding: 0 15px
  }
}

.has-search-map .search_map .results_item .listing_items .center-list-item.not-found {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex
}

@media(max-width:1280px) {
  .has-search-map .search_map .results_item .listing_items .center-list-item .list-item .row .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }
}

@media(max-width:766px) {
  .has-search-map .search_map .results_item .listing_items .center-list-item .list-item .row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%
  }
}

.has-search-map .search_map .results_item .listing_items .center-list-item .list-item .item-tour {
  background: #fff
}

.has-search-map .search_map .results_item .listing_items .center-list-item .list-item .item-tour .thumb-image {
  max-height: 170px
}

@media(max-width:766px) {
  .has-search-map .search_map .results_item .listing_items .center-list-item .list-item .item-tour .thumb-image {
    max-height: 180px
  }
}

.has-search-map .search_map.map_right .results_map {
  order: 2
}

.has-search-map .search_map.map_right .results_item {
  order: 1
}

.has-search-map .filter-price .irs--flat .irs-from,
.has-search-map .filter-price .irs--flat .irs-single,
.has-search-map .filter-price .irs--flat .irs-to {
  font-size: 11px;
  background-color: #5191fa
}

.has-search-map .filter-price .irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #5191fa
}

.has-search-map .filter-price .irs--flat .irs-handle>i:first-child {
  background-color: #5191fa
}

.has-search-map .filter-price .irs--flat .irs-from:before,
.has-search-map .filter-price .irs--flat .irs-single:before,
.has-search-map .filter-price .irs--flat .irs-to:before {
  border-top-color: #5191fa
}

.has-search-map .search_map .results_map .item-loop {
  border: 1px solid #dfdfdf;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px
}

.has-search-map .search_map .results_map .item-loop a {
  text-decoration: none;
  transition: all .3s
}

.has-search-map .search_map .results_map .item-loop .sale_info {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 10px;
  top: -25px;
  color: #fff;
  font-size: 15px;
  background-color: #5191fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  border: 3px solid #fff
}

.has-search-map .search_map .results_map .item-loop .featured {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ed0925;
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px
}

.has-search-map .search_map .results_map .item-loop .thumb-image {
  overflow: hidden;
  height: 185px;
  background: #ccc;
  position: relative
}

.has-search-map .search_map .results_map .item-loop .thumb-image:hover a img {
  transform: scale(1.1)
}

.has-search-map .search_map .results_map .item-loop .thumb-image a img {
  transition: all .3s;
  max-width: 100%
}

.has-search-map .search_map .results_map .item-loop .thumb-image a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0, transparent 0, transparent 65%, rgba(0, 0, 0, .75));
  top: 0;
  z-index: 1
}

.has-search-map .search_map .results_map .item-loop .thumb-image .price-wrapper {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  z-index: 10
}

.has-search-map .search_map .results_map .item-loop .thumb-image .price-wrapper .price {
  position: relative;
  display: inline-block
}

.has-search-map .search_map .results_map .item-loop .thumb-image .price-wrapper .price .text-price {
  color: #fff;
  font-weight: 500;
  font-size: 22px
}

.has-search-map .search_map .results_map .item-loop .thumb-image .price-wrapper .price .onsale {
  position: absolute;
  left: 0;
  top: -18px;
  text-decoration: line-through;
  font-size: 15px;
  color: #fff!important;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop .thumb-image .price-wrapper .price .unit {
  font-size: 14px;
  color: #fff
}

.has-search-map .search_map .results_map .item-loop .thumb-image .service-wishlist {
  position: absolute;
  right: 5px;
  z-index: 10;
  top: 10px;
  color: #fff;
  padding: 10px;
  cursor: pointer
}

.has-search-map .search_map .results_map .item-loop .thumb-image .service-wishlist i {
  transition: all .3s;
  font-size: 16px
}

.has-search-map .search_map .results_map .item-loop .thumb-image .service-wishlist.loading i,
.has-search-map .search_map .results_map .item-loop .thumb-image .service-wishlist:hover i {
  color: #ff9290
}

.has-search-map .search_map .results_map .item-loop .thumb-image .service-wishlist.active i {
  color: red
}

.has-search-map .search_map .results_map .item-loop .location {
  font-size: 13px;
  color: #5e6d77;
  padding: 0 15px
}

.has-search-map .search_map .results_map .item-loop .location i {
  position: relative;
  font-size: 16px
}

.has-search-map .search_map .results_map .item-loop .category {
  padding: 0 15px
}

.has-search-map .search_map .results_map .item-loop .category .fa {
  color: #687882;
  opacity: .6
}

.has-search-map .search_map .results_map .item-loop .service-review {
  padding: 10px 15px 0
}

.has-search-map .search_map .results_map .item-loop .service-review .rate {
  color: #5191fa
}

.has-search-map .search_map .results_map .item-loop .service-review .review {
  margin-left: 30px;
  position: relative;
  color: #6a7a84
}

.has-search-map .search_map .results_map .item-loop .service-review .review:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #d0d7dd;
  border-radius: 50%;
  left: -18px;
  top: 8px
}

.has-search-map .search_map .results_map .item-loop .item-title {
  padding: 20px 15px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop .item-title {
    min-height: auto
  }
}

.has-search-map .search_map .results_map .item-loop .item-title a {
  color: #1a2b50
}

.has-search-map .search_map .results_map .item-loop .item-title i {
  color: #ffc107;
  font-size: 15px;
  margin-right: 2px
}

.has-search-map .search_map .results_map .item-loop .info {
  padding: 0 15px
}

.has-search-map .search_map .results_map .item-loop .info:after,
.has-search-map .search_map .results_map .item-loop .info:before {
  content: "";
  display: table;
  clear: both
}

.has-search-map .search_map .results_map .item-loop .info .g-price {
  text-align: left
}

.has-search-map .search_map .results_map .item-loop .info .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  position: relative
}

.has-search-map .search_map .results_map .item-loop .info .g-price .prefix i {
  font-size: 16px;
  color: #ffc107
}

.has-search-map .search_map .results_map .item-loop .info .g-price .price {
  position: relative;
  display: inline-block
}

.has-search-map .search_map .results_map .item-loop .info .g-price .price .text-price {
  font-size: 18px;
  color: #1a2b48;
  font-weight: 500
}

.has-search-map .search_map .results_map .item-loop .info .g-price .price .onsale {
  text-decoration: line-through;
  font-size: 14px;
  color: #c03!important;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop .info .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop .star-rate {
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 1
}

.has-search-map .search_map .results_map .item-loop .list-star {
  display: inline-block;
  line-height: 13px;
  position: relative
}

.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars {
  padding: 0;
  margin: 0;
  width: 90px
}

.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars:after,
.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars:before {
  content: "";
  display: table;
  clear: both
}

.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars li {
  list-style: none;
  float: left;
  margin-right: 5px
}

.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars li:last-child {
  margin-right: 0
}

.has-search-map .search_map .results_map .item-loop .list-star .booking-item-rating-stars li .fa {
  font-size: 15px;
  color: #fa5636
}

.has-search-map .search_map .results_map .item-loop.infobox-item {
  position: relative
}

.has-search-map .search_map .results_map .item-loop.infobox-item:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-color: transparent #fff #fff transparent;
  border-style: solid;
  border-width: 10px;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  box-shadow: 1px 1px 0 #dfdfdf;
  background: #fff
}

.has-search-map .search_map .results_map .item-loop-list {
  border: 1px solid #dfdfdf;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  display: flex
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list {
    flex-wrap: wrap
  }
}

.has-search-map .search_map .results_map .item-loop-list a {
  text-decoration: none;
  transition: all .3s
}

.has-search-map .search_map .results_map .item-loop-list .sale_info {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 10px;
  top: -25px;
  color: #fff;
  font-size: 15px;
  background-color: #5191fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  border: 3px solid #fff
}

.has-search-map .search_map .results_map .item-loop-list .featured {
  position: absolute;
  top: 20px;
  left: 0;
  background: #ed0925;
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  height: 30px;
  line-height: 30px
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image {
  overflow: hidden;
  height: 190px;
  background: #ccc;
  position: relative;
  flex: 0 0 30%;
  padding: 0
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .thumb-image {
    flex: 0 0 100%
  }
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image:hover a img {
  transform: scale(1.1)
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image a img {
  transition: all .3s;
  max-width: 100%
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0, transparent 0, transparent 65%, rgba(0, 0, 0, .75));
  top: 0;
  z-index: 1
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .price-wrapper {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  z-index: 10
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .price-wrapper .price {
  position: relative;
  display: inline-block
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .price-wrapper .price .text-price {
  color: #fff;
  font-weight: 500;
  font-size: 22px
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .price-wrapper .price .onsale {
  position: absolute;
  left: 0;
  top: -18px;
  text-decoration: line-through;
  font-size: 15px;
  color: #fff!important;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .price-wrapper .price .unit {
  font-size: 14px;
  color: #fff
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .service-wishlist {
  position: absolute;
  right: 0;
  z-index: 10;
  top: 0;
  color: #fff;
  padding: 20px;
  cursor: pointer
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .service-wishlist i {
  transition: all .3s;
  font-size: 18px
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .service-wishlist.loading i,
.has-search-map .search_map .results_map .item-loop-list .thumb-image .service-wishlist:hover i {
  color: #ff9290
}

.has-search-map .search_map .results_map .item-loop-list .thumb-image .service-wishlist.active i {
  color: red
}

.has-search-map .search_map .results_map .item-loop-list .service-review {
  padding: 10px 0 0;
  display: none
}

.has-search-map .search_map .results_map .item-loop-list .service-review .rate {
  color: #5191fa
}

.has-search-map .search_map .results_map .item-loop-list .service-review .review {
  margin-left: 30px;
  position: relative;
  color: #6a7a84
}

.has-search-map .search_map .results_map .item-loop-list .service-review .review:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #d0d7dd;
  border-radius: 50%;
  left: -18px;
  top: 8px
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .service-review {
    display: block
  }
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: #1a2b48;
  font-weight: 400;
  line-height: 25px;
  justify-content: flex-end
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .left {
  text-align: right
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .left .head-rating {
  display: block;
  line-height: 13px;
  margin-top: 8px;
  margin-bottom: 1px;
  font-weight: 500
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .left .text-rating {
  color: #5191fa;
  font-size: 14px
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .score {
  position: relative;
  float: right;
  margin-left: 12px;
  padding: 7px 7px 0 9px;
  background: #5191fa;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  min-height: 38px
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .score span {
  font-size: 14px;
  color: #fff
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .head .score:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0;
  left: -8px;
  border: 15px solid transparent;
  border-bottom-color: #5191fa
}

.has-search-map .search_map .results_map .item-loop-list .service-review-pc .foot {
  color: #5e6d77;
  font-size: 14px;
  text-align: right
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .service-review-pc {
    display: none
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info {
  flex: 0 0 45%;
  padding: 15px;
  position: relative
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info {
    flex: 0 0 100%;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
  }
  .has-search-map .search_map .results_map .item-loop-list .g-info>div {
    flex: 0 0 100%
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info .item-title {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-bottom: 5px
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .item-title {
    min-height: auto;
    order: 2;
    margin-bottom: 0
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info .item-title a {
  color: #1a2b50
}

.has-search-map .search_map .results_map .item-loop-list .g-info .item-title i {
  color: #ffc107;
  font-size: 15px;
  margin-right: 2px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .location {
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 13px;
  color: #5e6d77
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .location {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 5px;
    order: 3;
    margin-bottom: 3px
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info .location i {
  position: relative;
  font-size: 16px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .star-rate {
  z-index: 1
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .star-rate {
    order: 1
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star {
  display: inline-block;
  line-height: 13px;
  position: relative
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars {
  padding: 0;
  margin: 0;
  width: 90px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars:after,
.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars:before {
  content: "";
  display: table;
  clear: both
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars li {
  list-style: none;
  float: left;
  margin-right: 5px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars li:last-child {
  margin-right: 0
}

.has-search-map .search_map .results_map .item-loop-list .g-info .list-star .booking-item-rating-stars li .fa {
  font-size: 14px;
  color: #fa5636
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .terms {
    order: 4
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-info .terms .attr-title {
  display: inline-block;
  margin-right: 5px;
  color: #5e6d77;
  font-size: 13px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .terms .attr-title i {
  margin-right: 2px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes .item {
  margin-right: 5px;
  color: #5e6d77;
  font-size: 13px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes .item:before {
  content: "";
  height: 2px;
  width: 2px;
  display: inline-block;
  background: grey;
  vertical-align: middle;
  margin-right: 5px
}

.has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes span:nth-child(2):before {
  display: none
}

@media(max-width:1280px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes {
    display: none
  }
}

@media(max-width:1280px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes:first-child {
    display: block
  }
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-info .terms .g-attributes {
    display: block
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price {
  flex: 1;
  padding: 15px 15px 15px 0;
  position: relative
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-rate-price {
    flex: 0 0 100%;
    padding: 0 15px 10px
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  border-right: 1px solid #dfdfdf
}

@media(max-width:1280px) {
  .has-search-map .search_map .results_map .item-loop-list .g-rate-price:before {
    left: 0
  }
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-rate-price:before {
    display: none
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price {
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
  float: right
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price {
    position: relative;
    left: 0;
    bottom: 0;
    float: none;
    text-align: left;
    border-top: 1px solid #dfdfdf;
    margin-top: 10px;
    padding-top: 5px
  }
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .prefix {
  color: #5e6d77;
  display: inline-block;
  font-weight: 400;
  left: -3px;
  position: relative
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .prefix i {
  font-size: 16px;
  color: #ffc107
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .price {
  position: relative;
  display: inline-block
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .price .text-price {
  font-size: 18px;
  color: #1a2b48;
  font-weight: 500
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .price .onsale {
  text-decoration: line-through;
  font-size: 14px;
  color: #c03!important;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .price .unit {
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400
}

.has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .text-review {
  float: right;
  position: relative;
  top: 5px;
  color: #4b4b4c;
  display: none
}

.center_wrap .center-list-item .topbar-search .control .item:first-child {
  border: none;
}
.center_wrap .center-list-item .topbar-search .control .item {
  display: flex;
  align-items: center;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid #a7a7a7;
}

@media (max-width: 1023px) {
  .center_wrap .center-list-item .topbar-search .control .item {
    margin-bottom: 10px;
    margin-top: 10px;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 479px) {
  .center_wrap .center-list-item .topbar-search .control .item {
    display: flex;
    flex-direction: column;
    border-left: 0px;
  }

  .center_wrap .center-list-item .topbar-search .control .dropdown {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .center_wrap .center-list-item .topbar-search .control .item .dropdown .dropdown-toggle {
    width: 100%;
  }

  .center_wrap .center-list-item .topbar-search .control .dropdown {
    width: 100%;
  }

  .center_wrap .center-list-item .topbar-search .control .item {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
  }

  .dropdown-menu {
    left: -50px !important;
  }

  .list-item .item-loop .star-rate {
    bottom: 30px;
  }
}

@media(max-width:766px) {
  .has-search-map .search_map .results_map .item-loop-list .g-rate-price .g-price .text-review {
    display: block
  }

  .center_wrap .center-list-item .topbar-search .control {
    flex: 1 1 55%;
    color: #1a2b48;
    text-align: right;
    display: inline;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 1023px) {
  .center_wrap .center-list-item .topbar-search {
    flex-wrap: wrap;
  }

  .center_wrap .center-list-item .topbar-search .control .item {
    margin-bottom: 10px;
    margin-top: 10px;
    flex: 0 0 100%!important;
  }
}

.has-search-map .center_wrap .form_search_map .filter-item {
  padding: 0 8px;
  flex-grow: 1;
}

.has-search-map .center_wrap .form_search_map .form-group {
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  height: 42px;
  position: relative;
}

.has-search-map .center_wrap .form_search_map .field-icon {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  font-size: 23px;
  color: #5e6d77;
  left: 8px;
}

.has-search-map .center_wrap .form_search_map .form-content {
  padding: 8px 8px 8px 40px;
}

.center_wrap .form-content {
  position: relative;
  padding: 20px 0 10px 55px;
  transition: all .3s;
}

.has-search-map .center_wrap .form_search_map .form-content .smart-search {
  position: static;
}

.has-search-map .center_wrap .form_search_map .form-content .smart-search .parent_text {
  font-size: 14px;
  color: #4b4b4b;
}

.center_wrap .input-search .form-control, .center_wrap .input-search .parent_text, .center_wrap .smart-search .form-control, .center_wrap .smart-search .parent_text {
  border: none;
  box-shadow: none;
  font-size: 16px;
  color: #5191fa;
  position: relative;
  left: 0!important;
  padding: 0!important;
  height: 25px;
  background: 0 0;
}

.has-search-map .center_wrap .form_search_map .form-content .autocomplete {
  margin-top: 1px;
  right: -1px;
  left: -1px;
}

.center_wrap .input-search .autocomplete.show, .center_wrap .smart-search .autocomplete.show {
  opacity: 1;
  visibility: visible;
}

.center_wrap .input-search .autocomplete .item, .center_wrap .smart-search .autocomplete .item {
  cursor: pointer;
  padding: 10px 15px;
}

.center_wrap .input-search .autocomplete .item i, .center_wrap .smart-search .autocomplete .item i {
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  top: 1px;
  color: #828282;
}

.has-search-map .center_wrap .search_area .form_search_map .fil_form .form-content .smart-search:after {
  color: #4b4b4b;
  top: 18px;
  right: 15px;
  content: "";
  position: absolute;
  border-top: .4em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
}

.center_wrap .input-search .autocomplete, .center_wrap .smart-search .autocomplete {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  position: absolute;
  background: #fff;
  padding: 0;
  top: 100%;
  margin-top: 15px;
  left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #dee2e6;
  z-index: 20;
  max-height: 300px;
  overflow-y: auto;
  right: -15px;
}

.center_wrap .fil_form .input-search .autocomplete .message,
.center_wrap .fil_form .smart-search .autocomplete .message {
  display: none;
  padding: 10px 15px;
  font-size: 14px;
  color: #424242;
}

.page-hero-map {
  height: 250px;
  margin-bottom: 0px;
}

/*-------------------- Review ------------------------- */

/*---------------- 1. Start Config Review ---------------- */

.form-group-item .g-items-header {
  font-weight: 700;
  border: 1px solid #c4cdd5;
  padding: 10px;
  text-align: center;
}

.form-group-item .g-items .item {
  border: 1px solid #c4cdd5;
  border-top: 0;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.form-group-item .g-items {
  margin-bottom: 20px;
}

.form-group-item .g-items .item>.row>div {
  padding: 10px;
  border-right: 1px solid #c4cdd5;
}

.form-group-item .g-items .item .form-control:last-child {
  margin-bottom: 0;
}
.form-group-item .g-items .item .form-control {
  margin-bottom: 10px;
}

.text-right {
  text-align: right!important;
}

.btn-group-sm>.btn, .btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.form-group-item .g-more {
  display: none;
}

.form-group-item .g-items .item>.row>div:last-child {
  border-right: 0;
}

.form-group-item .g-items .item>.row>div {
  padding: 10px;
  border-right: 1px solid #c4cdd5;
}

/*-------------------- END Config Review ------------ */

/*---------------- Start Review Box ---------------- */

.reviews .review-box {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #eaeef3;
  border-radius: 5px;
  color: #1a2b48;
  font-weight: 500;
}

.reviews .review-box .review-box-score {
  border-right: 1px solid #d7dce3;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

@media only screen and (max-width: 479px){
  .reviews .review-box .review-box-score {
    border-right: 0px;
  }
}

.reviews .review-box .review-box-score .review-score, .reviews .review-box .review-box-score  {
  color: #5191FA;
}

.reviews .review-box .review-box-score .review-score .review-score-base span {
  color: #ff0000;
}

.reviews .review-box .review-box-score .review-score-text {
  font-weight: 400;
  font-size: 24px;
  color: #1a2b48;
}

.reviews .review-box .review-box-score .review-score-base {
  margin-top: 10px;
  color: #768090;
  font-size: 14px;
}

.reviews .review-box .review-sumary .item:first-child {
  margin-top: 0;
}
.reviews .review-box .review-sumary .item {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.reviews .review-box .review-sumary .item .label {
  width: 22%;
  text-align: right;
  margin-top: 0;
  margin-right: 3%;
  position: relative;
  display: block;
  padding-left: 0;
  color: #1a2b48;
  font-size: 14px;
  font-weight: 400;
}

.reviews .review-box .review-sumary .item .progress {
  position: relative;
  height: 8px;
  width: 65%;
  border-radius: 10px;
  box-shadow: none;
  background: #eee;
  margin-bottom: 0;
  overflow: inherit;
}

.reviews .review-box .review-sumary .item .progress .percent.green {
  background: #2ecc71;
}
.reviews .review-box .review-sumary .item .progress .percent {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background: #5191fa;
  border-radius: 10px;
}

.reviews .review-box .review-sumary .item .number {
  width: 7%;
  margin-left: 3%;
}

.reviews .review-box .review-sumary .item {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

/*---------------- Start Review List ---------------- */

.reviews .review-list {
  margin-top: 30px;
}

.reviews .review-list .review-item:last-child {
  border-bottom: 1px solid #eaeef3;
}
.reviews .review-list .review-item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #eaeef3;
  font-size: 14px;
}

.reviews .review-list .review-item .review-item-head {
  display: flex;
  align-items: center;
  margin-right: 100px;
}

.reviews .review-list .review-item .review-item-head .media .media-left {
  padding-right: 20px;
}

.reviews .review-list .review-item .review-item-head .media .media-left img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.reviews .review-list .review-item .review-item-head .media .media-body .media-heading {
  font-size: 14px;
  color: #1a2b48;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 5px;
}

.reviews .review-list .review-item .review-item-head .media .media-body .date {
  color: #aeb4c0;
}

.reviews .review-list .review-item .review-item-body {
  margin-top: 20px;
}

.reviews .review-list .review-item .review-item-body .title {
  position: relative;
  font-size: 16px;
  line-height: 20px;
}

.reviews .review-list .review-item .review-item-body .review-star {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.reviews .review-list .review-item .review-item-body .review-star li {
  list-style: none;
  margin-right: 5px;
  float: left;
}

.reviews .review-list .review-item .review-item-body .review-star li .fa {
  color: #ffdc00;
  font-size: 16px;
}

.reviews .review-list .review-item .review-item-body .detail {
  margin-top: 5px;
  font-size: 14px;
  color: #5e6d77;
  font-weight: 400;
  position: relative;
}

.reviews .review-pag-wrapper {
  overflow: hidden;
  margin-top: 15px;
}

.reviews .review-pag-wrapper .item-pagination {
  text-align: left;
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 0;
}
.item-pagination {
  text-align: center;
  display: block;
  margin-top: 20px;
  margin-bottom: 40px;
}

.reviews .review-pag-wrapper .review-pag-text {
  float: right;
  font-size: 14px;
  color: #5e6d77;
  margin-top: 5px;
  margin-right: 0;
}

/*---------------- Start Review Form ---------------- */

.reviews .review-form {
  margin: 15px 0;
}

.reviews .review-form .title-form {
  color: #1a2b48!important;
  font-size: 16px;
  font-weight: 500;
}

.reviews .review-form .form-wrapper {
  border-top-color: #ff0000;
}

.invalid-feedback {
  font-size: 100%;
}

input.form-control {
  height: 40px;
}
.form-control {
  border: 1px solid #dae1e7;
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
}

.reviews .review-form .form-wrapper textarea.form-control {
  min-height: 350px;
  margin-top: 15px;
}

.form-control {
  border: 1px solid #dae1e7;
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
}

.reviews .review-form .form-wrapper .review-items {
  background: #fff;
  padding: 25px 30px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 15px;
  min-height: 350px;
}

.reviews .review-form .form-wrapper .review-items .item {
  margin-bottom: 10px;
}

.reviews .review-form .form-wrapper .review-items .item label {
  font-size: 14px;
  font-weight: 500;
  color: #768090;
  margin-bottom: 4px;
}

.reviews .review-form .form-wrapper .review-items .item .rates {
  position: relative;
}

.reviews .review-form .form-wrapper .review-items .item .fa.grey {
  color: #5e6d77;
}

.reviews .review-form .form-wrapper .review-items .item .fa:not(:last-child) {
  margin-right: 8px;
}

.reviews .review-form .form-wrapper .review-items .item .fa {
  cursor: pointer;
  font-size: 18px;
}


.fa-star-o:before {
  content: "\f006";
}

.reviews .review-form .btn {
  background: #5191fa;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  padding: 10px 20px;
  transition: background .2s,color .2s;
  margin-top: 10px;
}

.reviews .review-form .btn {
  background: #5191FA;
}

 .far.selected {
  color: #ffdc00;
}

.fa.grey {
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  font-size: 20px;
}

.fa.star-selected {
  -webkit-text-fill-color: yellow;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  font-size: 20px;
}

.reviews .review-form .form-wrapper {
  border-top-color: #5191FA;
}

.reviews .review-form .form-wrapper {
  margin-top: 15px;
  padding: 30px;
  background: #f9f9f9;
  border: 1px solid #d7dce3;
  border-top: 4px solid #5191fa;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*---------------- Start Review List ---------------- */

.review-star {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.review-star li {
  list-style: none;
  margin-right: 5px;
  float: left;
}

.review-star li .fa, .review-star li .far {
  color: #ffdc00;
  font-size: 16px;
}

.table-hover .review-items {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px 15px 0;
  margin-top: 30px;
}

.table-hover .left {
  float: left;
}

.btn-show-info-review {
  text-decoration: none;
  float: right;
  color: #000;
}

.badge{
  font-size:12px;
  text-transform:capitalize;
  min-width:50px;
  display:inline-block
}

.badge.badge-active,.badge.badge-approved,.badge.badge-publish{
  color:#fff;
  background-color:#28a745
}

.badge.badge-pending{
  color:#212529;
  background-color:#ffc107
}

.badge.badge-spam{
  color:#fff;
  background-color:#dc3545
}

.badge.badge-draft,.badge.badge-trash{
  color:#fff;
  background-color:#6c757d
}

.badge.badge-deactivate{
  color:#212529;
  background-color:#ffc107
}

.reviews_section {
  padding-top: 3em;
  padding-bottom: 3em;
  margin-bottom: 3em;
  padding-right: 3em;
  padding-left: 3em;
}

@media only screen and (max-width: 479px){
  .reviews_section {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

.business-category img {
  height: 180px;
  width: 270px;
}

@media only screen and (max-width: 479px) {
  .business-category img {
    height: 90%;
    width: 100%;
  }
}

.title-category {
  letter-spacing: 0px;
  margin: 0px;
  min-width: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: black;
  padding-bottom: 8px;
  font-family: Poppins,sans-serif;
}

/* ------- Fotorama -------- */

.fotorama__html div,
.fotorama__html a {
  display: block;
  height: 100%;
  /* Transparent links are not clickable in IE,
     but non-existent background fixes this.
    (Put an empty 1×1 image here to avoid
     errors in console.) */
  background: url(_.gif);
}

/* Dots inside the fotorama container */
.fotorama__nav {
  margin-top: -30px !important;
  z-index: 20;
}
.fotorama__dot {
  border-color: #eee;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .5);
}
.fotorama__active .fotorama__dot {
  background-color: #eee;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}
.fotorama__nav__frame .fotorama__dot{
  border-width: 5px !important;
}
.fotorama__nav__frame.fotorama__active .fotorama__dot{
  border-width: 5px !important;
  border-color: #ffffff !important;
}

/* ------- Override to Red (bootstrap, etc) -------- */

.btn-outline-primary {
  color: #5BB318;
  border-color: #5BB318;
}

.btn-outline-primary:hover {
  border-color: #5BB318;
  background-color: #5BB318;
}

.btn-primary {
  background-color: #5BB318;
  border-color: #5BB318;
}

.btn-primary:hover {
  border-color: #5BB318;
  background-color: #2B7A0B;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  background-color: #5BB318;
  border-color: #5BB318;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgb(220 61 106/ 50%)
}

.navgition .navbar .navbar-nav .nav-item.active > a, .navgition .navbar .navbar-nav .nav-item:hover > a {
  color: #5BB318;
}

.header-hero .header-content .header-btn li a.main-btn.btn-one::before {
  background-image: -webkit-linear-gradient(left, #5BB318, #000000);
  background-image: -o-linear-gradient(left, #5BB318, #000000);
  background-image: linear-gradient(to right, #5BB318, #000000);
}

.header-hero .header-content .header-btn li a.main-btn.btn-one:hover::before {
  background-image: -webkit-linear-gradient(right, #5BB318, #000000);
  background-image: -o-linear-gradient(right, #5BB318, #000000);
  background-image: linear-gradient(to left, #5BB318, #000000);
}

.navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
  background-color: #5BB318;
}

.contact-form .single-form .main-btn {
  background-color: #5BB318;
}

.contact-form .single-form .main-btn:hover {
  border-color: #5BB318;
  background-color: #2B7A0B;
}

.call-to-action {
  background-color: #5BB318;
}

.features-content .features-icon i {
  color: #5BB318;
}

.back-to-top {
  background-color: #5BB318;
}

.single-pricing .pricing-btn .main-btn {
  background-color: #bdb7b9;
  border-color: #9f999b;
}

.main-btn-pro {
  background-color: #5BB318 !important;
  border-color: #5BB318 !important;
}

.sing-up-btn:hover {
  border: 1px solid #5BB318;
  background: #2B7A0B;
  color: #FFF;
}

.call-action-content .call-newsletter i {
  color: #5BB318;
}

.call-action-content .call-newsletter button {
  background-color: #5BB318;
}

@media only screen and (max-width: 479px){
  .call-action-content .call-newsletter button {
    background-color: #FFFFFF;
  }
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  border-color: #5F8D4E;
  background-color: #2B7A0B;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgb(220 61 106/ 50%);
}

.btn-primary.focus, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgb(220 61 106/ 50%);
}

.btn.focus, .btn:focus {
  box-shadow: 0 0 0 0.2rem rgb(220 61 106/ 50%);
}

.reviews .review-form .btn {
  background: #5BB318;
}

.footer-link ul li a:hover {
  color: #5BB318;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #5BB318;
}

.navgition .navbar .navbar-nav .nav-item a.sing-up-btn:hover{
  border: 1px solid #5F8D4E;
  background-color: #2B7A0B;
  color: #FFF;
}

.auth-form .single-form .main-btn {
  background: #5BB318;
}

.btn-link {
  color: #5BB318;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #5BB318;
  border-color: #5BB318;
}

.page-link {
  color: #5BB318;
}

.page-link:hover {
  color: #2B7A0B;
}

.card-link {
  color: #5BB318;
}

a {
  color: #5BB318;
}

a:hover {
  color: #2B7A0B;
}

.reviews .review-box .review-box-score .review-score, .reviews .review-box .review-box-score  {
  color: #5BB318;
}

/*------------------------ START - Service ------------------- */

.service-header {
  margin-top: 20px;
}

.sidebar-menu-buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.button-service-menu {
  margin: 3px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cecece;
}

.service-name, .service-name-book {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  text-transform: capitalize;
  max-width: 650px;
}

.service-name-book {
  max-width: 400px;
  color: black;
}

@media only screen and (max-width: 479px){
  .service-name {
    margin-left: 15px;
  }

  .service-name-book {
    margin-left: 10px;
    margin-right: 15px;
  }
}

.service-price, .service-price-label, sel-service-price-label {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  text-transform: capitalize;
  color: #000000;
}

.sel-service-price-label {
  font-size: 14px;
  float: left;
  color: #000000;
}

.service-price-label {
  float: left;
}

.service {
  margin-right: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cecece;
  width: 100%;
}

.check-sel-service {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.service-duration-label {
  font-weight: 800;
  color: #806060;
  padding-left: 45px;
  padding-right: 5px;
  float: left;
}

.service-duration {
    font-weight: 800;
    color: #806060;
}

.service-description {
  width: 97%;
}

.special-price-label {
  color: darkgrey;
  font-size: 12px;
}

.special-price {
  color: darkgrey;
  text-decoration: line-through;
  font-size: 12px;
}

.sel-duration-label, .sel-duration, .sel-total-duration-label, .sel-total-duration {
  color: darkgrey;
  font-size: 12px;
  padding-right: 3px;
}

.sel-duration {
  color: darkgrey;
  font-size: 12px;
}

.services-list a {
  color: black;
}

.sel-service-name {
  max-width: 250px;
  font-weight: 600;
  color: black;
}

.sel-service-name-long {
  max-width: 750px;
  font-weight: 600;
  color: black;
}

.sel-service-price {
  font-weight: 600;
  color: black;
}

.service-checked {
  border: 1px solid #f8b7b7;
  background-color: #fdf1f1;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  margin: 0px;
  margin-right: 5px;
  color: #000000;
  margin-top: 5px;
}

.service-unchecked {
  border: none;
  background-color: #ffffff;
}

.sel-service-items {
  border-bottom: 1px solid #cecece;
}

.sel-service-item {
  border-bottom: 1px dotted #f7f4f4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sel-service-item:last-child {
  border-bottom: none;
}

.sel-service-total-label, .sel-service-total-price-label , .sel-service-total-price, .sel-service-total-price-type {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
  text-transform: capitalize;
  color: #000000;
}

.sel-service-total-price-label, .sel-service-total-price-type {
  float: left;
}

.sel-total-section {
  padding-right: 15px;
}

div#services-list {
  margin: 10px;
}

/*------------------------ START - Booking ------------------- */

.time-selector-w.style-timebox {
  margin-top: 0px;
}
.time-selector-w {
  display: none;
  margin-top: 0px;
  margin-left: -2px;
  margin-right: -2px;
}
.time-selector-w.style-timebox .times-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.times-header {
  color: #16171d;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
}
.time-selector-w.style-timebox .times-header .th-line {
  content: "";
  background-color: rgba(0,0,0,0.1);
  height: 1px;
  flex: 1;
}

.time-selector-w.style-timebox .times-header .times-header-label {
  font-size: 16px;
  flex: 1;
  margin: 0px 10px;
  white-space: nowrap;
}

.times-header-label span {
  color: #5BB318;
}

.os-times-w {
  position: relative;
}

.time-selector-w.without-end-time.time-system-12 .timeslots {
  grid-template-columns: repeat(4, 1fr);
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.time-selector-w.style-timebox .timeslots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.timeslots {
  display: flex;
  justify-content: space-between;
}
.dp-timebox {
  text-align: center;
  padding: 8px 3px;
  line-height: 1.1;
  background-color: #caffc4;
  border: 1px solid #caffc4;
  border-radius: 4px;
  font-size: 12px;
  color: #185210;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  width: auto !important;
  max-width: none !important;
}
.dp-timebox .dp-tick, .dp-timebox .dp-success-label {
  display: none !important;
}
.dp-timebox:hover {
  border-color: #6bd25b;
  background-color: #d0fbcb;
}
.dp-timebox.is-off, .dp-timebox.is-booked {
  color: #b3bbca;
  background-color: #f3f5f9;
  box-shadow: none;
  border: 1px solid #f3f5f9;
  cursor: not-allowed;
}

.dp-timebox.no-timeslots {
  color: #000000;
  background-color: #f3f5f9;
  box-shadow: none;
  border: 1px solid #f3f5f9;
  cursor: not-allowed;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 700;
}

div#datepickers {
  margin-left: 15px;
  margin-bottom: 15px;
}

.ui-datepicker-buttonpane.ui-widget-content {
  display: none;
}

.wizard-buttons-up {
  margin-top: -10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 479px){
  .wizard-buttons-up {
    margin-top: 10px;
  }
}

/*------------------------ START - Booking Staff ------------------- */

.staff-items.staff-as-grid.staff-three-columns {
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 17px;
  row-gap: 17px;
  padding: 20px;
}

@media only screen and (max-width: 479px){
  .staff-items.staff-as-grid.staff-three-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.staff-as-grid {
  display: grid;
}

.staff-items.staff-as-grid .staff-item {
  text-align: center;
}

.staff-items .staff-item {
  position: relative;
}

.staff-animated-self {
  animation: 0.4s cubic-bezier(0.45, 1, 0.4, 1.2) 0ms LatepointSlideUp;
  animation-fill-mode: both;
}

.staff-item-i {
  border-radius: 4px;
  display: block;
  padding: 10px;
  cursor: pointer;
  background: #FFFFFF;
  border: 2px solid #E5E7EE;
  align-items: center;
  box-shadow: none;
  outline: none;
  color: #1f222b;
  text-decoration: none;
}

.staff-item-i:hover {
  border-color: #5BB318;
  box-shadow: 4px 4px 0px 0px #f8cddf;
}

.staff-items.staff-as-grid .staff-item .staff-item-i .staff-item-img-w.staff-with-avatar {
  padding: 2px 45px 2px;
}

.staff-items.staff-as-grid .staff-item .staff-item-i .staff-item-img-w {
  border-radius: 4px;
  flex: 1;
  height: auto;
  padding-bottom: 100%;
  margin: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  display: block;
}

.staff-items.staff-as-grid .staff-item .staff-item-i .staff-item-img-w.staff-with-avatar .staff-avatar {
  background-size: cover;
  background-position: center center;
  padding-bottom: 100%;
  border-radius: 50%;
}

.staff-items.staff-as-grid .staff-item .staff-item-i .staff-item-name-w {
  padding-bottom: 0px;
  padding-top: 10px;
}

.staff-items .staff-item .staff-item-i .staff-item-name-w {
  padding: 5px 0px;
  margin-right: auto;
  display: block;
  transition: transform 0.2s ease-out;
}

.staff-items .staff-item .staff-item-i .staff-item-name-w .staff-item-name {
  font-weight: 500;
  font-size: 16px;
  display: block;
}

/*------------------------ START - Booking Confirm ------------------- */

.info-title {
  border-bottom: 2px solid #ddd;
  font-weight: 500;
}

.text-left {
  text-align: left!important;
}

.booking_confirm {
  padding-left: 50px;
  padding-right: 50px;
}

@media only screen and (max-width: 479px){
  .booking_confirm {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.bg-primary-soft {
  background-color: rgba(40,110,251,.1);
  color: #286efb;
}
.staff-rdo {
  display: block;
}

.staff-rdo > input {
  visibility: hidden;
  position: absolute;
}

.staff-rdo > input + div {
  cursor: pointer;
  background-color: #5BB318;
  border: 2px solid #f1f1f1;
  border-radius: 4px;
}

.text-muted {
  color: #6c757d!important;
}

.staff-rdo > input + div:hover {
  border: 2px solid #5BB318;
}

.button-confirm-pay {
  width: 400px;
}

@media only screen and (max-width: 479px){
  .button-confirm-pay {
    width: 100%;
    height: 100%;
    line-height: 12px;
    padding-bottom: 10px;
  }
}

.button-confirm-pay > i{
  background-color: #5BB318;
  color: #ffffff !important;
  margin-right: 10px;
}

.buttons-payment {
  display: flex;           /* establish flex container */
  flex-direction: column;  /* make main axis vertical */
  justify-content: center; /* center items vertically, in this case */
  align-items: center;     /* center items horizontally, in this case */
  margin-bottom: 50px;
  margin-top: 0px;
}

label {
  font-weight: 700;
  color: #000000;
  margin-bottom: .3rem;
}

.row-social-account {
  margin-bottom: 2em;
  text-align: center;
  font-size: 18px;
}

.row-account {
  margin-bottom: 2em;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #121212;
}

.not-user-account {
  margin-right: 10px;
  margin-top: 2em;
}

.create-user-account {
  font-weight: 600;
}

.step_back_btn {
  color: #000000;
  background-color: #f9fafc;
  border-color: #6c757d;
  width: 100px;
}

.step_exit_btn {
  color: #000000 !important;
  background-color: #f9fafc !important;
  border-color: #6c757d !important;
  width: 100px;
}

.step-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  padding: 12px 20px;
  border-bottom: 1px solid #f1f3f7;
  color: #8d97ad;
}

a.create-user-account {
  color: #5BB318;
}


/*------------------------ START - Mobile Phone Prefix ------------------- */

.mobile-phone-control {
  border: none;
  border-left: 1px solid #dae1e7;
}

.mobile-prefix-selector {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: inherit;
  position: relative;
  min-width: 65px;
  width: 95px;
  transition: width 200ms ease-in-out 0s;
}

.select-mobile-prefix {
  opacity: 0;
  position: absolute;
  width: 100%;
}

.input-mobile-prefix {
  appearance: none;
  background-color: inherit;
  outline: 0px;
  width: 100%;
  border: 0px;
  border-radius: 0px;
  text-align: center;
  text-align-last: center;
  color: inherit;
  padding-right: 16px;
}

.mobile-prefix-selector svg {
  position: absolute;
  right: 12px;
  pointer-events: none;
}

.mobile-prefix-svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.mobile-prefix-section {
  position: relative;
  display: flex;
  border-radius: 4px;
  border: 1px solid rgb(213, 215, 218);
  background-color: rgb(255, 255, 255);
  width: 100%;
  overflow: hidden;
}


/*------------------------ START - Social Login ------------------- */

.btn-fb, .fb_button {
  color: #fff;
  background-color: #2d4373;
  padding: 5px;
}

.btn-fb:hover, .fb_button:hover {
  color: #fff;
  background-color: #344e86;
  border-color: #324c82;
  padding: 5px;
}

.btn-lkin {
  color: #fff;
  background-color: #426d9b;
  padding: 5px;
}

.btn-lkin:hover {
  color: #fff;
  background-color: #4682b4;
  border-color: #4673a5;
  padding: 5px;
}

.btn-tw {
  color: #fff;
  background-color: #0087ba;
  padding: 5px;
}

.btn-tw:hover {
  color: #fff;
  background-color: #0099d4;
  border-color: #0096ce;
  padding: 5px;
}

.btn-google {
  color: #fff;
  background-color: #7DCE13;
  padding: 5px;
}

.btn-google:hover {
  color: #fff;
  background-color: #7DCE13;
  border-color: #7DCE13;
  padding: 5px;
}

.btn-mail-section{
  margin-bottom: 10px;
  background-color: #5BB318;
}

.btn-mail {
  color: #fff;
  background-color: #5BB318;
  margin-bottom: 0px;
  padding: .275rem .75rem;
}

.btn-mail:hover {
  color: #fff;
  background-color: #5BB318;
  border-color: #5BB318;
}

/*------------------------ START - Menu User Profile ------------------- */

.user-profile {
  margin-right: -120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #5BB318;
  padding: 7px 18px;
  position: relative;
  border-radius: .5rem;
}

.user-profile img.avatar {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 12px;
  max-width: 100%;
}

.notification-area .dropdown-toggle, .user-name.dropdown-toggle {
  position: relative;
}

.user-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.user-name i {
  margin-left: 10px;
  font-size: 21px;
  vertical-align: middle;
  position: relative;
}

#main_alert{
  display: none;
}

.section-title h1 {
  font-size: 25px;
}

.section-title h2 {
  font-size: 22px;
}

.section-title h3 {
  font-size: 18px;
}


.section-title ul li {
  list-style-type: circle;
  margin-left: 40px;
}
