@charset "UTF-8";
/*
--------------------------
	Css Indexing
--------------------------
	Table of Css Content
	------- *** -------
--------------------------
** 
--------------------------
**  
--------------------------
**
--------------------------
** 
--------------------------
** 
--------------------------
** 
--------------------------
** 
--------------------------

*/
/*-----------------
    @Typography
-----------------*/
/*@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");*/
/*---------------------------
** Global style
---------------------------*/
.mybtn1 {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 30px;
  display: inline-block;
  color: #fff;
  background: #11b997;
  border: 1px solid #11b997;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
}
.mybtn1:hover {
  color: #11b997;
  background: #fff;
}

.mybtn2 {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 30px;
  display: inline-block;
  color: #fff;
  background: #53bc1c;
  border: 0px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.15);
}
.mybtn2 i {
  font-size: 14px;
  margin-left: 0px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.mybtn2:hover {
  color: #fff;
}
.mybtn2:hover i {
  margin-left: 7px;
  opacity: 1;
}

.remove-padding {
  padding: 0px;
}

.link-banner {
  position: relative;
}
.link-banner img {
  max-width: 100%;
}
.link-banner:before,
.link-banner:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
.link-banner:after {
  bottom: 0;
  right: 0;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.link-banner:hover:before,
.link-banner:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 0;
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
}

.mt-30 {
  margin-top: 30px;
}

.linked-banner-area {
  padding: 100px 0px 100px;
}
.linked-banner-area img {
  max-width: 100%;
}

.scrolldown a {
  position: absolute;
  width: 30px;
  height: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
  z-index: 9;
}

.scrolldown a::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.mix {
  display: none;
}

.remove-col-padding {
  padding: 0;
}

.navbar-toggler {
  border: none !important;
  margin: 0px;
  padding: 0px;
  margin-right: 30px;
}

.navbar-toggler:focus {
  outline: 0px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

.bottomtotop i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  background: #11b997;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  bottom: 50px;
  right: 15px;
  -webkit-box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.2);
  z-index: 80;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.section-top {
  text-align: left;
}
.section-top .section-title {
  font-size: 24px;
  line-height: 38px;
  font-weight: 600;
  color: #53bc1c;
  display: inline-block;
  float: left;
  margin-right: 20px;
}
.section-top .link {
  display: inline-block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 600;
  color: #0663fc;
  text-decoration: underline;
}

@-webkit-keyframes scaleicon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleicon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.input-field {
  width: 100%;
  height: 50px;
  padding: 0 0px;
  border-radius: 0px;
  color: #58606f;
  margin-bottom: 15px;
  border: 0px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.input-field::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.input-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.input-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.input-field:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #0663fc !important;
}
.input-field.textarea {
  min-height: 137px;
  padding: 15px 0px;
  resize: none;
}
.input-field.error {
  border: 0px;
  border-bottom: 1px solid red;
}

.video-play-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #0663fc;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}
.video-play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #0663fc;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -3;
}
.video-play-btn i {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: text-color;
  animation-name: text-color;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  position: inherit;
  z-index: 9;
  color: #fff;
  font-size: 30px;
  line-height: 100px;
}

.email-success {
  display: block;
  width: 100%;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs > [class*="col-"] {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    direction: ltr;
  }
}
/*-------------------------
    Preloader Css
---------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.preloader.hide {
  opacity: 0;
  display: none;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}

.loader-1 .loader-outter {
  position: absolute;
  border: 4px solid #0663fc;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader-1 .loader-inner {
  position: absolute;
  border: 4px solid #0663fc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #ff5500;
  border-radius: 0.25rem;
}

.tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #ff5500;
}

.tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.tooltip.bs-tooltip-left .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #ff5500;
}

.owl-carousel {
  z-index: 0 !important;
}

/*----------------------------------
Main Breadcrumb Area Start
------------------------------------*/
.main-breadcrumb-area {
  padding: 70px 0px 75px;
  background: url(../images/bigbanner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: left;
  position: relative;
}
.main-breadcrumb-area .pagetitle {
  font-weight: 600;
  color: #fff;
  font-size: 40px;
  line-height: 50px;
}
.main-breadcrumb-area .pages li {
  display: inline-block;
}
.main-breadcrumb-area .pages li a {
  position: relative;
  margin-right: 30px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}
.main-breadcrumb-area .pages li a::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  right: -23px;
}
.main-breadcrumb-area .pages li:last-child a {
  margin-right: 0px;
}
.main-breadcrumb-area .pages li:last-child a::after {
  display: none;
}

#map {
  width: 100%;
  height: 350px;
}

/* Date Picker Css  Start */
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
/*====================
** Normalize
====================*/
html {
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  margin: 0;
  color: #58606f;
  overflow-x: hidden;
  background: #ffffff;
  padding-top: 118px;
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 52px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 26px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 22px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #58606f;
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 16px;
  color: #58606f;
  line-height: 1.625;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

a {
  color: #58606f;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

/*-------------------------
    Top Header Area Start
--------------------------*/
.top-header {
  padding: 5px 15px;
  background: #11b997;
}
.top-header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-header .content .left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-header .content .left-content .language-selector {
  margin-right: 10px;
  display: inline-block;
}
.top-header .content .left-content .language-selector i {
  color: #fff;
  font-size: 16px;
  margin-top: 2px;
}
.top-header .content .left-content .language-selector .language {
  border: none;
  color: #fff;
  cursor: pointer;
  background: none;
  font-size: 14px;
}
.top-header .content .left-content .language-selector .language option {
  color: #333;
}
.top-header .content .left-content .sign-log {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-header .content .left-content .sign-log i {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 2px;
  margin-right: 5px;
}
.top-header .content .left-content .sign-log .links a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #fff;
}
.top-header .content .left-content .sign-log .links span {
  color: #fff;
  font-size: 14px;
}
.top-header .content .left-content .language-selector .nice-select {
  margin: 0px;
  line-height: 20px !important;
  height: auto !important;
}
.top-header .content .left-content .language-selector .nice-select .option {
  color: #222;
}

.top-header .content .left-content .language-selector .nice-select:after {
  color: #fff;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.top-header .content .right-content {
  display: flex;
}

.top-header .content .right-content .social-link {
  display: inline-block;
  margin-right: 20px;
}
.top-header .content .right-content .social-link li {
  display: inline-block;
}
.top-header .content .right-content .social-link li a {
  font-size: 14px;
  margin-left: 4px;
  color: #fff;
}

.user-top-menu-area {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.user-top-menu-area::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: #fff;
}

.user-top-menu-area .login-button a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.user-top-menu-area .user-d-d {
  position: relative;
}
.user-top-menu-area .user-d-d .u-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.user-top-menu-area .user-d-d .u-name i {
  margin-right: 4px;
}
.user-top-menu-area .user-d-d .user-d-d-menu {
  position: absolute;
  right: 0px;
  top: 100%;
  min-width: 180px;
  background: #fff;
  padding: 7px 0px;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.user-top-menu-area .user-d-d:hover .user-d-d-menu {
  opacity: 1;
  visibility: visible;
}

.user-top-menu-area .user-d-d .user-d-d-menu a {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  padding: 0px 15px;
  display: block;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.user-top-menu-area .user-d-d .user-d-d-menu a i {
  margin-right: 4px;
}

.user-top-menu-area .user-d-d .user-d-d-menu a:hover {
  color: #0663fc;
}

/*-------------------------
   Main Menu Area Start
--------------------------*/
.mainmenu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin-top: 0px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.mainmenu-area nav {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.mainmenu-area .navbar {
  padding: 0px 0px;
}
.mainmenu-area.nav-fixed .top-header {
  display: none;
}

.mainmenu-area .navbar {
  position: relative;
}
.mainmenu-area .navbar .navbar-brand {
  padding: 0px;
  margin: 0px;
}
.mainmenu-area .navbar #main_menu {
  padding-left: 60px;
}
.mainmenu-area .navbar #main_menu .navbar-nav {
  position: relative;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-item {
  padding: 0px;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 0px;
  margin: 0px;
  border: none;
  border-radius: 0px;
}
.mainmenu-area
  .navbar
  #main_menu
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item {
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  padding: 6px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.mainmenu-area
  .navbar
  #main_menu
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item
  i {
  margin-right: 5px;
  font-size: 12px;
}
.mainmenu-area
  .navbar
  #main_menu
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item:hover,
.mainmenu-area
  .navbar
  #main_menu
  .navbar-nav
  .nav-item
  .dropdown-menu
  .dropdown-item.active {
  color: #fff;
  background: #11b997;
}
.mainmenu-area
  .navbar
  #main_menu
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:last-child {
  border-bottom: 0px;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link {
  color: #050e33;
  line-height: 24px;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  font-weight: 600;
  padding: 22px 25px;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  position: relative;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background: #11b997;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link.active,
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link:hover {
  color: #11b997;
}
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link.active::before,
.mainmenu-area .navbar #main_menu .navbar-nav .nav-link:hover::before {
  width: 80%;
}

.serch-icon-area {
  top: 21px;
  margin: 0px;
  padding: 0px;
  position: absolute;
  right: 0px;
}
.serch-icon-area #web-serch {
  cursor: pointer;
  margin-bottom: 0px;
}
.serch-icon-area #web-serch i {
  color: black;
  cursor: pointer;
}

.search-form-area-mobile {
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  padding: 0px 50px 0px 0px;
  display: none;
  z-index: 91;
}
.search-form-area-mobile .off-serch {
  position: absolute;
  right: 0px;
  top: 18px;
  font-size: 24px;
  right: 10px;
  color: #666;
  cursor: pointer;
}
.search-form-area-mobile input {
  width: 100%;
  height: 69px;
  z-index: 91;
  border: 0px;
  padding: 0px 0px 0px;
  font-size: 16px;
}
.search-form-area-mobile input:focus {
  outline: none;
  border: 0px;
}
.search-form-area-mobile.open {
  display: block;
}
.search-pc .search-form-area-mobile .search-form2 {
  align-items: center;
}

/*-------------------------------
  Hero  Area CSS Start
--------------------------------*/
.hero-area {
  padding: 149px 0px 160px;
  background: url(../images/bigbanner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-area .content {
  text-align: center;
}
.hero-area .content .title {
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  font-weight: 700;
}
.hero-area .content .sub-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}
.hero-area .content .search-location {
  background: #fff;
  margin-top: 30px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
}
.hero-area .content .search-location .my-col1 {
  -webkit-box-flex: 40%;
  -ms-flex: 40%;
  flex: 40%;
  width: 40% !important;
  position: relative;
}
.hero-area .content .search-location .my-col1 i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  left: 10px;
  font-size: 26px;
  color: #777;
}
.hero-area .content .search-location .my-col2 {
  -webkit-box-flex: 40%;
  -ms-flex: 40%;
  flex: 40%;
  width: 40% !important;
  position: relative;
}
.hero-area .content .search-location .my-col2 i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  left: 10px;
  font-size: 26px;
  color: #777;
}
.hero-area .content .search-location .my-col3 {
  -webkit-box-flex: 20%;
  -ms-flex: 20%;
  flex: 20%;
  width: 20% !important;
}
.hero-area .content .search-location .date-range {
  width: 100%;
  height: 50px;
  padding: 0px 30px 0px 50px;
  border-radius: 50px;
  border: 0px;
}
.hero-area .content .search-location .search-btn {
  width: 100%;
  height: 50px;
  background: #0663fc;
  border: 1px solid #0663fc;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.hero-area .content .search-location .search-btn i {
  font-size: 14px;
  margin-right: 7px;
}
.hero-area .content .search-location .search-btn:focus {
  outline: 0px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
.hero-area .content .search-location .search-btn:hover {
  background: none;
  color: #0663fc;
}

span.select2.select2-container.select2-container--default.select2-container--above.select2-container--focus,
.select2-container {
  width: 100% !important;
  border: 0px;
}

.select2-container .select2-selection--single {
  height: 50px;
  text-align: left;
  border-radius: 50px;
  padding: 0px 30px 0px 45px;
  border: 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered:focus,
.select2-container .select2-selection--single:focus {
  outline: 0px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border: 0px;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-radius: 25px;
}

/*-------------------------------
  Hero  Area CSS End
--------------------------------*/
/*-------------------------------
Feature Area Start
--------------------------------*/
.feature-area {
  padding: 50px 0px 50px;
}

.single-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-feature .left-area {
  margin-right: 30px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.single-feature .left-area img {
  max-width: 70px;
}
.single-feature .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.single-feature .right-area .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0px;
}
.single-feature .right-area .text {
  margin-bottom: 0px;
}

/*-------------------------------
Feature Area End
--------------------------------*/
/*-------------------------------
Trending Tour Area Start
--------------------------------*/
.tranding-tour {
  padding: 62px 0px 70px;
  background: url(../images/tt-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tranding-tour .header-area {
  margin-bottom: 22px;
}
.tranding-tour .header-area .title {
}

.tour-slider {
  position: relative;
}
.tour-slider .owl-controls .owl-nav .owl-prev,
.tour-slider .owl-controls .owl-nav .owl-next {
  font-size: 14px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  top: -45px;
  line-height: 30px;
  opacity: 1;
  background: #fff;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.tour-slider .owl-controls .owl-nav .owl-prev:hover,
.tour-slider .owl-controls .owl-nav .owl-next:hover {
  background: #e4f8ff;
}
.tour-slider .owl-controls .owl-nav .owl-prev {
  right: 40px;
}
.tour-slider .owl-controls .owl-nav .owl-next {
  right: 0%;
}

.single-tours {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-tours .img-area {
  position: relative;
  overflow: hidden;
}
.single-tours .img-area img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-tours .img-area .discount {
  position: absolute;
  font-size: 14px;
  color: #fff;
  background: #000;
  height: 20px;
  width: 100px;
  left: -25px;
  top: 10px;
  text-align: center;
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
  z-index: 3;
}
.single-tours .img-area .feature {
  top: 20px;
  position: absolute;
  padding: 0px 10px 0px 20px;
  border-radius: 50px 0px 0px 50px;
  right: 0px;
  font-size: 14px;
  color: #fff;
  background: #11b997;
  height: 20px;
  z-index: 3;
}
.single-tours .content {
  padding: 20px 20px 10px;
  position: relative;
}
.single-tours .content .add-favotite {
  position: absolute;
  right: 20px;
  top: -15px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #11b997;
  border-radius: 50%;
  border: 2px solid #fff;
}
.single-tours .content .country {
  font-size: 13px;
  margin-bottom: 5px;
}
.single-tours .content .country i {
  font-size: 10px;
  margin-right: 5px;
}
.single-tours .content .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  height: 37px;
}
.single-tours .content .review-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-top: 0px;
}
.single-tours .content .review-area .stars {
  margin-right: 15px;
}
.single-tours .content .review-area .stars li {
  display: inline-block;
  font-size: 12px;
  margin-right: -4px;
  color: #53bc1c;
}
.single-tours .content .review-area .review {
  font-size: 14px;
  position: relative;
  top: 3px;
  color: #58606f;
}
.single-tours .content .price-area-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.single-tours .content .price-area-wrapper .left-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-tours .content .price-area-wrapper .left-area .icon {
  color: #11b997;
  margin-right: 10px;
}
.single-tours .content .price-area-wrapper .left-area .price {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #58606f;
}
.single-tours .content .price-area-wrapper .left-area .price small {
  display: block;
  font-size: 10px;
  line-height: 12px;
  color: #11b997;
}
.single-tours:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.single-tours:hover .img-area img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.time-counter {
  margin-top: 0px;
  display: block;
}

.time-counter span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #2a3a57;
  margin-bottom: 0px;
}

.time-counter span:last-child {
  margin-right: 0px;
}

.time-counter span small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #ff431e;
}

/*-------------------------------
Trending Tour Area End
--------------------------------*/
/*-------------------------------
Top Dastination Area start
--------------------------------*/
.top-dastination {
  padding: 62px 0px 40px;
}
.top-dastination .header-area {
  margin-bottom: 22px;
}
.header-area .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
}

.single-destination {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 30px;
}
.single-destination img {
  max-width: 100%;
}
.single-destination .overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(black),
    color-stop(40%, rgba(0, 0, 0, 0.6)),
    color-stop(70%, rgba(0, 0, 0, 0.4)),
    color-stop(90%, rgba(0, 0, 0, 0.1)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    bottom,
    black 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    to top,
    black 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-destination .content {
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-destination .content .title {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.single-destination .content .tour-count {
  display: inline-block;
  border-radius: 50px;
  margin: 2px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-destination .content .tour-count button {
  background: #11b997;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 50px;
  border: 0px;
  font-weight: 600;
}
.single-destination .content .tour-count button:focus {
  outline: none;
}
.single-destination:hover .overlay {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(black),
    color-stop(40%, rgba(0, 0, 0, 0.6)),
    color-stop(70%, rgba(0, 0, 0, 0.4)),
    color-stop(90%, rgba(0, 0, 0, 0.1)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    bottom,
    black 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    to top,
    black 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 1;
}
.single-destination:hover .content {
  bottom: 20px;
}
.single-destination:hover .content .tour-count {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/*-------------------------------
Top Dastination Area End
--------------------------------*/
/*-------------------------------
all turs area Start
--------------------------------*/
.all-turs {
  background: #f8f9fb;
  padding: 62px 0px 40px;
}
.all-turs .header-area {
  margin-bottom: 22px;
}
.all-turs .header-area .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.all-turs .single-tours {
  margin-bottom: 30px;
  display: block;
}

/*-------------------------------
all turs area End
--------------------------------*/
/*-------------------------------
  Testimonial Area CSS Start
--------------------------------*/
.testimonial {
  padding: 62px 0px 65px;
  position: relative;
  background: url(../images/testimonialbg.png);
}
.testimonial .section-heading {
  margin-bottom: 22px;
  text-align: left;
}
.testimonial .section-heading .title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.testimonial .section-heading .text {
  font-size: 16px;
  font-weight: 26px;
  font-weight: 600;
  color: #fff;
}
.testimonial .single-testimonial .review-text {
  background: #ffffff33;
  padding: 25px 30px 50px;
  position: relative;
  border-radius: 10px;
}
.testimonial .single-testimonial .review-text p {
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.testimonial .single-testimonial .review-text img {
  position: absolute;
  width: auto;
  right: 10px;
  bottom: 10px;
}
.testimonial .single-testimonial .people {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonial .single-testimonial .people .img {
  display: inline-block;
}
.testimonial .single-testimonial .people .img img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}
.testimonial .single-testimonial .people .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.testimonial .single-testimonial .people .content .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0px;
}
.testimonial .single-testimonial .people .content .designation {
  font-size: 14px;
  line-height: 20px;
  color: #f7f7f7;
  margin-bottom: 0px;
}
.testimonial .owl-controls {
  position: relative;
}
.testimonial .owl-controls .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.testimonial .owl-controls .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background: #ddd;
  display: inline-block;
  border-radius: 50%;
  margin: 0px 3px 0px;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.testimonial .owl-controls .owl-dots .owl-dot.active {
  background: #000;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*-------------------------------
Testimonial Area CSS End
 --------------------------------*/
/*-------------------------------
Blog Area CSS Start
--------------------------------*/
.blog {
  padding: 65px 0px 65px;
  background: #f8f9fb;
}
.blog .section-heading {
  margin-bottom: 22px;
  text-align: left;
}
.blog .section-heading .title {
  font-size: 28px;
  font-weight: 700;
}
.blog .section-heading .text {
  font-size: 16px;
  font-weight: 26px;
  font-weight: 600;
}
.blog .view-all-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
  text-decoration: underline;
}

.single-blog {
  background: #fff;
  display: block;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-blog .img {
  position: relative;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.single-blog .img img {
}
.single-blog .content {
  padding: 23px 15px 11px;
}
.single-blog .content .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #58606f;
}
.single-blog .content .text p {
  font-size: 14px;
  margin-bottom: 2px;
}
.single-blog .content .top-meta {
  margin-bottom: 0px;
}
.single-blog .content .top-meta li {
  display: inline-block;
  margin-right: 10px;
}
.single-blog .content .top-meta li span {
  font-size: 14px;
  color: #58606f;
  margin-bottom: 0px;
}
.single-blog .content .top-meta li span i {
  color: #11b997;
  font-size: 12px;
}
.single-blog:hover {
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
}
.single-blog:hover .img::before {
  background: rgba(0, 0, 0, 0);
}

/*-------------------------------
Blog Area CSS End
--------------------------------*/
/*---------------------------
** LOgin Signup  Area Start
---------------------------*/
.login-signup {
  padding: 60px 0px 60px;
}

.login-area {
  padding: 30px 30px 39px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.login-area .header-area {
  text-align: center;
  margin-bottom: 40px;
}
.login-area .header-area .title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  color: #0663fc;
}
.login-area .header-area .text {
  font-size: 18px;
  color: #919191;
}
.login-area .form-input {
  position: relative;
  margin-bottom: 15px;
}
.login-area .form-input input {
  width: 100%;
  height: 50px;
  background: #f3f8fc;
  padding: 0px 30px 0px 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.login-area .form-input i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  color: #0663fc;
}
.login-area .form-forgot-pass {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}
.login-area .to-login-page {
  text-align: right;
}
.login-area .submit-btn {
  width: 100%;
  height: 50px;
  text-align: center;
  background: #0663fc;
  border: 0px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.login-area .submit-btn:hover {
  background: #53bc1c;
}
.login-area .social-area {
  text-align: center;
  padding-top: 26px;
}
.login-area .social-area .title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #0663fc;
  position: relative;
}
.login-area .social-area .title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  margin-right: 7px;
}
.login-area .social-area .title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 100%;
  margin-left: 7px;
}
.login-area .social-area {
  text-align: center;
}
.login-area .social-area .text {
  font-size: 20px;
  font-weight: 300;
  color: #53bc1c;
}
.login-area .social-area .social-links {
  padding-left: 0px;
}
.login-area .social-area .social-links li {
  display: inline-block;
}
.login-area .social-area .social-links li a i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  color: #fff;
  margin: 0px 5px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}
.login-area .social-area .social-links li a i.fa-facebook-f {
  background: #0069f7;
}
.login-area .social-area .social-links li a i.fa-twitter {
  background: #00c6f7;
}
.login-area .social-area .social-links li a i.fa-google-plus-g {
  background: #d1062c;
}

.comment-log-reg-tabmenu .full-container {
  padding: 0px !important;
}
.comment-log-reg-tabmenu .nav-tabs {
  border: 0px;
  margin: 0px;
  padding: 0px;
}
.comment-log-reg-tabmenu .nav-tabs .nav-link {
  border: 0px;
  margin: 0px;
  padding: 10px 0px;
  width: 50%;
  text-align: center;
  background: #0663fc;
  border-radius: 0px;
  color: #fff;
}
.comment-log-reg-tabmenu .nav-tabs .nav-link.active {
  background: #262e3b;
}

/*---------------------------
** LOgin Signup  Area End
---------------------------*/
/*-----------------------------
** Footer Area Start
------------------------------*/
.footer {
  overflow: hidden;
  position: relative;
  padding: 70px 0px 0px;
  background: #11b997;
}
.footer .footer-logo {
  margin-top: 0px;
}
.footer .footer-widget .title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.footer .footer-widget ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.footer .footer-widget ul li {
  list-style: none;
}
.footer .footer-widget ul li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}
.footer .footer-widget ul li a:hover {
  color: #53bc1c;
}
.footer .footer-widget ul li i {
  font-size: 12px;
  padding-right: 4px;
}
.footer .fotter-social-links ul {
  padding-left: 0px;
  margin-left: 0px;
}
.footer .fotter-social-links ul li {
  display: inline-block;
}
.footer .fotter-social-links ul li a {
  font-size: 14x;
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin: 0px 3px;
  padding: 0px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.footer .fotter-social-links ul li a:hover {
  background: #fff;
  color: #000;
}
.footer .fotter-social-links ul li:first-child {
  margin-left: 0px;
}
.footer .copy-bg {
  background: #000;
  margin-top: 45px;
  padding: 20px 15px 20px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}
.footer .copy-bg .content {
  text-align: center;
}
.footer .copy-bg .content .content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #fff;
}
.footer .copy-bg .content .content p a {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  color: #fff;
}

.about-widget .footer-logo {
  margin-bottom: 22px;
}
.about-widget .text {
  margin-bottom: -2px;
}
.about-widget .text p {
  font-size: 16px;
  color: #fff;
}

.address-widget .title {
  margin-bottom: 25px;
}
.address-widget .about-info li {
  margin-bottom: 15px;
}
.address-widget .about-info li p {
  position: relative;
  padding-left: 50px;
  margin-bottom: 0px;
  color: #fff;
}
.address-widget .about-info li p i {
  position: absolute;
  left: 0;
  font-size: 14px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
  padding: 0px;
  text-align: center;
  color: #fff;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: inline-block;
}
.address-widget .about-info li:hover i {
  background: #fff;
  color: #0663fc;
}
.address-widget .about-info li::last-child {
  margin-bottom: 0px;
}

.info-link-widget .title {
  margin-bottom: 11px;
}
.info-link-widget .link-list li {
  padding: 8px 0;
  display: block;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.info-link-widget .link-list li a {
  font-size: 16px;
  line-height: 26px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.info-link-widget .link-list li a:hover {
  color: #53bc1c;
}
.info-link-widget .link-list li i.fas {
  font-size: 14px;
}
.info-link-widget .link-list li:last-child {
  border-bottom: 0px;
}

.footer-newsletter-widget .title {
  margin-bottom: 25px;
}
.footer-newsletter-widget .newsletter-form-area {
  position: relative;
}
.footer-newsletter-widget .newsletter-form-area input {
  width: 100%;
  height: 50px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0px 20px;
  background: none;
  color: #fff;
}
.footer-newsletter-widget .newsletter-form-area input::placeholder {
  color: #fff !important;
}
.footer-newsletter-widget .newsletter-form-area button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  border: 0px;
  color: #fff;
  background: #000;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.footer-newsletter-widget .newsletter-form-area button:focus {
  outline: 0px;
}
.footer-newsletter-widget .social-links {
  margin-top: 20px;
  margin-bottom: 23px;
}
.footer-newsletter-widget .social-links .title {
  font-size: 16px;
  font-weight: 400;
  text-transform: inherit;
  color: #fff;
  margin-bottom: 10px;
}

/*-----------------------------
** Footer Area End
------------------------------*/
.comment-area {
  margin-top: 33px;
}
.comment-area .header-area {
  margin-bottom: 29px;
}
.comment-area .header-area .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
}
.comment-area .all-comment-list > li {
  margin-bottom: 30px;
}
.comment-area .all-comment-list li .single-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}
.comment-area .all-comment-list li .single-comment .left {
  margin-right: 30px;
}
.comment-area .all-comment-list li .single-comment .left img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.comment-area .all-comment-list li .single-comment .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.comment-area .all-comment-list li .single-comment .right .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
}
.comment-area .all-comment-list li .single-comment .right .top-area .name {
  margin-right: 20px;
  color: #143250;
  font-weight: 600;
  font-size: 16px;
}
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .top-area
  .top-meta
  li {
  display: inline-block;
}
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .top-area
  .top-meta
  li
  a,
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .top-area
  .top-meta
  li
  span {
  color: #7a8794;
}
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .top-area
  .top-meta
  li
  a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .top-area
  .top-meta
  li
  a:hover {
  color: #0663fc;
}
.comment-area .all-comment-list li .single-comment .right .content .text {
  margin-bottom: 10px;
  color: #101d29;
}
.comment-area .all-comment-list li .single-comment .right .bottom-area {
  padding-top: 2px;
}
.comment-area .all-comment-list li .single-comment .right .bottom-area li {
  display: inline-block;
}
.comment-area .all-comment-list li .single-comment .right .bottom-area li a,
.comment-area .all-comment-list li .single-comment .right .bottom-area li span {
  color: #7a8794;
}
.comment-area .all-comment-list li .single-comment .right .bottom-area li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.comment-area
  .all-comment-list
  li
  .single-comment
  .right
  .bottom-area
  li
  a:hover {
  color: #0663fc;
}
.comment-area .all-comment-list li .single-comment.main-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.comment-area .all-comment-list li .single-comment.replay {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 85px;
  margin-top: 20px;
}
.comment-area .show-more-area {
  display: block;
  text-align: center;
}
.comment-area .show-more-area a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: #143250;
}
.comment-area .write-comment {
  padding-top: 29px;
  margin-bottom: 30px;
}
.comment-area .write-comment .header-area .title {
  border-bottom: 0px;
  padding-bottom: 0px;
}

.news-details .single-video-box {
  padding-top: 15px;
}
.news-details .single-video-box.details .content .title {
  font-size: 24px;
}
.news-details .single-video-box.details .content .meta {
  margin: 20px 0px 10px;
}

.news-details .single-video-box .single-box-footer {
  padding-top: 25px;
  margin-top: 25px;
  background: #f7efff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news-details .single-video-box .single-box-footer .title {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0px;
  font-weight: 600;
}
.news-details .single-video-box .single-box-footer .social-links {
  display: inline-block;
}
.news-details .single-video-box .single-box-footer .social-links li {
  display: inline-block;
  margin-right: 4px;
}
.news-details .single-video-box .single-box-footer .social-links li a {
  color: #555;
}

.write-comment-area {
  padding-top: 30px;
  padding-bottom: 15px;
}
.write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}
.write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}
.write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}
.write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}
.write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}
.write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}
.write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}
.write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}
.write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}
.write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}
.write-comment-area .submit-btn {
  background: #0663fc;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  font-size: 14px;
  border-radius: 0px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.write-comment-area .submit-btn:hover {
  background: #53bc1c;
}
.write-comment-area .submit-btn:focus {
  outline: 0px;
}

#comment-area {
  margin-top: 43px;
}
#comment-area .top-header-area .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
#comment-area .all-comment {
  margin-top: 18px;
  width: 100%;
}
#comment-area .all-comment li {
  margin-bottom: 30px;
  width: 100%;
}
#comment-area .all-comment li .single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
#comment-area .all-comment li .single-comment .left-area {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}
#comment-area .all-comment li .single-comment .left-area::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#comment-area .all-comment li .single-comment .left-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0663fc;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
#comment-area .all-comment li .single-comment .left-area .name {
  margin-top: 15px;
  font-size: 14px;
  color: #143250;
  font-weight: 600;
  margin-bottom: 0px;
}
#comment-area .all-comment li .single-comment .left-area .date {
  font-size: 12px;
  color: #143250;
  margin-bottom: 0px;
}
#comment-area .all-comment li .single-comment .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#comment-area
  .all-comment
  li
  .single-comment
  .right-area
  .header-area
  .stars-area {
  margin-left: 0px;
}
#comment-area
  .all-comment
  li
  .single-comment
  .right-area
  .header-area
  .stars-area
  .stars {
  padding: 0px;
  margin-bottom: 5px;
  display: inline-block;
}
#comment-area
  .all-comment
  li
  .single-comment
  .right-area
  .header-area
  .stars-area
  .stars
  li {
  display: inline-block;
  width: auto;
  font-size: 12px;
  margin-right: -2px;
  color: #fc9715;
  margin-bottom: 0px;
}
#comment-area .all-comment li .single-comment .right-area .header-area .title {
  font-size: 16px;
  font-weight: 600;
  color: #143250;
  margin-top: 0px;
}
#comment-area .all-comment li .single-comment .right-area .comment-body p {
  font-size: 16px;
  line-height: 26px;
}
#comment-area
  .all-comment
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  a {
  display: inline-block;
  font-size: 14px;
}
#comment-area .all-comment li .replay-review {
  margin-left: 100px;
}
#comment-area .all-comment li .replay-area {
  position: relative;
  padding-left: 127px;
  margin-bottom: 20px;
}
#comment-area .all-comment li .replay-area textarea {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#comment-area .all-comment li .replay-area button {
  width: 120px;
  height: 40px;
  line-height: 40px;
  border: 0px;
  background: #0663fc;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
#comment-area .all-comment li .replay-area .remove {
  width: 120px;
  height: 40px;
  border: 0px;
  background: #53bc1c;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-top: 0px;
}
#comment-area .review-area .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
#comment-area .write-comment-area {
  padding-top: 20px;
}
#comment-area .write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}
#comment-area .write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}
#comment-area .write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}
#comment-area .write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}
#comment-area .write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}
#comment-area .write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}
#comment-area .write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}
#comment-area .write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}
#comment-area .write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}
#comment-area .write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}
#comment-area .write-comment-area .submit-btn {
  background: #0663fc;
  border: 0px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#comment-area .write-comment-area .submit-btn:hover {
  background: #53bc1c;
}
#comment-area .write-comment-area .submit-btn:focus {
  outline: 0px;
}

section.home-news.news-details {
  padding: 60px 0px;
}

/*-----------------------------
** Sub Categori Area Start
------------------------------*/
.sliderText {
  margin-bottom: 30px;
  border-bottom: 2px solid #0674ec;
  padding: 10px 0 10px 0px;
  font-weight: bold;
}

.ui-slider-horizontal {
  height: 5px;
}

.ui-slider-horizontal {
  margin-bottom: 15px;
}

.ui-widget-header {
  background: #0674ec;
}

.price-range-search {
  width: 70px;
  background-color: #f9f9f9;
  border: 1px solid #6e6666;
  display: inline-block;
  height: 30px;
  margin-bottom: 20px;
  font-size: 16px;
}

.price-range-field {
  width: 70px;
  background-color: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: black;
  height: 30px;
  text-align: center;
}

.search-results-block {
  position: relative;
  display: block;
  clear: both;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -7px;
  margin-left: -0.6em;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #0674ec;
  border-radius: 50%;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
}

.ui-slider .ui-slider-handle:focus {
  outline: 0px;
}

.ui-widget.ui-widget-content {
  border: none;
  border-radius: 0px;
  background: #d2d2d2;
}

.sub-categori {
  padding: 100px 0px 100px;
}

.sub-categori .single-item {
  margin-bottom: 30px;
}

.sub-categori .left-area .filter-result-area {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}

.sub-categori .left-area .filter-result-area .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.sub-categori .left-area .filter-result-area .header-area .title {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.sub-categori .left-area .filter-result-area .body-area {
  padding: 25px 30px 30px;
  display: block;
}

.sub-categori .left-area .filter-result-area .body-area .filter-list li {
  margin-bottom: 6px;
}

.sub-categori .left-area .filter-result-area .body-area .price-range-block {
  text-align: center;
  margin-top: 34px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  #slider-range {
  margin-bottom: 21px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  .livecount {
  margin-bottom: 30px;
}

.sub-categori .filter-list li .check-box i {
  color: yellowgreen;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  .livecount
  span {
  font-size: 14px;
  margin: 0px 8px;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn {
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #0674ec;
  border: 0px;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn:hover {
  background: #ff6a6d;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn:focus {
  outline: 0px;
}

.sub-categori .left-area .design-area {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  background: #fff;
}

.sub-categori .left-area .design-area .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.sub-categori .left-area .design-area .header-area .title {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.sub-categori .left-area .design-area .body-area {
  padding: 25px 20px 21px;
  display: block;
}

.sub-categori .left-area .design-area .body-area .filter-list li {
  margin-bottom: 6px;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check {
  position: relative;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  label {
  font-size: 14px;
  color: #2a2a2a;
  font-family: "Open Sans", sans-serif;
  margin-left: 30px;
  cursor: pointer;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input:checked
  ~ .checkmark {
  background-color: transparent;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input:checked
  ~ .checkmark:after {
  display: block;
}

.sub-categori
  .left-area
  .design-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #242424;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub-categori .left-area .tags-area {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  background: #fff;
}

.sub-categori .left-area .tags-area .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.sub-categori .left-area .tags-area .header-area .title {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.sub-categori .left-area .tags-area .body-area {
  padding: 25px 28px 21px;
  display: block;
}

.sub-categori .left-area .tags-area .body-area .taglist li {
  display: inline-block;
}

.sub-categori .left-area .tags-area .body-area .taglist li a {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 17px;
  margin: 5px 3px;
  font-size: 13px;
  border-radius: 3px;
  color: #143250;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.sub-categori .left-area .tags-area .body-area .taglist li a:hover {
  background: #0674ec;
  color: #fff;
}

.sub-categori .all-categories-area {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  margin-top: 30px;
}

.sub-categori .all-categories-area .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.sub-categori .all-categories-area .header-area .title {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.sub-categori .all-categories-area .body-area {
  padding: 25px 28px 21px;
  display: block;
}

.sub-categori .all-categories-area .body-area .accordion .card {
  padding: 7px 0px 0px;
  border-radius: 0px;
  border: 0px;
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
}

.sub-categori .all-categories-area .body-area .accordion .card .card-header {
  padding: 0px;
  margin-bottom: 0;
  border-bottom: 0px;
  background: #fff;
  cursor: pointer;
}

.sub-categori
  .all-categories-area
  .body-area
  .accordion
  .card
  .card-header
  .button {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.sub-categori
  .all-categories-area
  .body-area
  .accordion
  .card
  .card-header
  .button
  i {
  font-weight: 600;
}

.sub-categori .all-categories-area .body-area .accordion .card .card-body {
  background: #fff;
  padding: 0px;
  padding-left: 20px;
  padding-bottom: 10px;
}

.sub-categori .all-categories-area .body-area .accordion .card .card-body a {
  font-size: 14px;
  font-weight: 600;
}

.sub-categori .all-categories-area .body-area .accordion .card .card-body a i {
  font-weight: 600;
}

.sub-categori .all-categories-area .body-area .cat-list li a {
  font-size: 14px;
  color: #143250;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.sub-categori .all-categories-area .body-area .cat-list li a i {
  font-weight: 600;
}

.sub-categori .modal {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 999999;
}

.sub-categori .modal .modal-dialog {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 600px;
  margin: 0px;
}

.sub-categori .modal .modal-dialog .modal-header {
  background: #0674ec;
}

.sub-categori .modal .modal-dialog .modal-header .modal-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.sub-categori .modal .modal-dialog .modal-header .close span {
  color: #fff;
}

.sub-categori .modal .contact-form {
  margin-top: 12px;
  padding: 10px 10px 10px;
}

.sub-categori .modal .contact-form ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.sub-categori .modal .contact-form ul li {
  list-style: none;
}

.sub-categori .modal .contact-form ul li .input-field {
  margin-bottom: 20px;
  background: none;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-categori .modal .contact-form ul li .input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #0674ec !important;
}

.sub-categori .modal .contact-form ul li .input-field.textarea {
  margin-bottom: 35px;
}

.sub-categori .modal .contact-form .submit-btn {
  width: 100%;
  height: 50px;
  background: #0674ec;
  color: #fff;
  font-size: 14px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
  border: 0px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.sub-categori .modal .contact-form .submit-btn:hover {
  background: #050e33;
}

.sub-categori .modal-backdrop {
  background: none !important;
}

.sub-categori .right-area .item-filter {
  text-align: right;
  margin-bottom: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 10px 10px;
  margin-bottom: 30px;
  background: #fff;
}

.sub-categori .right-area .item-filter .filter-list {
  display: flex;
  justify-content: end;
}

.sub-categori .right-area .item-filter .filter-list li {
  display: flex;
  align-items: center;
}

.sub-categori .right-area .item-filter .filter-list li p {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-right: 10px;
}

.sub-categori .right-area .item-filter .filter-list li select {
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 15px;
}

.sub-categori .right-area .item-filter .filter-list li.item-short-area {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.sub-categori .right-area .categori-item-area .single-product {
  margin-bottom: 30px;
}

.sub-categori .single-tours {
  margin-bottom: 30px;
}

.short-by {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px 20px;
}

.short-by .header-area {
  text-align: center;
  display: block;
}

.short-by .header-area .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0px;
  display: inline-block;
}

.short-by .body-area {
  display: block;
}

.short-by .body-area .short-by-filter {
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  padding: 0px 10px;
}

.service-center {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  margin-top: 30px;
}

.service-center .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.service-center .header-area .title {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
}

.service-center .body-area {
  padding: 25px 28px 21px;
  display: block;
}

.service-center .body-area .list li {
  font-size: 15px;
  line-height: 30px;
}

.service-center .body-area .list li a {
  color: #333333;
}

.service-center .body-area .list li i {
  font-size: 25px;
  color: #0674ec;
  margin-right: 7px;
}

.service-center .footer-area {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 28px 21px;
}

.service-center .footer-area .title {
  font-size: 14px;
  margin-bottom: 5px;
}

.service-center .footer-area .list li {
  display: inline-block;
  font-size: 14px;
  margin: 0px 4px;
}

.service-center .footer-area .list li a {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.service-center .footer-area .list li a:hover {
  color: #0674ec;
}

.seller-info {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.seller-info .content {
  padding: 24px 30px 27px;
  text-align: center;
}

.seller-info .content .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0px;
}

.seller-info .content .stor-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #00aeff;
}

.seller-info .content .cuntry {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.seller-info .content .total-product {
  border: 1px dashed rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 15px 0px 12px;
}

.seller-info .content .total-product p {
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #fc9715;
}

.seller-info .content .total-product span {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #00aeff;
}

.seller-info .content .time {
  margin-top: 5px;
  margin-bottom: 0px;
}

.seller-info .content .time span {
  color: #00aeff;
}

.seller-info .view-stor {
  width: 100%;
  background: #0674ec;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

.check-box .form-check {
  position: relative;
}

.check-box .form-check label {
  font-size: 14px;
  color: #2a2a2a;
  font-family: "Open Sans", sans-serif;
  margin-left: 30px;
  cursor: pointer;
}

.check-box .form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.check-box .form-check .checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.check-box .form-check input:checked ~ .checkmark {
  background-color: transparent;
}

.check-box .form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-box .form-check input:checked ~ .checkmark:after {
  display: block;
}

.check-box .form-check .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #242424;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub-categori .left-area .filter-result-area {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.sub-categori .left-area .filter-result-area .header-area {
  text-align: center;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px 7px;
}

.sub-categori .left-area .filter-result-area .header-area .title {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

.sub-categori .left-area .filter-result-area .body-area {
  padding: 25px 25px 30px;
  display: block;
}

.sub-categori .left-area .filter-result-area .body-area .filter-list li {
  margin-bottom: 6px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check {
  position: relative;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  label {
  font-size: 14px;
  color: #2a2a2a;
  font-family: "Open Sans", sans-serif;
  margin-left: 30px;
  cursor: pointer;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input:checked
  ~ .checkmark {
  background-color: transparent;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  input:checked
  ~ .checkmark:after {
  display: block;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .filter-list
  li
  .content
  .check-box
  .form-check
  .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #242424;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sub-categori .left-area .filter-result-area .body-area .price-range-block {
  text-align: center;
  margin-top: 34px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  #slider-range {
  margin-bottom: 21px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  .livecount {
  margin-bottom: 30px;
}

.sub-categori
  .left-area
  .filter-result-area
  .body-area
  .price-range-block
  .livecount
  span {
  font-size: 14px;
  margin: 0px 5px;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn {
  width: 160px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  color: #fff;
  background: #11b997;
  border: 0px;
  border-radius: 50px;
  display: block;
  border: 1px solid #11b997;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn:hover {
  background: none;
  color: #0674ec;
}

.sub-categori .left-area .filter-result-area .body-area .filter-btn:focus {
  outline: 0px;
}

.sub-categori .left-area .filter-result-area .body-area {
  padding: 20px 15px 30px;
}

.sub-categori .left-area .filter-result-area .body-area .filter-list li a i {
  font-size: 12px;
}

.sub-categori .left-area .filter-result-area .body-area .filter-list li a {
  font-size: 14px;
}

.sub-categori .left-area .tags-area .body-area .sub-title {
  font-size: 14px;
  font-weight: 600;
}

.sub-categori .left-area .tags-area .body-area {
  padding: 10px 15px 21px;
}

.sub-categori .left-area .filter-result-area .header-area .title,
.sub-categori .left-area .tags-area .header-area .title {
  font-weight: 600;
}

.filter-result-area .sub-content {
  padding-left: 10px !important;
  margin-top: 8px;
  display: none;
}

.filter-result-area .sub-content.open {
  display: block;
}

.filter-result-area .child-content {
  padding-left: 10px !important;
  margin-top: 8px;
  display: none;
}

.filter-result-area .child-content.open {
  display: block;
}

/*-----------------------------
** Sub Categori Area End
------------------------------*/
/*-----------------------------
** Tour Details Banner Start
------------------------------*/
.tour-details-banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 250px 0px 31px;
}
.tour-details-banner .left .title {
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}
.tour-details-banner .left p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}
.tour-details-banner .right-video {
  position: absolute;
  right: 30px;
  bottom: 50px;
}

/*-----------------------------
** Tour Details Banner End
------------------------------*/
/*-----------------------------
** Tour Top info Area Start
------------------------------*/
.tour-top-info {
  background: #000;
}
.tour-top-info .info-content {
  position: relative;
  padding: 18px 0px 20px;
}
.tour-top-info .info-content .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tour-top-info .info-content .info-box .left {
  margin-right: 20px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.tour-top-info .info-content .info-box .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tour-top-info .info-content .info-box .right .title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px;
  font-weight: 400;
  color: #fff;
}
.tour-top-info .info-content .info-box .right p {
  font-size: 14px;
  line-height: 24px;
  color: #ccd6ff;
  margin-bottom: 0px;
}
.tour-top-info .info-content .review-box {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding-top: 10px;
  width: 110px;
  height: 110px;
  text-align: center;
  background: #11b997;
  color: #fff;
  text-align: center;
}
.tour-top-info .info-content .review-box::before {
  position: absolute;
  content: "";
  top: 0px;
  right: 100%;
  width: 0;
  height: 0;
  border-bottom: 20px solid #11b997;
  border-left: 15px solid transparent;
}
.tour-top-info .info-content .review-box .rating {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}
.tour-top-info .info-content .review-box .rating small {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-left: -7px;
  margin-bottom: 0px;
}

/*-----------------------------
** Tour Top info Area End
------------------------------*/
/*-------------------------------
 Product Details area start
--------------------------------*/
.single-details {
  padding: 70px 0px 55px;
}

.model-gallery-image .one-item-slider .item img {
  max-width: 100%;
}
.model-gallery-image .all-item-slider {
  position: relative;
  margin: 12px 0px 0px;
}
.model-gallery-image .all-item-slider li {
  margin: 0px 6px;
  cursor: pointer;
}
.model-gallery-image .all-item-slider li:focus {
  outline: 0px;
}
.model-gallery-image .all-item-slider li img {
  max-width: 100%;
}
.model-gallery-image .all-item-slider .slick-slide {
  margin: 0px 10px;
}
.model-gallery-image .all-item-slider .slidPrv4.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  z-index: 2;
  background: #11b997;
  text-align: center;
  color: #000;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.7;
  cursor: pointer;
}
.model-gallery-image .all-item-slider .slidPrv4.slick-arrow:hover {
  opacity: 1;
}
.model-gallery-image .all-item-slider .slidNext4.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  z-index: 2;
  background: #11b997;
  text-align: center;
  width: 30px;
  line-height: 30px;
  height: 30px;
  color: #000;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.model-gallery-image .all-item-slider .slidNext4.slick-arrow:hover {
  opacity: 1;
}

.overview-area {
  margin-top: 45px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.overview-area .title {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}
.available-rooms {
  margin-top: 30px;
}
.overview-area .feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview-area .feature-list li {
  max-width: 33.333%;
  -webkit-box-flex: 33.333%;
  -ms-flex: 33.333%;
  flex: 33.333%;
  margin-bottom: 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview-area .feature-list li img {
  margin-right: 5px;
}

.map-location-area {
  padding-top: 30px;
}
.map-location-area .title {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.tour-faq-area {
  padding-top: 50px;
}
.tour-faq-area .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tour-faq-area .single-accordion {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 20px 0px 20px;
}
.tour-faq-area .single-accordion .title {
  font-size: 16px;
  font-weight: 600;
  display: block;
  width: 100%;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}
.tour-faq-area .single-accordion .title img {
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.tour-faq-area .single-accordion .accordion-body {
  font-size: 14px;
  line-height: 24px;
  padding: 17px 25px 0px;
}

.review-area {
  padding-top: 50px;
}
.review-area .title {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}
.review-area .review-list {
  margin-top: 18px;
}
.review-area .review-list li {
  margin-bottom: 30px;
}
.review-area .review-list li .single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px 30px 30px;
}
.review-area .review-list li .single-comment .left-area {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}
.review-area .review-list li .single-comment .left-area::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.review-area .review-list li .single-comment .left-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0663fc;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.review-area .review-list li .single-comment .left-area .name {
  margin-top: 15px;
  font-size: 14px;
  color: #143250;
  font-weight: 600;
  margin-bottom: 0px;
}
.review-area .review-list li .single-comment .left-area .date {
  font-size: 12px;
  color: #143250;
  margin-bottom: 0px;
}
.review-area .review-list li .single-comment .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .header-area
  .stars-area
  .stars {
  padding-bottom: 0px;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .header-area
  .stars-area
  .stars
  li {
  display: inline-block;
  font-size: 12px;
  margin-right: -2px;
  color: #fc9715;
  margin-bottom: 0px;
}
.review-area .review-list li .single-comment .right-area .header-area .title {
  font-size: 16px;
  font-weight: 600;
  color: #143250;
  margin-top: 0px;
}
.review-area .review-list li .single-comment .right-area .comment-body p {
  font-size: 16px;
  line-height: 26px;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  a {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  .helpfull {
  background: #0663fc;
  color: #fff;
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  .helpfull
  i {
  margin-right: 7px;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  .helpfull:hover {
  background: #53bc1c;
}
.review-area
  .review-list
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  .separator {
  padding: 0px 5px;
}
.review-area .review-area .star-area .star-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  color: #bdbdbd;
  position: relative;
}
.review-area .review-area .star-area .star-list li i {
  margin-right: -3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
}
.review-area .review-area .star-area .star-list li::after {
  position: absolute;
  content: "||";
  top: 0px;
  right: -22px;
}
.review-area .review-area .star-area .star-list li:last-child::after {
  display: none;
}
.review-area .review-area .star-area .star-list li:hover i {
  color: #ff9800;
}
.review-area .write-comment-area {
  padding-top: 30px;
}
.review-area .write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}
.review-area .write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}
.review-area .write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}
.review-area .write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}
.review-area .write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}
.review-area .write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}
.review-area .write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}
.review-area .write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}
.review-area .write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}
.review-area .write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}

.aside-right .price-area {
  background: #11b997;
  padding: 19px 20px 20px;
  overflow: hidden;
  position: relative;
}
.aside-right .price-area .discount {
  position: absolute;
  font-size: 13px;
  color: #fff;
  background: #000;
  height: 20px;
  width: 100px;
  right: -32px;
  line-height: 20px;
  top: 11px;
  text-align: center;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  z-index: 3;
}
.aside-right .price-area p {
  color: #fff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 0px;
}
.aside-right .price-area p sup {
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  margin-right: -5px;
}
.aside-right .price-area p small {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  margin-left: -5px;
}
.aside-right .book-now-area {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px 20px;
  margin-top: 30px;
}
.aside-right .book-now-area .title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  font-weight: 600;
  border-bottom: 1px dashed #d5d2d2;
  padding-bottom: 12px;
}
.aside-right .book-now-area .start-time {
  padding: 14px 0px 20px;
}
.aside-right .book-now-area .start-time span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.aside-right .book-now-area .start-time input {
  width: 100%;
  height: 25px;
  font-size: 14px;
  padding: 0px 15px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.aside-right .book-now-area .start-time input::-moz-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input::-webkit-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input::-webkit-input-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input::-moz-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input:-ms-input-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input::-ms-input-placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .start-time input::placeholder {
  color: #ddd !important;
}
.aside-right .book-now-area .people-count {
  padding-top: 15px;
  border-top: 1px dashed #d5d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.aside-right .book-now-area .people-count .left .title {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.aside-right .book-now-area .people-count .left p {
  font-size: 13px;
  margin-bottom: 0px;
  line-height: 18px;
}
.aside-right .book-now-area .people-count .right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.aside-right .book-now-area .people-count .right .qty ul li {
  display: inline-block;
  margin-right: 5px;
}
.aside-right .book-now-area .people-count .right .qty ul li:last-child {
  margin-right: 0px;
}
.aside-right .book-now-area .people-count .right .qty ul li .qttotal1 {
  color: #58606f;
  font-size: 12px;
  font-weight: 600;
}
.aside-right .book-now-area .people-count .right .qty ul li span {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  color: #0663fc;
  -webkit-box-shadow: 0.656px 0.755px 20px 0px rgba(183, 183, 183, 0.3);
  box-shadow: 0.656px 0.755px 20px 0px rgba(183, 183, 183, 0.3);
}
.aside-right .book-now-area .people-count.child {
  margin-top: 20px;
}
.aside-right .book-now-area .extra-price-wizerd .title {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #d5d2d2;
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.aside-right .book-now-area .extra-price-wizerd .extra-list {
  padding-top: 10px;
}
.aside-right .book-now-area .extra-price-wizerd .extra-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}
.aside-right .book-now-area .extra-price-wizerd .extra-list.two {
  border-top: 1px dashed #d5d2d2;
  margin-top: 4px;
}
.aside-right .book-now-area .book-btn {
  display: block !important;
  width: 100% !important;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 30px;
  display: inline-block;
  color: #fff;
  background: #11b997;
  border: 1px solid #11b997;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.aside-right .book-now-area .book-btn:hover {
  color: #11b997;
  background: #fff;
}
.aside-right .book-now-area .book-btn:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0px;
}
.aside-right .organize-by {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px 20px;
  margin-top: 30px;
}
.aside-right .organize-by .title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  font-weight: 600;
  border-bottom: 1px dashed #d5d2d2;
  padding-bottom: 12px;
}
.aside-right .organize-by .organizer-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px 0px;
}
.aside-right .organize-by .organizer-profile .left img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 20px;
  border: 2px solid #11b997;
  border-radius: 50%;
}
.aside-right .organize-by .organizer-profile .right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.aside-right .organize-by .organizer-profile .right .title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.aside-right .organize-by .organizer-profile .right .date {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 2px;
  margin-top: -3px;
}
.aside-right .organize-by .organizer-profile .right .stars {
  font-size: 12px;
  color: #ff9800;
}
.aside-right .organize-by .organizer-profile .right .stars i {
  margin-right: -3px;
}
.aside-right .organize-by .organizer-profile .right .review {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 0px;
}

/*-------------------------------
 Product Details area End
--------------------------------*/
/*-----------------------------
** Hotel Details Area Start
------------------------------*/
.single-details.hotel .facilities-wizerd {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px 20px;
  margin-bottom: 30px;
}
.single-details.hotel .facilities-wizerd .title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  font-weight: 600;
  border-bottom: 1px dashed #d5d2d2;
  padding-bottom: 12px;
}
.single-details.hotel .facilities-wizerd .facilities-list li {
  line-height: 35px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.single-details.hotel .facilities-wizerd .facilities-list li:last-child {
  margin-bottom: 0px;
}
.single-details.hotel .facilities-wizerd .facilities-list li img {
  margin-right: 7px;
}
.single-details.hotel .facilities-wizerd .facilities-list li i {
  margin-right: 5px;
}
.single-details.hotel .available-rooms .title {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}
.single-details.hotel .available-rooms .room-option {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 30px 20px;
}
.single-details.hotel .available-rooms .room-option .r-s-option {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  align-items: center;
}
.single-details.hotel .available-rooms .room-option .r-s-option p {
  font-size: 14px;
  margin-bottom: 0px;
}
.single-details.hotel .available-rooms .room-option .r-s-option.check-in p {
  margin-bottom: 10px;
  font-weight: 600;
}
.single-details.hotel .available-rooms .room-option .r-s-option.check-in input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0px 10px;
  height: 30px;
  font-size: 14px;
  border-radius: 3px;
  background: none;
}
.single-details.hotel .available-rooms .room-option .r-s-option.guests {
  position: relative;
  font-weight: 600;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .drop-down-select-guests {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 4px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  background: #fff;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .left
  .title {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-size: 14px;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .right
  .qty
  ul
  li {
  display: inline-block;
  margin-right: 2px;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .right
  .qty
  ul
  li:last-child {
  margin-right: 0px;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .right
  .qty
  ul
  li
  .qttotal1 {
  color: #58606f;
  font-size: 10px;
  font-weight: 600;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count
  .right
  .qty
  ul
  li
  span {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  color: #0663fc;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(183, 183, 183, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(183, 183, 183, 0.3);
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests
  .people-count.child {
  margin-top: 20px;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.guests:hover
  .drop-down-select-guests {
  visibility: visible;
  opacity: 1;
}
.single-details.hotel
  .available-rooms
  .room-option
  .r-s-option.check-availability
  a {
  color: #0663fc;
  font-weight: 600;
  font-size: 14px;
}
.single-details.hotel .available-rooms .all-rooms {
  margin-top: 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.single-details.hotel .available-rooms .all-rooms .single-room {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-details.hotel .available-rooms .all-rooms .single-room .hotel-room {
  max-width: 160px;
  padding: 15px;
}

.single-details.hotel .available-rooms .all-rooms .single-room .hotel-room p {
  font-size: 14px;
  font-weight: 600;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-room
  select {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 14px;
}
.single-details.hotel .available-rooms .hotel_room_book_status .mybtn1 {
  padding: 5px 20px;
  font-size: 14px;
  margin-top: 10px;
}

.single-details.hotel .available-rooms .all-rooms .single-room .image {
  position: relative;
}
.single-details.hotel .available-rooms .all-rooms .single-room .image img {
  max-width: 160px;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .image
  .count-gallery {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 7px;
  font-size: 14px;
  color: #fff;
}
.single-details.hotel .available-rooms .all-rooms .single-room .hotel-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 20px;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-info
  .room-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-info
  .room-meta
  li {
  display: inline-block;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-info
  .room-meta
  li
  .item {
  text-align: center;
  margin: 0px 5px;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-info
  .room-meta
  li
  .item
  img {
  display: inline-block;
  margin-bottom: 10px;
}
.single-details.hotel
  .available-rooms
  .all-rooms
  .single-room
  .hotel-info
  .room-meta
  li
  .item
  span {
  display: block;
  font-size: 12px;
}
.single-details.hotel .available-rooms .hotel_room_book_status {
  padding: 20px;
  margin-top: 20px;
  position: relative;
  background: whitesmoke;
  border-radius: 10px;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .row_extra_service {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .row_extra_service
  label {
  display: inline-block;
  margin-bottom: 5px;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .row_extra_service
  .extra-item {
  margin-bottom: 5px;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .row_extra_service
  label {
  display: inline-block;
  margin-bottom: 5px;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .row_total_price
  .col-md-6:nth-child(2) {
  border-left: 1px solid #ccc;
}
.single-details.hotel .available-rooms .hotel_room_book_status .control-book {
  text-align: right;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .total-room-price {
  font-size: 20px;
  font-weight: 600;
  color: #ff3f19;
}
.single-details.hotel
  .available-rooms
  .hotel_room_book_status
  .total-room-price
  span {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.single-details.hotel .roules-hotel {
  margin-top: 30px;
}
.single-details.hotel .roules-hotel .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}

/*-----------------------------
** Hotel Details Area End
------------------------------*/
/*-------------------------------
Vendor Banner start
--------------------------------*/
.vendor-banner {
  background: url(../images/vendor-profile-bg.png);
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*-------------------------------
Vendor Banner End
--------------------------------*/
/*-------------------------------
Vendor top info Start
--------------------------------*/
.vendor-profile-top {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 0px 30px;
}
.vendor-profile-top .organize-by .organizer-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vendor-profile-top .organize-by .organizer-profile .left img {
  width: 110px;
  height: 110px;
  margin-right: 20px;
  border: 2px solid #0663fc;
  border-radius: 50%;
}
.vendor-profile-top .organize-by .organizer-profile .right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.vendor-profile-top .organize-by .organizer-profile .right .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.vendor-profile-top .organize-by .organizer-profile .right .date {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.vendor-profile-top .organize-by .organizer-profile .right .id {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 0px;
}
.vendor-profile-top .t-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vendor-profile-top .t-info-list .rating {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  background: #0663fc;
  color: #fff;
  display: block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 10px 20px 4px;
  border-radius: 10px;
  margin-right: 20px;
}
.vendor-profile-top .t-info-list .rating small {
  font-size: 18px;
  margin-left: -7px;
}
.vendor-profile-top .t-info-list .rating i {
  font-size: 16px;
  margin-left: -5px;
  position: relative;
  top: -8px;
}
.vendor-profile-top .t-info-list .review-count {
  padding: 0px 10px;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: #58606f;
  text-align: center;
  display: block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  padding-right: 30px;
}
.vendor-profile-top .t-info-list .review-count small {
  font-size: 14px;
  line-height: 14px;
  margin-left: -7px;
  display: block;
  margin: 0 auto;
}
.vendor-profile-top .t-info-list .pack-count {
  padding: 0px 10px;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: #58606f;
  text-align: center;
  display: block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.vendor-profile-top .t-info-list .pack-count small {
  font-size: 14px;
  line-height: 14px;
  margin-left: -7px;
  display: block;
  margin: 0 auto;
}

/*-------------------------------
Vendor top info End
--------------------------------*/
/*-------------------------------
Vendor Details Area Start
--------------------------------*/
.single-details .vendor-info-area {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 19px 20px 20px;
}
.single-details .vendor-info-area .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}
.single-details .load-more-area {
  display: block;
  width: 100%;
  text-align: center;
}
.single-details .load-more-area .mybtn1 {
  display: inline-block;
  margin-top: 30px;
}
.single-details .aside-right .contact-info {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 19px 20px 20px;
}
.single-details .aside-right .contact-info .title {
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px;
  font-weight: 600;
  border-bottom: 1px solid #d5d2d2;
  padding-bottom: 19px;
}
.single-details .aside-right .contact-info .title img {
  margin-right: 6px;
}
.single-details .aside-right .contact-info .contact-list {
  padding-top: 30px;
}
.single-details .aside-right .contact-info .contact-list li {
  display: inline-block;
  margin-bottom: 10px;
}
.single-details .aside-right .contact-info .contact-list li:last-child {
  margin-bottom: 0px;
}
.single-details .aside-right .contact-info .contact-list li p {
  padding-left: 45px;
  position: relative;
}
.single-details .aside-right .contact-info .contact-list li p i {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f8f8f8;
  color: #0663fc;
}
.single-details .aside-right .contact-info .social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 10px;
}
.single-details .aside-right .contact-info .social-links li {
  display: inline-block;
}
.single-details .aside-right .contact-info .social-links li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0px 3px;
}
.single-details .aside-right .contact-info .social-links li a:hover {
  background: #0663fc;
  color: #fff;
}

/*-------------------------------
Vendor Details Area Start
--------------------------------*/
/*-------------------------------
become a vendor area start
--------------------------------*/
.become-a-vendor {
  padding: 60px 0px 60px;
}
.become-a-vendor .become-a-vendor-box {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 19px 30px 30px;
}
.become-a-vendor .become-a-vendor-box .left-form .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.become-a-vendor .become-a-vendor-box .left-form .my-form-group label {
  font-size: 14px;
}
.become-a-vendor .become-a-vendor-box .left-form .my-form-group label a {
  color: #0663fc;
}
.become-a-vendor .become-a-vendor-box .left-form .mybtn1 {
  margin-top: 20px;
}
/*-------------------------------
become a vendor area End
--------------------------------*/
/*-------------------------------
How dose it Work Start
--------------------------------*/
.how-it-work {
  padding: 0px 0px 30px;
}
.how-it-work .header-area {
  text-align: center;
  margin-bottom: 40px;
}
.how-it-work .header-area .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}

.single-how-it-work {
  text-align: center;
}
.single-how-it-work .icon {
  text-align: center;
  margin-bottom: 20px;
}
.single-how-it-work .icon img {
  display: inline-block;
}
.single-how-it-work .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 16px;
}
.single-how-it-work .content p {
  font-size: 14px;
  line-height: 24px;
}

/*-------------------------------
How dose it Work End
--------------------------------*/
/*-------------------------------
Be local Expert Area Start
--------------------------------*/
.be-local-expert {
  padding: 60px 0px 250px;
  background: #f2f7ff;
}
.be-local-expert .header-area {
  text-align: center;
  margin-bottom: 40px;
}
.be-local-expert .header-area .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}

.single-local-expert {
  text-align: center;
}
.single-local-expert .icon {
  text-align: center;
  margin-bottom: 20px;
}
.single-local-expert .icon img {
  display: inline-block;
}
.single-local-expert .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0px;
}

/*-------------------------------
Be local Expert Area End
--------------------------------*/
/*-------------------------------
lx Video Area start
--------------------------------*/
.lx-video {
  margin-top: -180px;
}
.lx-video .video-box {
  background: url(../images/bv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0px 200px;
  text-align: center;
}

/*-------------------------------
Vendor Faq Area Start
--------------------------------*/
.vendor-faq {
  padding-bottom: 70px;
  padding-top: 15px;
}
.vendor-faq .tour-faq-area {
  display: block;
}
.vendor-faq .tour-faq-area .title {
  text-align: center;
}
.vendor-faq .tour-faq-area .single-accordion .title {
  text-align: left;
}

/*-------------------------------
Vendor Faq Area End 
--------------------------------*/
/*-----------------------------
** Blog Area Start
------------------------------*/
.blog.blog-page {
  padding: 70px 0px 40px;
}
.blog.blog-page .single-blog {
  margin-bottom: 30px;
}
.blog.blog-details .blog-details-box .details .content .blog-text {
  margin-bottom: 10px;
}
.blog .blog-box {
  position: relative;
  background: #fff;
  margin-bottom: 30px;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.blog .blog-box .blog-images {
  width: 100%;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}
.blog .blog-box .blog-images .img {
  max-width: 100%;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.blog .blog-box .blog-images .img img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.blog .blog-box .blog-images .blog-date {
  position: absolute;
  background: #000;
  z-index: 2;
  top: 0;
  left: 30px;
  height: 100px;
  width: 60px;
  text-align: center;
  border-radius: 0px 0px 50px 50px;
}
.blog .blog-box .blog-images .blog-date p {
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 18px;
  font-size: 16px;
}
.blog .blog-box .details {
  padding: 22px 30px 25px;
}
.blog .blog-box .details .blog-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}
.blog .blog-box .details .post-meta {
  padding-left: 0px;
  margin-bottom: 10px;
  margin-top: 8px;
}
.blog .blog-box .details .post-meta li {
  list-style: none;
  display: inline-block;
}
.blog .blog-box .details .post-meta li a {
  font-size: 16px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #010c2f;
}
.blog .blog-box .details .post-meta li a:hover {
  color: #0663fc;
}
.blog .blog-box .details .content .blog-text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
}
.blog .blog-box .details .content blockquote {
  background: #0663fc;
  padding: 30px 30px 30px;
  margin-top: 10px;
}
.blog .blog-box .details .content blockquote p {
  margin-bottom: 0px;
  color: #fff;
}
.blog .blog-box:hover .blog-images .img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.blog .page-link-btn {
  font-size: 18px;
  max-width: 640px;
  font-size: 18px;
  line-height: 28px;
  margin: 0 auto;
  font-weight: 300;
  color: #58606f;
  text-decoration: underline;
}

.blog-details .social-link {
  background: #f3f6ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 20px 20px;
}
.blog-details .social-link .tag .title {
  font-size: 14px;
  color: #000000;
  display: inline-block;
  margin-bottom: 0px;
  line-height: inherit;
}
.blog-details .social-link .tag a {
  color: #545558;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0px;
}
.blog-details .social-link .social-links {
  padding-left: 0px;
  margin-bottom: 0px;
}
.blog-details .social-link .social-links li {
  display: inline-block;
}
.blog-details .social-link .social-links li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: #000;
  margin-left: 2px;
  background: #11b997;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.blog-details .social-link .social-links li a:hover {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

.comment-area {
  margin-top: 43px;
}
.comment-area .top-header-area .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
.comment-area .all-comment {
  margin-top: 18px;
  width: 100%;
}
.comment-area .all-comment li {
  margin-bottom: 30px;
  width: 100%;
}
.comment-area .all-comment li .single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.comment-area .all-comment li .single-comment .left-area {
  text-align: center;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}
.comment-area .all-comment li .single-comment .left-area::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.comment-area .all-comment li .single-comment .left-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0663fc;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.comment-area .all-comment li .single-comment .left-area .name {
  margin-top: 15px;
  font-size: 14px;
  color: #143250;
  font-weight: 600;
  margin-bottom: 0px;
}
.comment-area .all-comment li .single-comment .left-area .date {
  font-size: 12px;
  color: #143250;
  margin-bottom: 0px;
}
.comment-area .all-comment li .single-comment .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.comment-area .all-comment li .single-comment .right-area .header-area {
  margin-bottom: 10px;
}
.comment-area .all-comment li .single-comment .right-area .header-area .title {
  font-size: 16px;
  font-weight: 600;
  color: #143250;
  margin-top: 0px;
  border: 0px;
  padding: 0px;
  margin-bottom: 0px;
}
.comment-area .all-comment li .single-comment .right-area .comment-body p {
  font-size: 16px;
  line-height: 26px;
}
.comment-area
  .all-comment
  li
  .single-comment
  .right-area
  .comment-footer
  .links
  a {
  display: inline-block;
  font-size: 14px;
}
.comment-area .all-comment li .replay-review {
  margin-left: 100px;
}
.comment-area .all-comment li .replay-area {
  position: relative;
  padding-left: 127px;
  margin-bottom: 20px;
}
.comment-area .all-comment li .replay-area textarea {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.comment-area .all-comment li .replay-area button {
  width: 120px;
  height: 40px;
  line-height: 40px;
  border: 0px;
  background: #0663fc;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.comment-area .all-comment li .replay-area .remove {
  width: 120px;
  height: 40px;
  border: 0px;
  background: #0663fc;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-top: 0px;
}
.comment-area .review-area .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.comment-area .write-comment-area {
  padding-top: 20px;
}
.comment-area .write-comment-area input {
  width: 100%;
  height: 55px;
  background: #fff;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0px 20px;
  font-size: 14px;
  margin-bottom: 15px;
}
.comment-area .write-comment-area input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555;
}
.comment-area .write-comment-area input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
}
.comment-area .write-comment-area input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
}
.comment-area .write-comment-area input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555;
}
.comment-area .write-comment-area textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  color: #888888;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  font-size: 14px;
  margin-bottom: 15px;
  resize: none;
}
.comment-area .write-comment-area textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #888888;
}
.comment-area .write-comment-area textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
}
.comment-area .write-comment-area textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
}
.comment-area .write-comment-area textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #888888;
}
.comment-area .write-comment-area .submit-btn {
  background: #0663fc;
  border: 0px;
  color: #fff;
  padding: 14px 30px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid #0663fc;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.comment-area .write-comment-area .submit-btn:hover {
  background: #fff;
  color: #0663fc;
}
.comment-area .write-comment-area .submit-btn:focus {
  outline: 0px;
}

.serch-widget {
  padding: 30px 30px 30px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.serch-widget .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.serch-widget input {
  width: 100%;
  height: 40px;
  background: none;
  border: 0px;
  border-bottom: 1px solid #11b997;
}
.serch-widget input:focus {
  border: 0px;
  border-bottom: 1px solid #11b997;
}
.serch-widget .submit {
  margin-top: 20px;
  background: #11b997;
  border: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 50px;
  padding: 7px 25px;
  border: 1px solid #11b997;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.serch-widget .submit:hover {
  background: #fff;
  color: #0663fc;
}
.serch-widget .submit:focus {
  outline: 0;
}

.categori {
  padding: 22px 30px 22px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.categori .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.categori .categori-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 15px;
}
.categori .categori-list li {
  list-style: none;
  line-height: 36px;
}
.categori .categori-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.categori .categori-list li a:hover,
.categori .categori-list li a.active {
  color: #0663fc;
  padding-left: 5px;
}

.recent-post-widget {
  padding: 20px 30px 30px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.recent-post-widget .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.recent-post-widget .post-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 20px;
}
.recent-post-widget .post-list li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.recent-post-widget .post-list li .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recent-post-widget .post-list li .post .post-img {
  margin-right: 20px;
}
.recent-post-widget .post-list li .post .post-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.recent-post-widget .post-list li .post .post-details .post-title {
  font-size: 14px;
  color: #2f3744;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.recent-post-widget .post-list li .post .post-details .post-title:hover {
  color: #0663fc;
}
.recent-post-widget .post-list li .post .post-details .date {
  color: #7b8698;
  font-size: 12px;
  margin-bottom: 0px;
}
.recent-post-widget .post-list li:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.newsletter-widget {
  padding: 30px 30px 30px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.newsletter-widget .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.newsletter-widget input {
  width: 100%;
  height: 40px;
  background: none;
  border: 0px;
  border-bottom: 1px solid #0663fc;
}
.newsletter-widget input:focus {
  border: 0px;
  border-bottom: 1px solid #0663fc;
}
.newsletter-widget .submit {
  margin-top: 20px;
  background: #0663fc;
  border: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 50px;
  padding: 7px 25px;
  border: 1px solid #0663fc;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.newsletter-widget .submit:hover {
  background: #fff;
  color: #0663fc;
}
.newsletter-widget .submit:focus {
  outline: 0;
}

.tags {
  padding: 22px 30px 15px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.tags .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.tags .tags-list {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 29px;
}
.tags .tags-list li {
  list-style: none;
  display: inline-block;
}
.tags .tags-list li a {
  font-size: 14px;
  padding: 6px 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 15px;
  margin-right: 9px;
}
.tags .tags-list li a:hover {
  background: #11b997;
  border-color: #11b997;
  color: #fff;
  -webkit-box-shadow: 0px 8px 10px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 10px 2px rgba(0, 0, 0, 0.15);
}

.blog-aside .categori,
.blog-aside .recent-post-widget,
.blog-aside .newsletter-widget,
.blog-aside .tags {
  margin-top: 30px;
}

/*-----------------------------
** Blog Area End
------------------------------*/
/*---------------------------
** Contact Us  Area Start
---------------------------*/
.contact-us {
  padding: 70px 0px 70px;
}
.contact-us .header-area {
  text-align: center;
  margin-bottom: 28px;
}
.contact-us .header-area .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}
.contact-us .left-area {
  background: #fff;
}
.contact-us .left-area .contact-form {
  padding: 20px 30px 30px;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-us .left-area .contact-form ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.contact-us .left-area .contact-form ul li {
  list-style: none;
}
.contact-us .left-area .contact-form ul li .input-field {
  margin-bottom: 20px;
  background: none;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-us .left-area .contact-form ul li .input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #0663fc !important;
}
.contact-us .left-area .contact-form ul li .input-field.textarea {
  margin-bottom: 15px;
}
.contact-us .left-area .contact-form .captcha-area li p {
  margin-bottom: 0px;
}
.contact-us .left-area .contact-form .captcha-area li img {
  max-width: 180px;
  display: inline-block;
}
.contact-us .left-area .contact-form .captcha-area li i {
  display: inline-block;
  margin-left: 15px;
  font-size: 22px;
  color: #777;
}
.contact-us .left-area .contact-form .captcha-area li .input-field {
  margin-bottom: 15px;
  background: none;
  max-width: 225px;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-us .left-area .contact-form .captcha-area li .input-field:focus {
  border: 0px !important;
  border-bottom: 1px solid #0663fc !important;
}
.contact-us .left-area .contact-form .submit-btn {
  width: 180px;
  height: 50px;
  padding: 0px;
  background: #0663fc;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border: 0px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contact-us .left-area .contact-form .submit-btn:hover {
  border: 1px solid #0663fc;
  background: #fff;
  color: #0663fc;
}
.contact-us .right-area .contact-info {
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  overflow: hidden;
}
.contact-us .right-area .contact-info .left {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.contact-us .right-area .contact-info .left .icon {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 50px;
  text-align: center;
  margin-right: 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 9;
  text-align: center;
  display: block;
}
.contact-us .right-area .contact-info .left .icon img {
  display: inline-block;
}
.contact-us .right-area .contact-info .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}
.contact-us .right-area .contact-info .content .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  display: block;
}
.contact-us .right-area .contact-info .content a {
  display: block;
  margin-bottom: 0px;
}
.contact-us .right-area .social-links {
  padding-top: 20px;
}
.contact-us .right-area .social-links .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #58606f;
  margin-top: -5px;
  margin-bottom: 18px;
}
.contact-us .right-area .social-links ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.contact-us .right-area .social-links ul li {
  display: inline-block;
}
.contact-us .right-area .social-links ul li a {
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin: 0px 3px;
  background: #f1f4fb;
  color: #0663fc;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.contact-us .right-area .social-links ul li a:hover {
  background: #0663fc;
  color: #fff;
}

/*---------------------------
Faq Page Start
-----------------------------*/
.faq-section {
  padding: 50px 0px 70px;
}

.ui-accordion .ui-accordion-header {
  padding: 16px 40px 16px;
  margin-top: 20px !important;
  background: #11b997;
  color: #fff;
  font-weight: 600;
  border: 0px;
  font-size: 16px;
  line-height: 23px;
}
.ui-accordion .ui-accordion-header:focus {
  outline: 0px;
  border: 0px;
}
.ui-accordion .ui-accordion-header .ui-icon {
  display: none;
}

/*---------------------------
Faq Page End
-----------------------------*/

/* review active */

.review-active {
  color: #ff9800;
}
.single-acc {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.single-acc:last-child {
  margin-bottom: 0px;
}
.single-acc .heading {
  font-size: 18px;
  font-weight: 600;
  background: #0663fc;
  color: #fff;
  padding: 15px 20px;
}
.single-acc .content {
  padding: 20px;
}
/*---------------------------
Checkout Area Start
-----------------------------*/
.checkout-section {
  padding: 70px 0px 70px;
}
.checkout-section .submission-area .title {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.checkout-section .submission-area .custom-control label a {
  color: #0056b3;
}
.checkout-section .submission-area .form-group label {
  font-size: 14px;
  font-weight: 600;
}
.checkout-section .submission-area .form-group input {
  font-size: 14px;
}
.checkout-section .booking-info {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout-section .booking-info .top-area {
  padding: 25px 30px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout-section .booking-info .top-area .name {
  font-size: 16px;
  font-weight: 600;
}
.checkout-section .booking-info .top-area .location {
  font-size: 14px;
}
.checkout-section .booking-info .area-two {
  padding: 25px 30px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout-section .booking-info .area-two ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
}
.checkout-section .booking-info .area-two ul li span {
  font-size: 14px;
}
.checkout-section .booking-info .area-three {
  padding: 25px 30px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout-section .booking-info .area-three ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
}
.checkout-section .booking-info .area-three ul li span {
  font-size: 14px;
}
.checkout-section .booking-info .area-four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 30px 10px;
}
.checkout-section .booking-info .area-four h4 {
  font-size: 18px;
  font-weight: 600;
}
.checkout-section .booking-info .area-four h4.total {
  color: #0663fc;
}

/*---------------------------
Checkout Area End
-----------------------------*/

/*Star Rating Start*/

.empty-stars {
  margin-bottom: 2.1px;
}

.starrr {
  display: inline-block;
}
.starrr a {
  font-size: 16px;
  padding: 0 1px;
  cursor: pointer;
  color: #2d3274;
  text-decoration: none;
}

.ratings {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  color: #b1b1b1;
  overflow: hidden;
}
.full-stars {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #2d3274;
}
.empty-stars:before,
.full-stars:before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 14px;
}
.rating-left-area .empty-stars:before,
.rating-left-area .full-stars:before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 24px;
}
.empty-stars:before {
  -webkit-text-stroke: 1px #f4c150;
  color: transparent;
}
.full-stars:before {
  -webkit-text-stroke: 1px #f4c150;
}
/
  Webkit-text-stroke
  is
  not
  supported
  on
  firefox
  or
  IE
  /
  /
  Firefox
  /
  @-moz-document
  url-prefix() {
  .full-stars {
    color: #2d3274;
  }
}
.full-stars {
  color: #f4c150;
}

.check_position {
  position: relative !important ;
}

.ajax_loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-position: center !important;
  background-color: #fff !important;
}

/* Hero Area Slider Start */
.single-banner {
  margin-top: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.single-banner .banner-overlay {
  display: flex;
  align-items: center;
  /* height: 900px; */
  height: 620px;
  /* background: #000814a6; */
}

.single-banner .banner-overlay .banner-content {
  overflow: hidden;
}
.single-banner .banner-overlay .banner-content span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  padding-bottom: 10px;
}

.single-banner .banner-overlay .banner-content .title {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  line-height: 70px;
}

.single-banner .banner-overlay .banner-content p {
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 45px;
}

.single-banner .banner-overlay .banner-content a i {
  padding-left: 6px;
}

.banner-active .slick-arrow {
  position: absolute;
  top: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  background: #11b997;
  color: #000;
  z-index: 2;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
}
.banner-active .slick-arrow.prev {
  left: 20px;
}
.banner-active .slick-arrow.next {
  right: 20px;
}

/* Banner Slider End */

.sub-categori .header-area .title {
  border-bottom: 0px solid #dcdcdc;
  padding-bottom: 0px;
}

.book-now-area .total {
  font-size: 16px;
  font-weight: 600;
}

.r-not-found {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}
.itinerary .card-title {
  font-size: 18px;
  font-weight: 600;
}
.itinerary .card-title .des {
  font-size: 14px;
  color: #222;
}
.t-extra-f {
  margin-top: 30px;
}
.t-extra-f:first-child {
  margin-top: 0px;
}
.t-extra-f .l {
  font-size: 14px;
  font-weight: 600;
  background: #11b997;
  padding: 4px 18px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  margin: 4px;
}
.t-extra-f .l i {
  margin-right: 4px;
}
.t-extra-f .title {
  margin-bottom: 0px;
}

.in-ex ul li {
  font-size: 14px;
  line-height: 30px;
}

.map-location-area .main-title {
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.map-location-area.mt .title {
  font-size: 17px;
  margin-bottom: 10px;
}

.map-location-area.mt .t-extra-f {
  margin-top: 20px;
}

.extra-price-wrap label h4 {
  font-size: 16px;
  font-weight: 600;
}

.blog .blog-box .blog-images .img img {
  width: 100%;
}

.blog .blog-box .blog-images {
  margin-right: 0px;
}

/* Modal Gallery Start*/
.modal .model-gallery-image {
  text-align: center;
}
.modal .model-gallery-image .model-slider {
  text-align: center;
}
.modal .model-gallery-image .model-slider .item img {
  max-width: 100%;
}
.model-gallery-image .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.model-gallery-image .slick-arrow.slidNext4 {
  right: -10px;
  width: 40px;
  height: 40px;
  background: #00aeff;
  border-radius: 50px;
  line-height: 40px;
  color: #fff;
  z-index: 3;
}
.model-gallery-image .slick-arrow.slidPrv4 {
  left: -10px;
  width: 40px;
  height: 40px;
  background: #00aeff;
  border-radius: 50px;
  line-height: 40px;
  color: #fff;
  z-index: 2;
}
/* Modal Gallery End*/

.thankyou {
  padding: 60px 0px 60px;
}
.thankyou .content {
  background: #2c70f8;
  padding: 20px 30px 50px;
  text-align: center;
}
.thankyou .content .icon {
  font-size: 90px;
  color: #ffffff;
}
.thankyou .content .heading {
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}
.thankyou .content .text {
  color: #fff;
  margin-bottom: 0px;
}
.thankyou .content a.link {
  color: #fff;
  margin-top: 20px;
  display: block;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.info-content.info-content-hotel {
  padding: 70px 0px 20px !important;
}

#cardNumber,
#securityCode,
#expirationDate {
  height: 40px;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  color: #505050;
  font-size: 14px;
  padding: 0px 18px;
}

#cardNumber,
#securityCode,
#expirationDate {
  margin-bottom: 18px;
}
