body {
  color: #555555;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

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

p {
  margin-bottom: 8px;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: #222222;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  line-height: 1.5;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

strong,
b {
  font-weight: 700;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn,
button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: transparent;
}

.btn:active,
.btn:focus,
button:active,
button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
}

.form-control:focus {
  border-color: #c29958;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

::-moz-selection {
  color: #fff;
  background: #c29958;
}

::selection {
  color: #fff;
  background: #c29958;
}

::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-moz-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

/* ----tab problem fix css ----*/
.tab-content .tab-pane {
  display: block;
  height: 0;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}

.tab-content .tab-pane.active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

/* ----tab problem fix css ----*/
/*------- modal fix start -------*/
.modal-dialog {
  max-width: 1000px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal-dialog {
    max-width: 800px;
  }
}

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

.modal {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -99;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  z-index: 99999999;
  -webkit-animation: slideInDown 0.4s forwards;
  animation: slideInDown 0.4s forwards;
}

.modal .modal-header {
  padding: 0 10px;
  border-bottom: none;
}

.modal .modal-header .close {
  color: #222222;
  font-size: 34px;
  opacity: 1;
  display: block;
  position: absolute;
  padding: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  right: 10px;
  top: 10px;
  font-weight: 500;
  z-index: 999;
  line-height: 30px;
  border-radius: 50%;
}

.modal .modal-body {
  padding: 20px 20px 20px 20px;
}

@media only screen and (max-width: 479.98px) {
  .modal .modal-body {
    padding: 10px;
  }
}



/* ----scroll to top css start ----*/
.scroll-top {
  bottom: 50px;
  cursor: pointer;
  height: 50px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 50px;
  z-index: 9999;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  background-color: #c29958;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767.98px) {
  .scroll-top {
    display: none;
  }
}

.scroll-top i {
  line-height: 50px;
  color: #fff;
  font-size: 25px;
}

.scroll-top.not-visible {
  bottom: -50px;
  visibility: hidden;
  opacity: 0;
}

.scroll-top:hover {
  background-color: #222222;
}

/* ----scroll to top css end ----*/
.container {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.row {
  --bs-gutter-x: 30px;
}

.custom-container {
  max-width: 1800px;
}

.row-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.row-0>[class*=col] {
  padding-left: 0px;
  padding-right: 0px;
}

.row-1 {
  margin-left: -0.5px;
  margin-right: -0.5px;
}

.row-1>[class*=col] {
  padding-left: 0.5px;
  padding-right: 0.5px;
}

.row-2 {
  margin-left: -1px;
  margin-right: -1px;
}

.row-2>[class*=col] {
  padding-left: 1px;
  padding-right: 1px;
}

.row-3 {
  margin-left: -1.5px;
  margin-right: -1.5px;
}

.row-3>[class*=col] {
  padding-left: 1.5px;
  padding-right: 1.5px;
}

.row-4 {
  margin-left: -2px;
  margin-right: -2px;
}

.row-4>[class*=col] {
  padding-left: 2px;
  padding-right: 2px;
}

.row-5 {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.row-5>[class*=col] {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.row-6 {
  margin-left: -3px;
  margin-right: -3px;
}

.row-6>[class*=col] {
  padding-left: 3px;
  padding-right: 3px;
}

.row-7 {
  margin-left: -3.5px;
  margin-right: -3.5px;
}

.row-7>[class*=col] {
  padding-left: 3.5px;
  padding-right: 3.5px;
}

.row-8 {
  margin-left: -4px;
  margin-right: -4px;
}

.row-8>[class*=col] {
  padding-left: 4px;
  padding-right: 4px;
}

.row-9 {
  margin-left: -4.5px;
  margin-right: -4.5px;
}

.row-9>[class*=col] {
  padding-left: 4.5px;
  padding-right: 4.5px;
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-10>[class*=col] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-11 {
  margin-left: -5.5px;
  margin-right: -5.5px;
}

.row-11>[class*=col] {
  padding-left: 5.5px;
  padding-right: 5.5px;
}

.row-12 {
  margin-left: -6px;
  margin-right: -6px;
}

.row-12>[class*=col] {
  padding-left: 6px;
  padding-right: 6px;
}

.row-13 {
  margin-left: -6.5px;
  margin-right: -6.5px;
}

.row-13>[class*=col] {
  padding-left: 6.5px;
  padding-right: 6.5px;
}

.row-14 {
  margin-left: -7px;
  margin-right: -7px;
}

.row-14>[class*=col] {
  padding-left: 7px;
  padding-right: 7px;
}

.row-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row-15>[class*=col] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row-16 {
  margin-left: -8px;
  margin-right: -8px;
}

.row-16>[class*=col] {
  padding-left: 8px;
  padding-right: 8px;
}

.row-17 {
  margin-left: -8.5px;
  margin-right: -8.5px;
}

.row-17>[class*=col] {
  padding-left: 8.5px;
  padding-right: 8.5px;
}

.row-18 {
  margin-left: -9px;
  margin-right: -9px;
}

.row-18>[class*=col] {
  padding-left: 9px;
  padding-right: 9px;
}

.row-19 {
  margin-left: -9.5px;
  margin-right: -9.5px;
}

.row-19>[class*=col] {
  padding-left: 9.5px;
  padding-right: 9.5px;
}

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-20>[class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-21 {
  margin-left: -10.5px;
  margin-right: -10.5px;
}

.row-21>[class*=col] {
  padding-left: 10.5px;
  padding-right: 10.5px;
}

.row-22 {
  margin-left: -11px;
  margin-right: -11px;
}

.row-22>[class*=col] {
  padding-left: 11px;
  padding-right: 11px;
}

.row-23 {
  margin-left: -11.5px;
  margin-right: -11.5px;
}

.row-23>[class*=col] {
  padding-left: 11.5px;
  padding-right: 11.5px;
}

.row-24 {
  margin-left: -12px;
  margin-right: -12px;
}

.row-24>[class*=col] {
  padding-left: 12px;
  padding-right: 12px;
}

.row-25 {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

.row-25>[class*=col] {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.row-26 {
  margin-left: -13px;
  margin-right: -13px;
}

.row-26>[class*=col] {
  padding-left: 13px;
  padding-right: 13px;
}

.row-27 {
  margin-left: -13.5px;
  margin-right: -13.5px;
}

.row-27>[class*=col] {
  padding-left: 13.5px;
  padding-right: 13.5px;
}

.row-28 {
  margin-left: -14px;
  margin-right: -14px;
}

.row-28>[class*=col] {
  padding-left: 14px;
  padding-right: 14px;
}

.row-29 {
  margin-left: -14.5px;
  margin-right: -14.5px;
}

.row-29>[class*=col] {
  padding-left: 14.5px;
  padding-right: 14.5px;
}

.row-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.row-30>[class*=col] {
  padding-left: 15px;
  padding-right: 15px;
}

/*------- short classes start -------*/
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.98px) {
  .section-padding {
    padding-top: 63px;
    padding-bottom: 63px;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mtn-20 {
  margin-top: -20px;
}

.mbn-30 {
  margin-bottom: -30px;
}

.mtn-30 {
  margin-top: -30px;
}

.ptb-30 {
  padding: 30px 0;
}

@media only screen and (min-width: 1600px) {
  .header-wide {
    padding: 0 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-wide .container {
    max-width: 100%;
  }
}

.header-top {
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.header-top-settings ul li {
  color: #555555;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  margin-left: 40px;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}

.header-top-settings ul li:before {
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  background-color: #efefef;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-top-settings ul li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.header-top-settings ul li:first-child:before {
  display: none;
}

.header-top-settings ul li .dropdown-list {
  top: 100%;
  right: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 15px 15px 20px;
  width: 150px;
  z-index: 9;
  text-align: left;
  background-color: #fff;
  pointer-events: none;
  border: 1px solid #efefef;
}

.header-top-settings ul li .dropdown-list li {
  margin-left: 0;
  padding: 0;
}

.header-top-settings ul li .dropdown-list li a {
  color: #555555;
  font-size: 13px;
  display: block;
  padding: 5px 0 3px;
  text-transform: capitalize;
}

.header-top-settings ul li .dropdown-list li a:hover {
  color: #c29958;
}

.header-top-settings ul li .dropdown-list li a img {
  vertical-align: inherit;
}

.header-top-settings ul li .dropdown-list li:before {
  display: none;
}

.header-top-settings ul li:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.welcome-message p {
  color: #555555;
  font-size: 14px;
  line-height: 1;
}

/*----------- header top area end -----------*/
/*---------- header mini cart start ----------*/
.header-configure-area {
  padding-right: 10px;
}

.header-configure-area ul li {
  display: inline-block;
  margin-left: 25px;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header-configure-area ul li {
    margin-left: 14px;
  }
}

.header-configure-area ul li a {
  font-size: 26px;
  line-height: 1;
  color: #222222;
  position: relative;
}

.header-configure-area ul li a .notification {
  top: -8px;
  right: -6px;
  position: absolute;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  border-radius: 50%;
  background-color: #c29958;
}

.header-configure-area ul li a:hover {
  color: #c29958;
}

.header-configure-area ul li:first-child {
  margin-left: 0;
}

.header-configure-area ul li.user-hover {
  position: relative;
}

.header-configure-area ul li.user-hover .dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  width: 150px;
  padding: 20px;
  background-color: #fff;
  z-index: 11;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #efefef;
}

.header-configure-area ul li.user-hover .dropdown-list li {
  display: block;
  margin-left: 0;
}

.header-configure-area ul li.user-hover .dropdown-list li a {
  color: #555555;
  font-size: 13px;
  line-height: 1;
  display: block;
  padding: 8px 0;
  text-transform: capitalize;
}

.header-configure-area ul li.user-hover .dropdown-list li a:hover {
  color: #c29958;
}

.header-configure-area ul li.user-hover:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/*----------- header mini cart area end -----------*/
/*------- header search area start -------*/
.header-search-container {
  position: relative;
}

.header-search-box {
  position: relative;
}

.header-search-box:hover .header-search-btn {
  color: #c29958;
}

.header-search-btn {
  font-size: 25px;
  line-height: 1;
  left: 10px;
  top: 50%;
  width: 30px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-search-field {
  border: none;
  background-color: #f7f7f7;
  border-radius: 30px;
  padding: 10px 20px 10px 50px;
  width: 100%;
}

.search-trigger {
  font-size: 26px;
  color: #222222;
}

.search-box-open {
  top: 100%;
  right: 0;
  width: 300px;
  position: absolute;
  z-index: 5;
  display: block !important;
}

.search-box-open .header-search-field {
  height: 44px;
  border: 1px solid #ddd;
}

/*------- header search area end -------*/
/*-------- header social link start --------*/
.header-social-link a {
  color: #777777;
  font-size: 17px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
}

.header-social-link a:last-child {
  margin-right: 0;
}

.header-social-link a:hover {
  color: #c29958;
}


/*------- modal fix end -------*/
/* ---- Sick Slider arrow style start ----*/
.slick-slider .slick-slide>div>div {
  vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
  top: 50%;
  left: 0;
  font-size: 70px;
  color: #777777;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slick-arrow-style button.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.slick-arrow-style button.slick-arrow:hover {
  color: #c29958;
}

.slick-arrow-style:hover button.slick-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.slick-arrow-style:hover button.slick-arrow.slick-prev {
  left: -60px;
  right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-prev {
    left: -20px;
  }
}

.slick-arrow-style:hover button.slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-next {
    right: -20px;
  }
}

.slick-arrow-style_hero button.slick-arrow {
  font-size: 60px;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: transparent;
  z-index: 1;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow-style_hero button.slick-arrow:hover {
  color: #c29958;
  background-color: transparent;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
  left: 15px;
}

.slick-append {
  background-color: #fff;
  z-index: 2;
  margin-top: -2px;
}

.slick-append button {
  font-size: 30px;
  line-height: 1;
  position: inherit;
  display: inline-block;
  background-color: transparent;
  color: #555555;
}

.slick-append button:hover {
  color: #c29958;
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
  bottom: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  display: block;
  text-indent: -5000px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #777777;
  background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
  border-color: #c29958;
  background-color: #c29958;
}

.slick-row-3 .slick-list {
  margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
  margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-3 .slick-list {
    margin: 0 -3px !important;
  }

  .slick-sm-row-3 .slick-list .slick-slide {
    margin: 0 3px !important;
  }
}

.slick-row-4 .slick-list {
  margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
  margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-4 .slick-list {
    margin: 0 -4px !important;
  }

  .slick-sm-row-4 .slick-list .slick-slide {
    margin: 0 4px !important;
  }
}

.slick-row-5 .slick-list {
  margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
  margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-5 .slick-list {
    margin: 0 -5px !important;
  }

  .slick-sm-row-5 .slick-list .slick-slide {
    margin: 0 5px !important;
  }
}

.slick-row-6 .slick-list {
  margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
  margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-6 .slick-list {
    margin: 0 -6px !important;
  }

  .slick-sm-row-6 .slick-list .slick-slide {
    margin: 0 6px !important;
  }
}

.slick-row-7 .slick-list {
  margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
  margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-7 .slick-list {
    margin: 0 -7px !important;
  }

  .slick-sm-row-7 .slick-list .slick-slide {
    margin: 0 7px !important;
  }
}

.slick-row-8 .slick-list {
  margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
  margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-8 .slick-list {
    margin: 0 -8px !important;
  }

  .slick-sm-row-8 .slick-list .slick-slide {
    margin: 0 8px !important;
  }
}

.slick-row-9 .slick-list {
  margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
  margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-9 .slick-list {
    margin: 0 -9px !important;
  }

  .slick-sm-row-9 .slick-list .slick-slide {
    margin: 0 9px !important;
  }
}

.slick-row-10 .slick-list {
  margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-10 .slick-list {
    margin: 0 -10px !important;
  }

  .slick-sm-row-10 .slick-list .slick-slide {
    margin: 0 10px !important;
  }
}

.slick-row-11 .slick-list {
  margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
  margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-11 .slick-list {
    margin: 0 -11px !important;
  }

  .slick-sm-row-11 .slick-list .slick-slide {
    margin: 0 11px !important;
  }
}

.slick-row-12 .slick-list {
  margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
  margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-12 .slick-list {
    margin: 0 -12px !important;
  }

  .slick-sm-row-12 .slick-list .slick-slide {
    margin: 0 12px !important;
  }
}

.slick-row-13 .slick-list {
  margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
  margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-13 .slick-list {
    margin: 0 -13px !important;
  }

  .slick-sm-row-13 .slick-list .slick-slide {
    margin: 0 13px !important;
  }
}

.slick-row-14 .slick-list {
  margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
  margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-14 .slick-list {
    margin: 0 -14px !important;
  }

  .slick-sm-row-14 .slick-list .slick-slide {
    margin: 0 14px !important;
  }
}

.slick-row-15 .slick-list {
  margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
  margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-15 .slick-list {
    margin: 0 -15px !important;
  }

  .slick-sm-row-15 .slick-list .slick-slide {
    margin: 0 15px !important;
  }
}

.slick-slider .slick-slide>div {
  margin-bottom: 30px;
}

.slick-slider .slick-slide>div:last-child {
  margin-bottom: 0;
}





/* slick slider  */
.slick-slider .slick-slide>div>div {
  vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
  top: 50%;
  left: 0;
  font-size: 70px;
  color: #777777;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slick-arrow-style button.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.slick-arrow-style button.slick-arrow:hover {
  color: #c29958;
}

.slick-arrow-style:hover button.slick-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.slick-arrow-style:hover button.slick-arrow.slick-prev {
  left: -60px;
  right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-prev {
    left: -20px;
  }
}

.slick-arrow-style:hover button.slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-next {
    right: -20px;
  }
}

.slick-arrow-style_hero button.slick-arrow {
  font-size: 60px;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: transparent;
  z-index: 1;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow-style_hero button.slick-arrow:hover {
  color: #c29958;
  background-color: transparent;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
  left: 15px;
}

.slick-append {
  background-color: #fff;
  z-index: 2;
  margin-top: -2px;
}

.slick-append button {
  font-size: 30px;
  line-height: 1;
  position: inherit;
  display: inline-block;
  background-color: transparent;
  color: #555555;
}

.slick-append button:hover {
  color: #c29958;
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
  bottom: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  display: block;
  text-indent: -5000px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #777777;
  background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
  border-color: #c29958;
  background-color: #c29958;
}

.slick-row-3 .slick-list {
  margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
  margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-3 .slick-list {
    margin: 0 -3px !important;
  }

  .slick-sm-row-3 .slick-list .slick-slide {
    margin: 0 3px !important;
  }
}

.slick-row-4 .slick-list {
  margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
  margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-4 .slick-list {
    margin: 0 -4px !important;
  }

  .slick-sm-row-4 .slick-list .slick-slide {
    margin: 0 4px !important;
  }
}

.slick-row-5 .slick-list {
  margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
  margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-5 .slick-list {
    margin: 0 -5px !important;
  }

  .slick-sm-row-5 .slick-list .slick-slide {
    margin: 0 5px !important;
  }
}

.slick-row-6 .slick-list {
  margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
  margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-6 .slick-list {
    margin: 0 -6px !important;
  }

  .slick-sm-row-6 .slick-list .slick-slide {
    margin: 0 6px !important;
  }
}

.slick-row-7 .slick-list {
  margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
  margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-7 .slick-list {
    margin: 0 -7px !important;
  }

  .slick-sm-row-7 .slick-list .slick-slide {
    margin: 0 7px !important;
  }
}

.slick-row-8 .slick-list {
  margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
  margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-8 .slick-list {
    margin: 0 -8px !important;
  }

  .slick-sm-row-8 .slick-list .slick-slide {
    margin: 0 8px !important;
  }
}

.slick-row-9 .slick-list {
  margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
  margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-9 .slick-list {
    margin: 0 -9px !important;
  }

  .slick-sm-row-9 .slick-list .slick-slide {
    margin: 0 9px !important;
  }
}

.slick-row-10 .slick-list {
  margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-10 .slick-list {
    margin: 0 -10px !important;
  }

  .slick-sm-row-10 .slick-list .slick-slide {
    margin: 0 10px !important;
  }
}

.slick-row-11 .slick-list {
  margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
  margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-11 .slick-list {
    margin: 0 -11px !important;
  }

  .slick-sm-row-11 .slick-list .slick-slide {
    margin: 0 11px !important;
  }
}

.slick-row-12 .slick-list {
  margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
  margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-12 .slick-list {
    margin: 0 -12px !important;
  }

  .slick-sm-row-12 .slick-list .slick-slide {
    margin: 0 12px !important;
  }
}

.slick-row-13 .slick-list {
  margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
  margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-13 .slick-list {
    margin: 0 -13px !important;
  }

  .slick-sm-row-13 .slick-list .slick-slide {
    margin: 0 13px !important;
  }
}

.slick-row-14 .slick-list {
  margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
  margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-14 .slick-list {
    margin: 0 -14px !important;
  }

  .slick-sm-row-14 .slick-list .slick-slide {
    margin: 0 14px !important;
  }
}

.slick-row-15 .slick-list {
  margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
  margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-15 .slick-list {
    margin: 0 -15px !important;
  }

  .slick-sm-row-15 .slick-list .slick-slide {
    margin: 0 15px !important;
  }
}

.slick-slider .slick-slide>div {
  margin-bottom: 30px;
}

.slick-slider .slick-slide>div:last-child {
  margin-bottom: 0;
}


/*-------- header social link end --------*/
/*---------- main menu style start ---------*/
.main-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  color: #222222;
  font-size: 15px;
  padding: 37px 7px;
  font-weight: 400;
  display: block;
  text-transform: capitalize;
}

.main-menu ul li a i {
  font-size: 14px;
  padding: 0 3px;
}

.main-menu ul li:first-child a {
  padding-left: 0;
}

.main-menu ul li:hover>a,
.main-menu ul li.active>a {
  color: #c29958;
}

.main-menu ul li ul.dropdown {
  top: calc(100% - 1px);
  left: 0;
  width: 220px;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  pointer-events: none;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  border: 1px solid #efefef;
}

.main-menu ul li ul.dropdown li {
  margin-right: 0;
  border-right: none;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.main-menu ul li ul.dropdown li a {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  text-transform: capitalize;
  position: relative;
  border-bottom: 1px dashed #efefef;
  z-index: 1;
}

.main-menu ul li ul.dropdown li a:before {
  width: 10px;
  height: 1px;
  left: 20px;
  top: 50%;
  content: " ";
  position: absolute;
  background-color: #c29958;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.main-menu ul li ul.dropdown li a i {
  float: right;
  padding-top: 5px;
}

.main-menu ul li ul.dropdown li:hover>a {
  color: #c29958;
  background-color: #fff;
  padding-left: 35px;
}

.main-menu ul li ul.dropdown li:hover>a:before {
  opacity: 1;
  visibility: visible;
}

.main-menu ul li ul.dropdown li:hover>ul.dropdown {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.main-menu ul li ul.dropdown li ul.dropdown {
  top: 100%;
  left: 100%;
  position: absolute;
  width: 250px;
  opacity: 0;
  visibility: hidden;
}

.main-menu ul li ul.dropdown li:last-child a {
  border-bottom: none;
}

.main-menu ul li ul.megamenu {
  width: 100%;
  max-width: 1110px;
  padding: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li ul.megamenu {
    max-width: 100%;
  }
}

.main-menu ul li ul.megamenu li {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.main-menu ul li ul.megamenu li.mega-title {
  color: #222222;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-menu ul li ul.megamenu li.mega-title span {
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
}

.main-menu ul li ul.megamenu li.mega-title span:before,
.main-menu ul li ul.megamenu li.mega-title span:after {
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  content: " ";
  position: absolute;
  background-color: #ebebeb;
}

.main-menu ul li ul.megamenu li.mega-title span:after {
  width: 50%;
  background-color: #c29958;
}

.main-menu ul li ul.megamenu li a {
  padding: 6px 0;
  border-bottom: none;
}

.main-menu ul li ul.megamenu li a:before {
  left: 0;
}

.main-menu ul li ul.megamenu li ul li {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.main-menu ul li ul.megamenu li:hover>a {
  color: #c29958;
  padding-left: 15px;
}

.main-menu ul li ul.megamenu li.megamenu-banners {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-top: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-right: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners img {
  width: 100%;
}

.main-menu ul li ul.megamenu li.megamenu-banners a:before {
  display: none;
}

.main-menu ul li ul.megamenu li.megamenu-banners:last-child {
  padding-right: 0;
  padding-left: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover {
  opacity: 0.6;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover a {
  padding-left: 0 !important;
}

.main-menu ul li:hover ul.dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.main-menu ul li:hover ul.megamenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.main-menu ul.header-style-4>li a {
  padding: 25px 15px;
}

.main-menu ul.header-style-4>li:first-child>a {
  padding-left: 0;
}

.buttons {
  position: relative;
  width: 54%;
  margin: 0px;
  padding: 10px 6px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  text-overflow: ellipsis;
  font-size: 17px;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  text-align: left;
  color: #484848;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.guests-input {
  position: relative;
  width: 244px;
  /* margin: 0 auto; */
  padding-top: 20px;
  margin-left: -34px;
}

.guests-input button {
  cursor: pointer;
}

/* .guests-input button:after,
.guests-input button:before {
  content: " ";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: #484848;
  position: absolute;
  top: 19px
} */

/* .guests-input button:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 15px
}

.guests-input button:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 21px
} */

.guests-input button.open:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.guests-input button.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.guests-input__options {
  position: absolute;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
  box-shadow: rgba(72, 72, 72, 0.2) 0px 15px 20px;
  border-radius: 2px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  left: 30%;
}

.guests-input__options.open {
  opacity: 1;
  height: 146px;
  width: 180px;
}

.guests-input__options>div {
  padding: 10px 0;
  text-align: center
}

.guests-input__options>div:first-child {
  padding-top: 35px
}

.guests-input__options>div:last-child {
  padding-bottom: 35px
}

.guests-input__ctrl {
  display: inline-block;
  border: 1px solid #484848;
  font-size: 20px;
  color: #484848;
  padding: 3px 8px;
  line-height: 20px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease
}

.guests-input__ctrl.disabled {
  color: #d8d8d8;
  border-color: #d8d8d8;
  cursor: default
}

.guests-input__value {
  display: inline-block;
  padding: 0 10px;
  width: 100px;
  cursor: default
}

.guests-input__value span {
  display: inline-block;
  padding-right: 5px
}

.section1 {
  display: flex;
  justify-content: space-between;
  border: 1px solid #dddbdb;
  /* padding: 15px; */
  /* margin: 10px; */
  border-radius: 10px;
}

.lines {
  border-left: 1px solid #dddbdb;
}

/* dropdown */

.dropdown {
  display: inline-block;
  position: relative;
  margin-top: 7%;
}

.dd-button {
  display: inline-block;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 30px 10px 20px;
  background-color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

.dd-button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.dd-button:hover {
  background-color: #eeeeee;
}


.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  list-style-type: none;
}

.dd-input+.dd-menu {
  display: none;
}

.dd-input:checked+.dd-menu {
  display: block;
}

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-menu li:hover {
  background-color: #f6f6f6;
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.dd-menu li.divider {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}

.box {
  box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
  background-color: #fff;
  padding: 24px 30px 28px 30px;
  border-radius: 10px;
}



.product-item {
  background-color: #fff;
  border: 1px #d8d8d8 solid;
  border-radius: 16px;
  margin-right: 12px;
}

.product-thumb {
  height: 100%;
  width: 260px;
}

.products-thumb {
  width: 100%;
  height: 165px;
  position: relative;
}

.products-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  border-radius: 16px 16px 0 0;
  max-height: unset;
}

.product-details {
  padding: 8px;
  display: flex;
  justify-content: space-between;
}

.product-name {
  line-height: 20px;
  font-weight: 900;
  color: #000;
  margin-bottom: 6px;
}

.product-price {
  font-weight: 900;
  color: #000;
}

.products {
  flex-shrink: 0;
  text-align: right;
  margin-left: 10px;
}

.offer {
  margin: 5px 10px 5px 2px;
  padding: 10px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 6px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 20%);
  background-color: #ffffff;
  margin: 5px 10px 5px 2px;
  padding: 0 15px 15px;
  cursor: pointer;
}

.offer-product {
  min-height: 140px;
  display: flex;
}

.offer-image {
  width: 160px;
  margin-top: 22px;
  margin-right: 20px;
}

.offer-detail {
  width: 290px;
}

.offered {
  margin-bottom: 28px;
  margin-top: 20px;
}

.offereds {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.redline {
  width: 33px;
  height: 1px;
  background: #eb2026;
  display: flex;
  margin-bottom: 10px;
}

.placeInfo {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.location-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #f2f2f2;
}

.infoTile {
  width: 330px;
  margin-bottom: 10px;
  margin-top: 10px
}

.margined {
  margin-top: -12px;
}

.footnav {
  padding: 20px 0;
}

.footp {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 16px;
  line-height: 10px;
  color: #000000;
  margin-top: 14px;
}

.footNav__list {
  display: flex;
  flex-wrap: wrap;
  /* gap: 6px; */
  margin-bottom: 20px;
}

.footNav__list li {
  margin-bottom: 0px;
}

.footernav {
  margin-top: 30px;
}

.footerpara {
  background: #e7e7e7;
  padding-bottom: 60px;
  padding-top: 0px;
}

.aboutDesc {
  width: 50%;
  margin-top: 44px;
  padding-bottom: 28px;
  border-bottom: solid 1px #979797;
}

.from1 {
  margin-top: -10px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
}

.fromed {
  background-color: white;
  text-align: center;
  padding: 36px;
}

.butt1 {
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #dddbdb;
  margin-left: 10px;
  color: white;
  background: black;
}

.header-listing {
  background: linear-gradient(180deg, #051320, #0c2540) !important;
  padding: 10px 0 !important;
  transition: all .3s linear !important;
  z-index: 4 !important;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.header-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  width: 1200px;
}

.listing {
  background: #ffffff1a;
  border-radius: 4px;
  cursor: pointer;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 5px;
  position: relative;
  display: flex;
  padding: 6px;
}

.listed {
  padding: 4px 9px 5px;
  text-transform: uppercase;
  opacity: .2;
  color: #0084ff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
}

.arrow {
  align-items: center;
  display: inline-flex;
  height: 12px;
  justify-content: center;
  margin-left: 5px;
  width: 12px;
}

.inputs {
  background: none;
  border: 0;
  font-family: lato, sans-serif;
  min-width: 140px;
  outline: 0;
  padding: 0 9px 4px;
}

.wrapper {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.carousel {
  /* width:90%; */
  margin: 0px auto;
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}

.wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}

.primaryBtn {
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  border: 0;
  border-radius: 34px;
  box-shadow: 0 1px 7px 0 #0003;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  outline: 0;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
}

.subheader {
  background: linear-gradient(180deg, #0c2540, #174476);
  padding: 16px 0;
  position: relative;
  /* z-index: 3; */
}

.subheader-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
}

.subheader .breadCrumbs li:after {
  border: solid #9b9b9b;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 0;
  top: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.name {
  color: #fff !important;
  font-size: 24px !important;
}

.filter {
  background: linear-gradient(269.96deg, #e1ebf7 .02%, #daf8fe 99.99%);
  border-bottom: 1px solid #c4d7e6;
  box-shadow: 0 2px 6px 5px #8a6b7614;
  height: 51px;
  position: sticky;
  top: 92px;
  z-index: 2;
  margin-bottom: 30px;
}

.filter-container {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  width: 1200px;
}

.filter-list {
  display: flex;
  flex: 1;
  justify-content: space-between;
  transition: all .3s ease-in-out
}

.filter-heading {
  color: #000;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  margin-right: 56px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.filter-left {
  align-items: center;
  display: flex;
  flex: 1;
}

.filter-item {
  cursor: pointer;
  padding: 17px 0;
  position: relative;
}

.filter-list-itemTitle {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 700;
}

.filter-right {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-left: 40px;
}

.subheader-search {
  width: 250px;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid white;
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: black;
  height: 36px;
}

.searchTerm:focus {
  color: black;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid white;
  background: white;
  text-align: center;
  color: black;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
  /* width: 30%; */
  position: absolute;
  top: 50%;
  left: 86%;
  transform: translate(-50%, -50%);
  width: 224px;
}

.filter-wrap {
  align-self: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 230px;
  margin-right: 30px;
}

.mapEntry {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 #0003;
  cursor: pointer;
  height: 104px;
  margin-bottom: 16px;
  position: relative;
}

.mapEntry__button {
  align-items: center;
  background-color: #fff;
  border: 1px solid #008cff;
  border-radius: 8px;
  bottom: 10px;
  color: #008cff;
  cursor: pointer;
  display: flex;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  left: 10px;
  line-height: 14px;
  outline: 0;
  position: absolute;
  text-transform: uppercase;
  width: calc(100% - 20px);
  z-index: 1;
}

.mapEntry__img {
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.filtered-list {
  display: flex;
  flex-direction: column;
}

.filtered-list li {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.min-box {
  width: 66px;
  margin-right: 10px;
  text-align: center;
}

.max-box {
  width: 66px;
  margin-right: 18px;
  margin-left: 10px;
  text-align: center;
}

/* show hide button */
#profile-description {
  max-width: 400px;
  /* margin-top: 50px; */
  position: relative;
}

#profile-description .text {
  /*   width: 660px;  */
  margin-bottom: 5px;
  color: #777;
  /* padding: 0 15px; */
  position: relative;
  font-family: Arial;
  font-size: 14px;
  display: block;
}

#profile-description .show-more {
  /*   width: 690px;  */
  color: #0c61f4;
  position: relative;
  font-size: 14px;
  padding-top: 5px;
  height: 20px;
  text-align: center;
  background: #f1f1f1;
  cursor: pointer;
  left: 15px;
}

#profile-description .show-more:hover {
  color: #1779dd;
}

#profile-description .show-more-height {
  height: 170px;
  overflow: hidden;
}

#profile-description .show-more-heights {
  height: 170px;
  overflow: hidden;
}

/* search */
.search-container {
  width: 196px;
  display: block;
  margin: 0 auto;
}

input#search-bar {
  margin: 0 auto;
  width: 100%;
  height: 45px;
  padding: 0 8px;
  font-size: 1rem;
  border: 1px solid #d0cfce;
  outline: none;
}

input#search-bar:focus {
  border: 1px solid #008abf;
  transition: 0.35s ease;
  color: #008abf;
}

input#search-bar:focus::-webkit-input-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

input#search-bar:focus::-moz-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

input#search-bar:focus:-ms-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

.search-icon {
  position: relative;
  float: right;
  width: 75px;
  height: 75px;
  top: -62px;
  right: -15px;
}

.right-sidecontent {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 814px;
}

.listing-row {
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 1px;
  position: relative;
}

.listing-box {
  box-shadow: none;
  background-color: #fff;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 #8a6b7614;
  cursor: pointer;
  display: flex;
  position: relative;
  border: 1px solid #e1e1e1;
}

.box1 {
  display: flex;
  padding: 16px;
  position: relative;
}

.font {
  font-size: 12px;
}

.colour {
  color: rgb(43 167 43);
}

.box2 {
  text-align: right;
  border-left: 1px solid #e1e1e1;
  width: 200px;
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 16px;
}

.rating {
  border: 1px solid #0b58b4;
  padding: 3px;
  border-radius: 6px;
  background-color: #0b58b4;
  color: white;
  font-size: 12px;
}

.titleprice-section {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.imgcontent {
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-shrink: 0;
  margin-bottom: 5px;
  position: relative;
  width: 239px;
}

.imgcontent img {
  border-radius: 4px;
  max-height: 138px;
}

.imgthumblist {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  width: 239px;
}

.imgthumb-conts {
  height: 50px;
  position: relative;
}

.imgthumb {
  border-radius: 4px;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  overflow: hidden;
  transition: all .3s linear;
  width: 100%;
}

.viewAllText {
  align-items: center;
  backdrop-filter: blur(2px);
  border-radius: 0 0 4px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  left: 0;
  line-height: 15px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.smokey {
  background: #4a4a4a;
  border-radius: 4px;
}

.imgprenew img {
  border-radius: 4px;
  max-height: 138px;
  width: 240px;
}

li {
  margin-bottom: 12px;
  /* align-items: center;
    display: flex;
    justify-content: space-between; */
}

.space {
  margin-bottom: 14px;
  margin-top: 24px;
}

.spaces {
  margin-bottom: 24px;
  margin-top: 24px;
}

.gap {
  display: flex;
  gap: 12px;
}

.hotel-slider {
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 #8a6b7614;
  position: relative;
  border: 1px solid #bababa;
}

.explore-slider {
  cursor: pointer;
  display: flex;
  flex-flow: column;
  max-width: 180px;
  outline: 0;
  overflow: hidden;
  padding: 0;
}

.hotel-space {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.pv-slider {
  margin-top: 10px;
  padding: 0 0 15px 15px;
  position: relative;
  width: 200px;
  height: 200px !important;
}

.wrapper {
  padding: 20px 0;
  /* overflow-x: hidden; */
}


.my-slider {
  padding: 0 16px;
}

.slick-initialized .slick-slide {
  /* background-color: #b32532; */
  /* color: #FFF; */
  height: 200px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next,
.slick-prev {
  /* z-index: 5; */
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
}

.explore-slider {
  margin: 10px 0 0;
  min-height: 70px;
}

.explore-sliders {
  border-radius: 6px;
  width: 158px;
  height: 110px
}

.explore-heading {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.exploreds {
  color: #008cff;
  font-size: 14px;
  font-weight: 900;
  line-height: 17px;
  text-transform: uppercase;
  margin-top: 2px;
}

.product-detail-page {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
}

.arrow {
  color: #9b9b9b;
}

.product-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
}

.product-wrapleft {
  flex-shrink: 0;
  height: 290px;
  position: relative;
  width: 464px;
}

.floating-tag {
  width: 68px;
  height: 23px;
  left: 0px;
  top: 16px;
  display: inline-flex;
  position: absolute;
  z-index: 1;
}

.img-holder {
  width: 480px;
  height: 336px;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.imgholder-footer {
  background: linear-gradient(356deg, #0006 48.9%, #0000 85.38%);
  border-radius: 0 0 16px 16px;
  bottom: 0;
  left: 0;
  padding: 30px 15px 15px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.imgholder-footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.img-holder {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-wrapright {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  width: 252px;
}

.font16 {
  font-size: 16px;
  line-height: 16px;
}

.font14 {
  font-size: 14px;
  line-height: 14px;
}

/* popup button */
.button {
  /* background: #428bca; */
  /* padding: 1em 2em; */
  color: #104ef7;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

/* .button:hover {
  background: #3876ac;
} */

.modals {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.5);
}

.modals-content {
  margin: 10% auto;
  width: 60%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: var(--modal-duration);
  background-color: white;
}

.modals-header h2,
.modals-footer h3 {
  margin: 0;
}

.modals-header {
  background: var(--modal-color);
  padding: 15px;
  color: #000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modals-body {
  padding: 10px 20px;
  background: #fff;
}

.modals-footer {
  background: var(--modal-color);
  padding: 10px;
  color: #000;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.close {
  color: #ccc;
  float: right;
  font-size: 30px;
  color: #000;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ppt-modal-header {
  border-bottom: 1px solid #e7e7e7;
  padding: 30px 40px;
}

.pptModal__content {
  padding: 20px 40px;
}

.pptModal__content h4 {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}

.pptModal__content_list {
  margin-bottom: 30px;
}

.pptmodal_img_list {
  width: 660px;
}

.pptmodal_single-img {
  border-radius: 6px;
  height: 250px;
  overflow: hidden;
}

.ppt-modal-list {
  grid-row-gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

.ppt-modal-list li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
  position: relative;
  list-style: disc;
}

.weartag {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.weaverTags__item {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 8px;
  border-color: rgb(200, 230, 254);
  background: none;
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.arrowed {
  color: white;
  background-color: #0d6efd;
  border: 1px solid #0d6efd;
  border-radius: 50%;
  padding: 4px 10px;
}

.questioned {
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}

.bookedByIndians__hdr {
  align-items: center;
  display: flex;
}

.bookedByIndians__hdrtext {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px
}

.bookdBy__flag {
  margin-left: 10px;
  border-radius: 0;
  display: inline-flex;
  flex-shrink: 0;
  height: 22px;
  object-fit: unset;
  width: auto;
}

.luxe__theme:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}


.bookedByIndians__hdr {
  /* display: grid; */
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.bookedByIndians__listItem {
  align-items: center;
  display: flex;
  justify-content: left;
  gap: 34px;
}

.luxe__themes {
  padding-bottom: 12px;
  position: relative;
}

.luxe__themes:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.Aminities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.Aminities-items {
  display: flex;
  align-items: center;
}

.Amenities__itemIconWrap {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  margin-right: 10px;
  width: 24px;
}

.Amenities__itemText {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-name {
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}

.dscovrBstNew__cards {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  height: 77px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: inline-block;
}

.dscovrBstNew__cards-cardWrapper {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  height: 100%;
  padding: 0 15px 0 0;
  position: relative;
  width: 100%;
}

.dscovrBstNew__cards-cardWrapper img {
  flex-shrink: 0;
  margin-left: -1px;
  margin-right: 8px;
  object-fit: cover;
  padding: 8px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
}

.dscovrBstNew__cards-title {
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 3; */
  color: #8b572a;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

.wrapper {
  padding: 16px 0;
  /* overflow-x: hidden; */
}


.my-slider {
  padding: 0 10px;
}

.slick-initialized .slick-slide {
  /* background-color: #b32532; */
  color: #FFF;
  height: 80px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px\9;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: gray;
  color: black;
  border-radius: 57%;
}

.slick-next,
.slick-prev {
  /* z-index: 5; */
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
}

.loginto-unlock {
  background-color: #f1f9ff;
  border: 1px solid #d4d4d4;
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
}

.loginto-unlock-title {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  margin-bottom: 14px;
}

.loginto-unlock-dtl {
  align-items: center;
  display: flex;
}


.loginto-unlock-label {
  color: #000;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 19px;
  margin-right: 10px;
}

.loginto-unlock-frmCont {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  position: relative;
  width: 344px;
}

.loginto-unlock-frm {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  position: relative;
}

.loginto-unlock-code {
  align-items: center;
  background-color: #fdfdfd;
  border-radius: 4px 0 0 4px;
  color: #000;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  height: 44px;
  overflow: hidden;
  padding: 0 10px;
  pointer-events: none;
  position: relative;
  transition: all .3s linear;
}

.loginto-unlock-input {
  border: 0;
  color: #4a4a4a;
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  outline: 0;
  padding-left: 5px;
  width: 100%;
}

.button-outline {
  color: #008cff;
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #008cff;
  border-radius: 8px;
  padding: 12px 24px;
  align-items: center;
  background: none;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  outline: 0;
  margin-left: 12px;
}

.cardhdr {
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  padding: 16px;
}

.card-options-title {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

.card-ul {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.card-uls{
  list-style: disc; 
  display: flex; 
  gap: 4px; 
  margin-bottom: 0px;
}

.card-uls1{
  display: flex; 
  gap: 4px;
  margin-bottom: 0px;
}

.card-uls1 span{
  color: #1a7971; 
  margin-right: 4px;
}

.card-text {
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  color: #1a7971;
  display: -webkit-box;
  font-size: 16px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.priced {
  margin-right: 10px;
  text-decoration: line-through;
}

.appBtn {
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
  text-transform: uppercase;
}

.appBtn {
  color: #fff;
}

.appBtn {
  border-radius: 8px;
  padding: 12px 24px;
}

.appBtn {
  background: linear-gradient(92deg, #53b2fe, #065af3);
  box-shadow: 0 1px 7px 0 #0003;
}

.bkngOption__cta {
  padding: 8px 20px !important;
}

.appBtn {
  align-items: center;
  /* background: none; */
  border: 0;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  outline: 0;
}

.text-btn {
  background: none;
  border: 0;
  color: #008cff;
  cursor: pointer;
  display: inline-flex;
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  outline: 0;
  margin-left: 30px;
}

.ovrlRating {
  align-items: center;
  display: flex;
}

.ovrlRating__rating {
  align-items: center;
  background-color: #2757ae;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  margin-right: 16px;
  width: 78px;
}

.ovrlRating__title {
  color: #2757ae;
  font-size: 18px;
  font-weight: 900;
  line-height: 20px;
}

.ovrlRating__subTitle {
  display: inline;
  font-size: 14px;
  line-height: 17px;
  margin-top: 3px;
}

.textsBtn {
  background: none;
  border: 0;
  color: #008cff;
  cursor: pointer;
  display: inline-flex;
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  outline: 0;
}

.hrline {
  background: rgb(216, 216, 216);
  height: 1px;
  width: 100%;
  margin-bottom: 16px;
  margin-top: 16px;
}

.loccard {
  align-items: center;
  display: flex;
  cursor: pointer;
}

.locCard__icon {
  flex-shrink: 0;
  height: 56px;
  margin-right: 16px;
  object-fit: cover;
  width: 78px;
}

.locCard__title {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}


/* .right_content h3{
	font-size: 2em;
} */
/* .right_content p{
	height: 400px;
	background: #f5f5f5;
} */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.left_pane {
  /* background: #f5f5f5; */
  height: 500px;
  float: left;
  margin-right: 3%;
  width: 100%;
}

.right_content {
  float: left;
  width: 100%;
}

.fixed_block {
  background: #cecece;
  padding: 1em;
}

.current {
  font-weight: bold;
}

.paperCont {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
}

.paperCont-detail {
  border: none;
  margin: 4px 8px;
}

.mandatoryChargesListItm {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}

.mandatoryChargesListItmLft {
  max-width: 500px;
}

.mandatoryChargesFtr {
  background-color: #ebf5ff;
  border-radius: 0 0 4px 4px;
  padding: 12px 20px;
}


.search-form {
  display: flex;
  align-items: center;
  /* gap: 20px; */
}

.date-inputs,
.guests-inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.date-inputs label,
.guests-inputs label {
  font-size: 14px;
  margin-bottom: 5px;
}

.date-inputs input,
.guests-inputs .guests-dropdown {
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.guests-dropdown {
  position: relative;
}

#guests-summary {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 46px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 10px;
  width: 150px;
}

.input-groups {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.input-groups label {
  flex: 1;
}

.input-groups button {
  width: 25px;
  height: 25px;
  border: none;
  background-color: #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.input-groups span {
  width: 30px;
  text-align: center;
}

/* .check-availability {
    padding: 10px 20px;
    background-color: #800000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.check-availability:hover {
    background-color: #a00000;
} */

.SectionHeading {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

.hdr {
  color: #000;
  font-size: 18px;
  line-height: 21.6px;
  text-transform: capitalize;
}


.popup-link {
  display: flex;
  flex-wrap: wrap;
}

.popup-link a {
  background: #333;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
  margin: 20px;
  text-decoration: none;
}

.popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
}

.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
}

.popup-content p {
  font-size: 17px;
  padding: 10px;
  line-height: 20px;
}

.popup-content a.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.popup-content a.close:hover {
  color: #333;
}

.popup-content span:hover,
.popup-content span:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.popup-container:target {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3 {
  margin: 10px;
}

.from {
  border: 1px solid lightgrey;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px 15px;
  max-width: 1200px;
  margin: 15px auto;
  width: 100%;
}

.cm_modalContent {
  padding: 20px 40px;
}

.pupTab {
  -ms-overflow-style: none;
  border-bottom: 1px solid #e0e0e066;
  display: flex;
  overflow-x: auto;
  padding-top: 24px;
  scrollbar-width: none;
}

.pupTab_item {
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
  padding: 0 16px 13px;
  position: relative;
  text-transform: uppercase;
}

.pupTab__item.selected:after {
  background-color: #008cff;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.amenities-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 15px;
}

.amenities-list li {
  margin-right: 30px;
  display: flex;
  line-height: 20px !important;
}

.overlay {
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
  filter: alpha(opacity=80);
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  background-color: #0009;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
}

/* Popup */
.popup {
  background: white;
  position: absolute;
  /* top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 101;
  width: 500px;
  height: 200px; */
  /*Change your width here*/
  margin: auto;
  top: 60%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  width: 150%;
  height: 80%;
  margin: auto;
}

@media (max-width: 768px) {
  .popup {
    width: 90%;
    margin: auto 5%;
  }
}

.popup .popup-inner {
  position: relative;
  padding: 1em;
}

.popup .popup-inner input.s3-btn-close {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  background: black;
  border: solid 2px white;
  color: white;
  cursor: pointer;
  border-radius: 15px;
  outline: none;
}

/************* S3 Button *************/
input.s3-btn {
  background: transparent;
  border: none;
  /* width: 200px;
  height: 50px; */
  cursor: pointer;
  position: relative;
  top: -0%;
  right: 0px;
  bottom: 0;
  left: 0%;
  margin: auto;
  color: #0f64f4;

}

.Filter_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.Filter_list_item {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding: 9px 8px;
}

.Select-detail {
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  margin-bottom: 20px;
}

.select-card-wrap {
  /* border-bottom: 1px solid #d8d8d8; */
  display: flex;
  flex: 1;
  flex-basis: auto;
}

.select-card-left {
  border-right: 1px solid #d8d8d8;
  flex-shrink: 0;
  padding: 20px;
  width: 344px;
}

.select-type {
  position: sticky;
  top: 140px;
}

.rmPhotos {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rmPhotos__tag {
  align-items: center;
  background: #fff;
  border-radius: 11px;
  bottom: 16px;
  color: #08f;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  left: 28px;
  padding: 3px 14px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.rmPhotos-item {
  height: 220px;
  outline: 0;
  position: relative;
  width: 100%;
  display: inline-block;
  cursor: pointer;
  height: 146px !important;
}

.rmPhotos-item>img {
  border-radius: 16px;
  height: 100%;
  max-height: unset;
  object-fit: cover;
  vertical-align: top;
  width: 100%;
}

.rmType-text {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  word-break: break-word;
}

.Type-List {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* gap: 13px; */
  margin-top: 12px;
}

.Type-List li {
  display: flex;
  gap: 10px;
}

.Type-offer,
.Type-offer span {
  font-weight: 700;
  line-height: 19.2px;
}

.Type-offer {
  background: #fff;
  color: #8b572a;
  display: flex;
  margin-top: 10px !important;
}

.type-offer-ul {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.type-offer-ul li {
  /* list-style: disc; */
  display: flex;
}


.select-card-right {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.select-card-row {
  border-bottom: 0;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  flex: 1;
  flex-basis: auto;
  padding: 20px;
  width: 100%;
}

.select-card-row-left {
  border-right: none;
  flex-shrink: 0;
  padding-right: 40px;
  width: 460px;
}

.select-card-row-right {
  display: flex;
  flex: 1;
  position: relative;
}

.RatePlan-list {
  margin-top: 10px;
  margin-top: 14px;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
}

.RatePlan-list-item {
  display: flex;
  margin-bottom: 0;
}

.RatePlan-list-Img {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 16px;
  justify-content: center;
  margin-right: 8px;
  padding-top: 3px;
  position: relative;
  width: 16px;
}

.RatePlan-list-Img img {
  max-width: 16px;
}

.RatePlan {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.RatePlan-Name {
  align-items: center;
  border: 1px solid #852d94;
  border-radius: 8px;
  color: #852d94;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
}

.Payable {
  display: flex;
  margin-left: 0;
  margin-top: 10px;
}

.Payable-btn {
  background: linear-gradient(92deg, #53b2fe, #065af3);
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 #0003;
  font-size: 16px;
  margin-top: auto;
  padding: 8px 20px;
  color: white;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 900;
  outline: 0;
  text-align: center;
  text-transform: uppercase
}

:root {
  --arrow-font-size: 30px;
  --arrow-color: #000000;
  --arrow-color-lightbox: #ffffff;
}

.slick-slider {
  margin-bottom: 6px !important;
}

.XXXXX {
  margin-left: 8px;
}

.XXXXX__slide img {
  margin: 0 auto;
  max-width: 100%;
}

.slick-slider:not(.hero__slider) .slick-prev+.slick-list .slick-slide {
  padding: 0 8px;
}

.slick-slider:not(.hero__slider) .slick-prev:before,
.slick-slider:not(.hero__slider) .slick-next:before {
  font-size: var(--arrow-font-size);
  color: var(--arrow-color);
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-prev:before,
.slick-lightbox .slick-slider:not(.hero__slider) .slick-next:before {
  color: var(--arrow-color-lightbox);
}

.slick-slider:not(.hero__slider) .slick-prev,
.slick-slider:not(.hero__slider) .slick-next {
  height: initial;
  width: initial;
  z-index: 4;
}

.slick-slider:not(.hero__slider) .slick-prev {
  left: -10px;
}

.slick-slider:not(.hero__slider) .slick-next {
  right: -2px;
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-next {
  right: 15px;
}

@media only screen and (min-width: 1600px) {
  .slick-slider:not(.hero__slider) .slick-prev+.slick-list .slick-slide {
    padding: 0;
  }

  .slick-slider:not(.hero__slider) .slick-prev {
    left: unset;
    right: calc(100% + 30px);
  }

  .slick-slider:not(.hero__slider) .slick-next {
    left: calc(100% + 30px);
    right: unset;
  }
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-prev {
  left: 30px;
  right: unset;
}

.slick-lightbox .slick-slider:not(.hero__slider) .slick-next {
  right: 30px;
  left: unset;
}

.bodys {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #98dffd;
}

.dropdown {
  width: 100%;
  margin: 0 20px;
  /* padding: 20px;
  background-color: white;
  box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.3);
  font-family: 'Lato', sans-serif; */
}

@media (min-width: 768px) {
  .dropdown {
    width: 246px;
  }
}

.dropdown__switch:checked+.dropdown__options-filter .dropdown__select {
  transform: scaleY(1);
}

.dropdown__switch:checked+.dropdown__options-filter .dropdown__filter:after {
  transform: rotate(-135deg);
}

.dropdown__options-filter {
  width: 100%;
  cursor: pointer;
}

.dropdown__filter {
  position: relative;
  display: flex;
  /* padding: 20px; */
  color: #595959;
  /* background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 30px; */
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

/* .dropdown__filter:focus {
  border: 1px solid #918ff4;
  outline: none;
  box-shadow: 0 0 5px 3px #918ff4;
} */

.dropdown__filter::after {
  position: absolute;
  top: 28%;
  right: 84px;
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #595959;
  border-bottom: 2px solid #595959;
  transform: rotate(45deg) translateX(-45%);
  transition: 0.2s ease-in-out;
}

.dropdown__select {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 rgba(152, 152, 152, 0.6);
  transform: scaleY(0);
  transform-origin: top;
  font-weight: 300;
  transition: 0.2s ease-in-out;
  z-index: 999999;
}

.dropdown__select-option {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  transition: 0.3s;
  margin-bottom: 0px;
}

.dropdown__select-option:last-of-type {
  border-bottom: 0;
}

.dropdown__select-option:hover {
  background-color: #f9f9f9;
}


.Type-Drop-Down {
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  position: relative;
  border-radius: 0;
  display: grid;
}

.Type-Drop-Down-list {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.Type-Drop-Down-list-items {
  color: #4a4a4a;
  font-size: 14px;
}

.Type-Drop-Down-list-item {
  align-items: center;
  color: #8b572a;
  display: flex;
  font-size: 14px;
  line-height: 16.8px;
  margin-top: 8px;
}

.slick-wrapper {
  width: 80%;
  background-color: aqua;
}

.slide-item {
  background-color: rebeccapurple;
  color: aqua;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 200px;
  border: 1px solid white;
}

.slide-item h3 {
  font-family: Lato, sans-serif;
  font-size: 40px;
}

.localcount {
  border-top: 1px solid #d8d8d8;
  display: flex;
  height: 520px;
}

.luxe-title {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  position: relative;
}

.luxe-title:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: -10px;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.localcount-left {
  border-radius: 0 0 0 16px;
  flex: 1 1;
  position: relative;
}

.local-map-header {
  left: 0;
  padding: 16px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.local-map-header-search {
  background: #fff;
  border-radius: 4px;
  flex: 1;
  max-width: 220px;
  position: relative;
  z-index: 2;
}

.mapSearchIcon {
  display: inline-flex;
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 8px;
}

.search-Small {
  height: 13px;
  width: 13px;
}

.search-bar {
  position: relative;
  width: 100%;
}

.search-bar-input {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  height: 46px;
  outline: 0;
  padding: 5px 5px 5px 35px;
  transition: all .3s ease-in-out;
  width: 100%;
}

.show-near-by-Part {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 7px 0 #0003;
  padding: 7px 10px;
  margin-left: 10px;
}

.check-mark {
  display: inline-flex;
  flex-shrink: 0;
  min-height: 18px;
  position: relative;
}

.check-mark [type=checkbox]:not(:checked) {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.check-mark [type=checkbox]:not(:checked)+label {
  cursor: pointer;
  display: inline-flex;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
}

.check-mark [type=checkbox]:not(:checked)+label:before {
  background: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.keyboard-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.keyboard-view table {
  display: table;
}

.keyboard-view table,
.keyboard-view tbody,
.keyboard-view td,
.keyboard-view tr {
  background: inherit;
  border: none;
  margin: 0;
  padding: 0;
}

.keyboard-view tr {
  display: table-row;
}

.keyboard-view td:first-child {
  text-align: end;
}

.keyboard-view td {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: table-cell;
  color: #000;
  padding: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

.keyboard-view td kbd {
  background-color: #e8eaed;
  border-radius: 2px;
  border: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  font-family: Google Sans Text, Roboto, Arial, sans-serif;
  line-height: 16px;
  margin: 0 2px;
  min-height: 20px;
  min-width: 20px;
  padding: 2px 4px;
  position: relative;
  text-align: center;
}

.keyboard-view td {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: table-cell;
  color: #000;
  padding: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

.style {
  font: 400 11px Roboto, Arial, sans-serif;
  text-decoration: none;
}

.localcount-right {
  background-color: #fff;
  border-left: 1px solid #d8d8d8;
  border-radius: 0 0 16px 0;
  flex-shrink: 0;
  overflow-y: auto;
  width: 347px;
}

.localcount-right-item:last-child .localcount-right-item-hdng,
.localcount-right-item:last-child {
  border-bottom: 0;
}

.localcount-right-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 16px 16px 16px 15px;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.localcount-right-item-list {
  color: #008cff;
  font-weight: 900;
}

.localcount-right-item-list {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.localcount-right-item-list:after {
  border-color: #008cff;
  top: 21px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.localcount-right-item-list:after {
  border: solid #4a4a4a;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-flex;
  padding: 3px;
  position: absolute;
  right: 16px;
  top: 21px;
  transform: rotate(45deg);
}

.localcount-right-item-New {
  max-height: 200px;
  overflow-y: auto;
  padding: 0 16px;
}

.arround-list-item {
  border-bottom: 0;
  cursor: pointer;
  display: flex;
  padding: 8px 0;
}

.arround-list-item-lists {
  display: flex;
  flex: 1;
}

.arround-list-item-lists {
  display: inline-flex;
  flex-shrink: 0;
  min-height: 18px;
  position: relative;
}

.checkmarkOuter [type=checkbox]:not(:checked)+label {
  cursor: pointer;
  display: inline-flex;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
}

.checkmarkOuter [type=checkbox]:not(:checked)+label:before {
  background: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.arround-list-list {
  flex: 1 1;
  margin-top: -2px;
  display: flex;
  margin-left: 20px;
  gap: 128px;
}

.digital-arrow {
  -ms-flex-negative: 0;
  /* background: url(https://imgak.mmtcdn.com/pwa_v3/pwa_hotel_assets/sprite_prod/new-details-sprite_hash0512117….png) 0 0 no-repeat;
  background-size: 300px 300px; */
  /* display: inline-block;
  flex-shrink: 0;
  font-size: 0;
  background-position: -25px -73px;
  height: 25px;
  width: 25px; */
}

.Pg-Section-Heading {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  padding-bottom: 12px;
  position: relative;
  color: #0084ff;
  margin-left: 12px;
  margin-bottom: 5px;
}

.Pg-Section-Heading:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.rules {
  column-gap: 100px;
  column-count: 2;
}

.rules-items {
  margin-bottom: 6px;
  padding-left: 17px;
  position: relative;
}

.rules-items:before {
  background-color: #fff;
  border: 1px solid #757575;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 6px;
}

.Photo-theme {
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}

.Photo-theme h3 {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

.Photo-theme:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.guest-photo {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}

.guest-photo-item {
  cursor: pointer;
  height: 140px;
  position: relative;
}

.guest-photo-item>img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.guest-photo-item-text {
  align-items: center;
  background-color: #00000080;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  left: 0;
  line-height: 19px;
  position: absolute;
  top: 0;
  border-radius: 16px;
  height: 100%;
  width: 100%;
}

.section-Titles {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

.r-Tabs {
  border-bottom: 1px solid #bababa;
  display: flex;
  gap: 50px;
  padding-bottom: 6px;
}

.r-Tabs-item {
  cursor: pointer;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 22px;
  position: relative;
  font-weight: 900;
  text-transform: capitalize;
}

.ur-section-left {
  flex-shrink: 0;
  margin-right: 40px;
  width: 330px;
}

.ur-section-right {
  flex-shrink: 0;
  width: calc(100% - 370px);
}

.over-rating {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.over-rating-Cont {
  align-items: center;
  background-color: #2757ae;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  margin-right: 16px;
  width: 78px;
  background: #0b58b4;
}

.over-rating-title {
  color: #2757ae;
  font-size: 18px;
  font-weight: 900;
  line-height: 20px;
}

.over-rating-subTitle {
  display: inline;
  font-size: 14px;
  line-height: 17px;
  margin-top: 3px;
}

.rating-graph {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.rating-graph-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.rating-graph-text {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 19px;
  margin-right: 10px;
  width: 85px;
  text-transform: capitalize;
}

.rating-graph-percent {
  margin-left: 10px;
  text-align: right;
  width: 40px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 19px;
}

.rating-graph-bar {
  background-color: #d9d9d9;
  border-radius: 2px;
  flex: 1;
  height: 4px;
  overflow: hidden;
}

.rating-graph-progress {
  background-color: #0c58b4;
  height: 100%;
}

.hr-lined {
  height: 1px;
  width: 100%;
  background: rgb(216, 216, 216);
  margin-top: 20px;
  margin-bottom: 20px;
}

.rating-cat-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.rating-cat-list-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.rating-cat-list-item-rating {
  align-items: center;
  background-color: #fff;
  border: 1px solid #0c58b4;
  border-radius: 4px;
  color: #0c58b4;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  height: 27px;
  justify-content: center;
  width: 36px;
}

.review-hdr {
  align-items: center;
  display: flex;
  margin-bottom: 12px;
}

.review-body {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.review-icon {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  margin-right: 10px;
}

.review-expanded {
  align-items: center;
  background: linear-gradient(225deg, #3023ae, #c86dd7);
  border-radius: 0 22px 22px 0;
  display: inline-block;
  display: flex;
  justify-content: center;
  left: 20px;
  overflow: hidden;
  position: absolute;
  top: 1px;
  white-space: nowrap;
  width: 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
}

.review-subtitle {
  color: #757575;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 3px;
}

.filter-by-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.filter-by-list-item.selected {
  background-color: #eaf5ff;
  border-color: #008cff;
  color: #008cff;
  font-weight: 900;
}

.filter-by-list-item {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 19px;
  padding: 12px 8px;
}

.sortBy-dropdowncontent {
  flex-shrink: 0;
  margin-left: 100px;
}

.sortBy-wrapper-heading {
  font-size: 18px;
  font-weight: 900;
  line-height: 21px;
  margin-bottom: 10px;
  text-align: right;
}

.sortby-dropdown {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  color: #4a4a4a;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  padding: 12px 8px;
}

.dropdowns {
  display: inline-block;
  position: relative;
  margin-top: 7%;
}

.dd-buttons {
  display: inline-block;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 30px 10px 20px;
  background-color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

.dd-buttons:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.dd-buttons:hover {
  background-color: #eeeeee;
}


.dd-inputs {
  display: none;
}

.dd-menus {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  list-style-type: none;
}

.dd-inputs+.dd-menus {
  display: none;
}

.dd-inputs:checked+.dd-menus {
  display: block;
}

.dd-menus li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-menus li:hover {
  background-color: #f6f6f6;
}

.dd-menus li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

/* .dd-menus li.dividers {
  padding: 0;
  border-bottom: 1px solid #cccccc;
} */

.user-rvs-item {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0;
}

.user-rvs-itemHdr {
  display: flex;
  justify-content: space-between;
}

.grayDot {
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: 5px;
  width: 5px;
  margin-right: 5px;
  background-color: #9b9b9b;
  margin-left: 5px;
}

.user-rvs-rating {
  background-color: #fff;
  border: 1px solid #0c58b4;
  border-radius: 4px;
  color: #0c58b4;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-left: 20px;
  width: 48px;
  align-items: center;
  display: flex;
}

.user-review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px !important;
}

.user-review-photos>li {
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  height: 55px;
  overflow: hidden;
  width: 55px;
}

.user-review-photos>li>img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.Pg-section-heading {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  position: relative;
  margin-bottom: 40px;
}

.Pg-section-heading:after {
  background: #eed5a2;
  border-radius: 16px;
  bottom: -10px;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.compare-hotel-wraper-left {
  display: flex;
  flex-shrink: 0;
  /* padding: 10px 0 0; */
  width: 265px;
}

.compare-hotel-wraper-right {
  flex-shrink: 0;
  position: relative;
  width: calc(100% - 265px);
}

.wraper-left {
  align-self: flex-end;
  border: 0 solid #bababa;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  flex: 1;
  flex-shrink: 0;
  overflow: hidden;
  text-align: right;
}

.hotel-card-wraper {
  border: 1px solid #bababa;
  border-radius: 4px 4px 0 0;
  display: inline-block;
  flex-shrink: 0;
  outline: 0;
  position: relative;
  text-align: center;
  width: 265px !important;
  height: 508px;
  background: #f2f9ff;
  box-shadow: 0 4px 8px 0 #8a6b7666;
}

.card-image {
  border-radius: 4px 4px 0 0;
  height: 140px;
  overflow: hidden;
}

.Card-detail {
  padding: 4px;
  height: 153px;
  border-bottom: 1px solid #bababa;
}

.card-rating-cont {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: left;
  margin-bottom: 10px;
}

.s-rating {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
}

.s-rating-row {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.btn-view-details {
  align-items: center;
  border-radius: 34px;
  box-shadow: 0 1px 7px 0 #0003;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  text-transform: uppercase;
  width: 143px;
  background-image: linear-gradient(95deg, #53b2fe, #065af3);
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  font-weight: 900;
}

.card-details {
  padding: 15px;
  height: 54px;
  border-bottom: 1px solid #bababa;
}

.htl-rating {
  border-radius: 4px;
  display: inline-block;
  padding: 3px 5px;
  margin-right: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 900;
  background: #0b58b4;
}

.card-details1 {
  height: 53px;
  border-bottom: 1px solid #bababa;
  padding: 15px;
}

.add-another-hotel-card {
  border: 1px solid #bababa;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  display: flex !important;
  flex-shrink: 0;
  outline: 0;
  text-align: center;
  width: 250px !important;
  width: 100%;
  display: inline-block;
  height: 508px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.add-another-hotel-card-list {
  font-weight: 900;
  font-size: 14px;
  line-height: 20px
}


.Click-here {
  cursor: pointer;
  /* background-image: linear-gradient(190deg, #f83600 0%, #fee140 100%); */
  color: #fff;
  width: 180px;
  text-align: center;
  font-size: 16px;
  padding: 18px 0;
  margin: 0 auto;
  transition: background-image 3s ease-in-out;
}

/* .Click-here:hover {
  transition: background-image 3s ease-in-out;
  background-image: linear-gradient(90deg, #fee140 0%, #f83600 100%);
} */

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 800px;
  margin: 30px auto;
  max-width: 97%;
}

.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btn {
  position: absolute;
  right: -160px;
  top: -238px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}

.add-hotel-modal {
  background: #fff;
  border-radius: 4px;
  left: 50%;
  overflow: hidden;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1016px;
  z-index: 999999;
}

.add-hotel-modal-content {
  padding: 30px 30px 0;
}

.add-hotel-modal-footer {
  background-color: #fff;
  box-shadow: 0 4px 12px 0 #171717b8;
  padding: 25px 30px;
  position: relative;
  text-align: center;
}

.add-hotel-moda-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.add-hotel-listing-outer {
  margin: 0 -30px;
  max-height: 500px;
  overflow-y: auto;
  padding: 15px 30px 0;
}

.label {
  font-size: .625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: +1.3px;
  margin-bottom: 1rem;
}

.searchBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#searchQueryInput {
  width: 100%;
  height: 2.8rem;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
}

.listing-row-outer {
  margin-bottom: 20px;
  position: relative;
}

.listing-rowed {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 #8a6b7614;
  cursor: pointer;
  display: flex;
  position: relative;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
  flex-direction: column;
  border: 1px solid #bababa;
}

.checkmarkouter {
  display: inline-flex;
  flex-shrink: 0;
  min-height: 18px;
  position: relative;
  margin-right: 10px;
}

.checkmarkouter [type=checkbox]:not(:checked) {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.checkmarkouter [type=checkbox]:not(:checked)+label {
  cursor: pointer;
  display: inline-flex;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
  pointer-events: none;
}

.img-conts {
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-shrink: 0;
  margin-bottom: 5px;
  position: relative;
  width: 239px;
}

.img-thumb-list {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  width: 239px;
}

.img-thumb-cont {
  height: 50px;
  position: relative;
}

.img-thumb {
  height: 100%;
  object-fit: cover;
  opacity: .8;
  overflow: hidden;
  transition: all .3s linear;
  width: 100%;
  border-radius: 4px;
}

.makeFlex.left {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
}

.pc-location-per {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  position: relative;
  display: flex;
}

.highlt-per {
  align-items: center;
  display: inline-flex;
  margin: 6px 0;
  position: relative;
}

.highlt-title-per {
  align-items: center;
  color: #4a4a4a;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  line-height: 17px;
}

.pc-amenity {
  align-items: center;
  color: #4a4a4a;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  margin-right: 15px;
}

.pc-inclusions-list {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}

.pc-inclusion-per {
  font-weight: 400;
  line-height: 14px;
  margin-top: 6px;
  color: #1a7971;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-bottom: 5px;
  position: relative;
  font-size: 14px;
}

.price-details {
  background: #f5f5f5;
  border-left: 1px solid #e6e6e6;
  border-radius: 0 6px 6px 0;
  flex-shrink: 0;
  justify-content: space-between;
  width: 185px;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.tile-price-section {
  align-items: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}

.make-flex {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: auto;
}

.pc-cashback-deal-per {
  background-color: #d1f8e6;
  font-weight: 700;
  line-height: 14px;
  min-height: 42px;
  padding: 8px 16px;
  align-items: center;
  border-radius: 0 0 4px 4px;
  border-top: 0;
  color: #1a7971;
  display: flex;
  font-size: 14px;
  position: relative;
}

.add-hotel-modal-footer {
  background-color: #fff;
  box-shadow: 0 4px 12px 0 #171717b8;
  padding: 25px 30px;
  position: relative;
  text-align: center;
}

.primary-btns {
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  border: 0;
  border-radius: 34px;
  box-shadow: 0 1px 7px 0 #0003;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  outline: 0;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 20px;
  width: 290px;
  display: inline-block;
  flex-shrink: 0;
}

.guest-photo-item-text {
  align-items: center;
  background-color: #00000080;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  left: 0;
  line-height: 19px;
  position: absolute;
  top: 0;
}

.guest-photo-item-text>img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
}

.mg-folder {
  background-color: rgb(242, 242, 242);
  height: 100%;
  left: 0px;
  overflow-y: auto;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
}

.mg-header {
  background-color: rgb(255, 255, 255);
  padding: 20px 0px 0px;
  position: sticky;
  top: 0px;
  z-index: 2;
}

.mg-body {
  margin: 0px auto;
  padding: 20px 0px
}

.mg-heading {
  color: #151515;
  font-size: 22px;
  font-weight: 900;
  line-height: 26px;
}

.app-btnsed {
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(92deg, #53b2fe, #065af3);
  box-shadow: 0 1px 7px 0 #0003;
  align-items: center;
  /* background: none; */
  border: 0;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  outline: 0;
}

.point-tab {
  display: flex;
  gap: 12px;
}

.point-tab-item {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  overflow: hidden;
  padding: 0 8px;
}

.point-tab-item.selected {
  background-color: #eaf5ff;
  border-color: #008cff;
}

.pc-tab {
  border-bottom: 1px solid #bababa;
  overflow-x: auto;
  padding-bottom: 4px;
  display: flex;
  /* gap: 24px; */
}

.pc-tab-item.selected {
  font-weight: 900;
}

.pc-tab-item {
  color: #4a4a4a;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 4px;
  outline: 0;
  padding-right: 15px;
  position: relative;
}

.photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.pg-section {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.pg-section-title {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.pg-section-heading {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

.pg-section-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.pg-section-grid-item {
  cursor: pointer;
  height: 274px;
  position: relative;
}

.pg-section-grid-item>img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* .gslide-image img {
  100vh doesn't work on mobile.
  width: auto !important;
  height: 100vh !important;
} */

.popuped {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.popuped .popup__contents {
  width: 80%;
  overflow: auto;
  padding: 50px;
  background: white;
  color: black;
  position: relative;
  top: 210%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.popuped .popup__contents .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  display: block;
}

.popuped .popup__contents .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}

.popuped .popup__contents .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popuped .popup__contents .close span:nth-child(2) {
  transform: rotate(135deg);
}

.showed {
  /* background: #099ccc; */
  color: #099ccc;
  /* margin: 30px;
  padding: 5px 30px; */
  cursor: pointer;
  border: none;
}

.popupes {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.popupes .popup__contented {
  width: 540px;
  overflow: auto;
  padding: 2px;
  background: white;
  color: black;
  position: relative;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border-radius: 4px;
}

.popupes .popup__contented .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  display: block;
}

.popupes .popup__contented .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}

.popupes .popup__contented .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popupes .popup__contented .close span:nth-child(2) {
  transform: rotate(135deg);
}

.showes {
  /* background: #099ccc; */
  color: #099ccc;
  /* margin: 30px; */
  padding: 12px 22px;
  cursor: pointer;
  border: none;
}

.popup-headers {
  border-bottom: 0;
  padding: 25px 30px 0;
}

.pop-offer {
  align-items: center;
  background-color: #cdfce8;
  border-radius: 4px;
  color: #1a7971;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  padding: 8px 16px;
}

.popup-contents {
  padding: 24px 30px 0;
}

.featureds-lists {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, auto);
}

.pop-amenites {
  border-bottom: 1px solid #c7c7c7cc;
  border-top: 1px solid #c7c7c7cc;
  padding: 24px 0;
}

.Dtl-amenities-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.Dtl-amenities-list li {
  display: flex;
  margin-right: 30px;
  line-height: 12px;
  margin-bottom: 0;
}

.reviewCard {
  border: 1px solid #dad6d6;
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 16px 20px;
}

.review-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.review-card-top-rating {
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 #8a6b7614;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
  border: 1px solid #00a19c;
}

.trvlr-pics-list img {
  border-radius: 4px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.Popup-rate-plan {
  border-top: 1px solid #bababa;
  margin-top: 30px;
  padding-top: 25px;
}

.rmHeader {
  background: #f0f0f0;
  border: 1px solid #bababa;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  left: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 114px;
  z-index: 8;
}

.rmHeader-item:first-child {
  flex-shrink: 0;
  width: 50%;
}

.rmHeader-item:nth-child(2) {
  flex-shrink: 0;
  width: 50%;
}

.rmHeader-item {
  align-items: center;
  border-right: 1px solid #bababa;
  display: flex;
  padding: 16px;
  position: relative;
}

.popupeds {
  border: 1px solid #bababa;
  border-radius: 0 0 4px 4px;
  border-top: 0;
}

.rm-seclect-card {
  display: flex;
  border-bottom: 0;
}

.rm-select-card-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.rm-select-card-row {
  border-bottom: 0;
  display: flex;
  flex: 1;
  flex-basis: auto;
  width: 100%;
}

.rm-select-card-row-left {
  border-right: 1px solid #bababa;
  flex-shrink: 0;
  padding: 16px;
  width: 50%;
}

.rm-select-card-row-right {
  /* flex: 1; */
  padding: 16px;
  width: 50%;
}

.rm-rate-plan-heading {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
}


.rm-rate-plan__list {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.rm-rate-plan-link {
  padding-left: 23px;
  margin-top: 15px;
}

.blue {
  color: #095df3;
}

.rm-payable-dtl-right {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-left: 10px;
}

.rm-payable-dtl-right-cta {
  font-size: 16px;
  margin-top: auto;
  color: #fff;
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  border: 0;
  border-radius: 34px;
  box-shadow: 0 1px 7px 0 #0003;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  outline: 0;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
}

/* body {
  font: normal 14px/100% "Andale Mono", AndaleMono, monospace;
  width: 300px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  height:100vh;
} */
.Click-heres {
  cursor: pointer;
  /* background-image: linear-gradient(190deg, #f83600 0%, #fee140 100%); */
  color: black;
  width: 180px;
  text-align: center;
  font-size: 16px;
  padding: 18px 0;
  margin: 0 auto;
  transition: background-image 3s ease-in-out;
}

.Click-heres:hover {
  transition: background-image 3s ease-in-out;
  /* background-image: linear-gradient(90deg, #fee140 0%, #f83600 100%); */
}

.custom-model-mains {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-inners {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 900px;
  margin: 30px auto;
  max-width: 97%;
  top: 42%;
}

.custom-model-wraps {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-open .custom-model-inners {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-open .bg-overlays {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlays {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btns {
  position: absolute;
  right: 0;
  top: -45px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #000;
}

@media screen and (min-width:800px) {
  .custom-model-mains:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inners {
    margin-top: 45px;
  }
}

.sub-pop-wrapper-content {
  padding: 25px 32px;
}

.sub-pop-wrapper-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.policy-tbl {
  background-color: #fff;
  border: 1px solid #d0d5df;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

.policy-tbl-head {
  border-bottom: 1px solid #d0d5df;
  display: flex;
  font-size: 11px;
  font-weight: 900;
}

.policy-tbl-col {
  padding: 6px 10px;
  width: 50%;
  border-right: 1px solid #d0d5df;
  background-color: #f1f3f7;
}

.policy-tbl-row {
  border-bottom: 1px solid #d0d5df;
  display: flex;
}

.policy-tbls {
  background-color: #fff;
  border: 1px solid #d0d5df;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

.policy-tbl-heads {
  border-bottom: 1px solid #d0d5df;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 1px;
}

.policy-tbl-cols {
  padding: 6px 10px;
  width: 50%;
  border-right: 1px solid #d0d5df;
  background-color: #f1f3f7;
}

.policy-tbl-rows {
  border-bottom: 1px solid #d0d5df;
  display: flex;
  margin-bottom: 1px;
}

.content {
  width: 50%;
  margin: 0 auto;
  margin-top: 5%;
  background-color: #e9e9e9;
  border-left: 8px solid black;
  padding: 20px;
}

.content h3 {
  font-weight: bold;
  margin-bottom: 24px;
}

.content p {
  margin-bottom: 12px;
}

#show-more,
#show-less {
  color: grey;
}

#show-more a,
#show-less a {
  cursor: pointer;
  text-decoration: underline;
  color: auto;
}

.cm-modal-header {
  border-bottom: 1px solid #e7e7e7;
  padding: 25px 22px 20px;
}

.cm-modal-content {
  padding: 18px 30px;
}

.fc-details {
  border: 1px solid #d7d7d7;
  padding: 20px 24px;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 #96969680;
  /* padding: 0 20px 15px; */
  text-align: left;
  /* width: 368px; */
  z-index: 1;
}

.rfnd-top-bar {
  border-radius: 22px;
  display: flex;
  height: 22px;
}

.rfnd-top-bar-col:first-child {
  border-radius: 22px 0 0 22px;
  border-right: 1px dashed #000;
  text-align: center;
}

.rfnd-top-bar-col.refundable {
  background-color: #249995;
  border-right: 1px dashed #000;
  color: #fff;
  flex-shrink: 0;
  padding: 0 220px 0 5px;
  text-align: center;
}

.rfnd-top-bar-col {
  align-items: center;
  display: flex;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  position: relative;
}

.rfnd-top-bar-col:last-child {
  border-radius: 0 22px 22px 0;
  flex-shrink: 0;
  padding: 0 5px 0 8px;
  width: 115px;
}

.rfnd-top-bar-col.nonrefundable {
  background-color: #ffefc6;
  color: #cd9100;
  flex-shrink: 0;
  text-align: right;
  width: 115px;
}

.rfnd-top-bar-oval {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: inset 0 1px 3px 0 #00000080;
  display: inline-flex;
  flex-shrink: 0;
  height: 14px;
  width: 14px;
  margin-right: 8px;
}

.rfnd-top-bar-col-text {
  font-size: 10px;
  line-height: 22px;
}

.rfnd-bottom-bar {
  display: flex;
  padding-top: 13px;
}

.rfnd-bottom-bar-lft {
  display: flex;
  flex: 1;
}

.rfnd-bottom-bar-col:last-child {
  flex: unset;
}

.rfnd-bottom-bar-col.last {
  flex-shrink: 0;
  text-align: right;
  width: 115px;
}

.rfnd-bottom-bar-col {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.rfnd-bottom-bar-col:first-child {
  text-align: left;
}

.rfnd-bottom-bar-col {
  display: flex;
  flex: unset;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.rfnd-bottom-bar-colText {
  color: #333;
  font-size: 11px;
  font-weight: 900;
}

.rfnd-bottom-bar-lft .rfnd-bottom-bar-col:nth-child(2) {
  margin-left: auto;
}

.rfnd-bottom-bar-col:last-child {
  flex: unset;
}

.rfnd-bottom-bar-col.cancellationDate {
  margin-right: -23px;
}

.rfnd-bottom-bar-col {
  display: flex;
  flex: unset;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.rfnd-bottom-bar--colText {
  color: #333;
  font-size: 11px;
  font-weight: 900;
}

.rfnd-bottom-bar-lft .rfnd-bottom-bar-col:nth-child(2):after {
  background-color: #000;
  content: "";
  height: 11px;
  left: calc(50% + 1px);
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  width: 1px;
}

.rfnd-bottom-bar-colSubText {
  color: #979797;
  font-size: 11px;
  line-height: 12px;
}

.cp-list-fc .greyDot {
  background-color: #4a4a4a;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  height: 6px;
  margin-top: 6px;
  width: 6px;
  margin-right: 5px;
}

.cp-benefits {
  align-items: baseline;
  border-top: 1px solid #c7c7c7cc;
  display: flex;
  padding: 14px 0;
}

.image-slide-container {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
  justify-content: left;
}

.modalMain {
  padding-top: 50px;
}

.modalMain {
  box-shadow: 0 1px 7px #0006;
  left: 0;
  position: relative;
  top: 0;
  transform: translate(0);
  z-index: 3;
}

.modalMain {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #0006;
  left: 65%;
  min-height: 565px;
  min-width: 429px;
  padding: 30px;
  position: fixed;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 490px;
  z-index: 2;
}

.modalLogin ul {
  background-color: #fff;
  border-radius: 51px;
  box-shadow: 0 1px 7px 0 #0000004d;
  padding: 7px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
  text-align: center;
  display: flex;
}

.modalLogin ul li.active {
  background-image: var(--color-btn-primary-bg, linear-gradient(93deg, #53b2fe, #065af3));
  color: #fff;
}

.modalLoginulli {
  border-radius: 150px;
  color: #4a4a4a;
  cursor: pointer;
  flex: 1;
  font-size: calc(var(--font-scale, 1)* 15px);
  line-height: 15px;
  padding: 7px 14px;
  background: aliceblue;
}

.modalFieldInner {
  /* -webkit-appearance: none; */
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  align-items: center;
  display: flex;
}

.cntry-code-wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  width: 80px;
}

.logins {
  align-items: center;
  width: 75px;
  display: flex;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.drop-down {
  border-width: medium;
  border-bottom: 2px solid var(--color-primary, #008cff);
  border-left: 0 solid var(--color-primary, #008cff);
  border-right: 2px solid var(--color-primary, #008cff);
  border-top: 0 solid var(--color-primary, #008cff);
  display: inline-block;
  padding: 3px;
}

.flag__wrap {
  align-items: center;
  display: flex;
  width: 23px;
  margin-left: 5px;
  margin-right: 5px;
}

.login1 {
  font-size: 14px;
  line-height: 14px;
  margin-right: 5px;
  margin-left: 5px;
  font-weight: 700;
}

.modalLogininput {
  width: 100%;
  border: 0;
  outline: none;
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  font-size: 14px;
  line-height: 14px;
  color: #008cff;
}

button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

/*------------*/
.form-area {
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
  padding: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-area .form-inner {
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 19px;
  font-size: 1rem;
  line-height: 1.4;
  color: #475f7b;
  background-color: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 0.267rem;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #475f7b;
  background-color: #fff;
  border-color: #5a8dee;
  outline: 0;
  box-shadow: 0 3px 8px 0 #000;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.btnContainer {
  background-color: #c2c2c2;
  box-shadow: none;
  opacity: .6;
}

.btnContainer {
  background-color: var(--color-btn, #008cff);
  border: none;
  border-radius: var(--btn-border-radius, 4px);
  box-shadow: 0 1px 4px 0 #0000004d;
  color: var(--color-btn-primary-text, #fff);
  cursor: pointer;
  font-weight: 700;
  outline: none;
  padding: 12.5px 0;
  width: 100%;
  font-size: 16px;
  line-height: 16px;
}

.google-login-bar {
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  width: 100%;
}

.appends {
  margin-bottom: 25px;
  justify-content: center;
  display: flex;
}

.moused {
  cursor: pointer;
  height: 40px;
  margin-left: 15px;
  width: 40px;
}

.google-login-bar>span {
  background-color: #fff;
  color: #9b9b9b;
  display: inline-flex;
  font-size: calc(var(--font-scale, 1)* 12px);
  font-weight: 700;
  margin-bottom: -7px;
  padding: 0 10px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px 0 13px !important;
}

.login-slider-comp-wrapper {
  border-radius: 10px 0px 0px 10px;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 540px;
  overflow: hidden;
  position: relative;
  width: 386px;
  z-index: 2;
}

.slider-item-background,
.slider-item-background img {
  height: 100%;
  width: 100%;
}

.sliderItemContent.primarySection {
  justify-content: center;
  padding-top: 0px !important;
}

.active .sliderItemContent {
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: fadeAnimation;
}

.sliderItemContent {
  display: flex;
  flex-direction: column;
  padding: 85px 55px 8px 48px;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
}


.sliderItemContent-headerPart {
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 24px 16px;
}

.sliderItem-topSubTitle {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 900;
  line-height: 28px;
}

.sliderItem-title {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: 900;
  line-height: 38px;
  margin-top: 12px;
}

.slider-item-benefits {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  background: unset !important;
  box-shadow: unset !important;
}

.slider-item-benefits li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  padding: 12px 10px;
  border-radius: unset !important;
  /* color: rgb(255, 255, 255) !important; */
}

.sliderItem-iconWrap {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 42px;
  justify-content: center;
  margin-right: 16px;
  min-width: 42px;
}

.loginPersuasionSlider.whiteFlight {
  background-position: 0px 0px;
  height: 26px;
  width: 38px;
}

.loginPersuasionSlider {
  display: block;
  flex-shrink: 0;
  background: url(//imgak.mmtcdn.com/pwa_v3/pwa_commons_assets/desktop/loginImageSlider@1x.png) 0% 0% / 150px 70px no-repeat;
}

.benefitSubTitle {
  font-size: calc(var(--font-scale, 1)* 14px);
  line-height: 16px;
  margin-top: 3px;
}

.benefitTitle {
  font-size: calc(var(--font-scale, 1)* 16px);
  font-weight: 900;
  line-height: 20px;
}

.loginPersuasionSlider.whiteHotel {
  background-position: -70px 0px;
  height: 24px;
  width: 32px;
}

.loginPersuasionSlider.whiteTrain {
  background-position: -40px 0px;
  height: 34px;
  width: 26px;
}

.sliderItem-couponCode {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgb(255, 255, 255);
  font-size: calc(var(--font-scale, 1)* 14px);
  font-weight: 900;
  line-height: 16px;
  padding-top: 24px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.sliderItemWrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}

#slider {
  /* width: 100%; */
  margin: 0 auto;
  position: fixed;
  overflow: hidden;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
  top: 66px;
}

.slide {
  width: 100%;
  display: none;
  animation-name: fade;
  animation-duration: 1s;
}

img {
  width: 100%;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  padding: 15px 10px;
  border-radius: 5px;

}

.controls:hover {
  background: white;
  transition: 0.3s;
}

.controls:active {
  color: grey;
}

#left-arrow {
  left: 10px;
}

#right-arrow {
  right: 10px;
}

#dots-con {

  text-align: center;
}

.dot {
  display: inline-block;
  background: grey;
  padding: 8px;
  border-radius: 50%;
  margin: 10px 5px;
}

/* .active {
  background: crimson;
} */

@media (max-width:576px) {
  #slider {
    width: 100%;

  }

  .controls {
    font-size: 1em;
  }

  #dots-con {
    display: none;
  }
}

.modal-mains {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #0006;
  left: 50%;
  min-height: 565px;
  min-width: 510px;
  padding: 30px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 510px;
  z-index: 2;
  padding-top: 50px;
  overflow: hidden;
  padding-bottom: 30px;
  height: auto;
}

.modal-logins {
  color: #ff664b;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
}

.bizlogin-inputText {
  background-color: #fff;
  border: 1px solid #fac7ab;
  border-radius: 4px;
  color: #4a4a4a;
  font-family: var(--font-family);
  font-size: calc(var(--font-scale, 1)* 14px);
  font-weight: 400;
  height: 40px;
  outline: 0;
  padding: 0 17px;
  width: 100%;
  color: #ff664b;
}

.createMbAccount__btn {
  align-items: center;
  background-image: linear-gradient(256deg, #ff684a, #ff4959);
  box-shadow: 0 1px 17px 0 #00000052;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  flex: 1;
  border: 0;
  border-radius: 4px;
  outline: 0;
  width: 100%;
  padding: 8px;
  margin-right: -8px;
}


.card {
  border: 0;
  -webkit-box-shadow: 0 1px 3px rgba(3, 0, 71, 0.09);
  box-shadow: 0 1px 3px rgba(3, 0, 71, 0.09);
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
}

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.spr-fr-fltr {
  padding: 20px 16px 18px 24px;
  border-radius: 4px;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 20%);
  background-color: #fff;
  width: 240px;
  flex-shrink: 0;
  margin-right: 25px;
  top: 80px;
  align-self: flex-start;
}

.clearAll {
  cursor: pointer;
  color: #008cff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
}

.spr-fltrs-list-item {
  display: flex;
  margin-bottom: 12px;
  flex-direction: column;
}

.radio-outer {
  min-height: 18px;
  cursor: pointer;
  display: inline-flex;
  position: relative;
}

.inputeds {
  position: relative;
  padding-left: 8px;
  cursor: pointer;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
}

/* .inputeds::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #9b9b9b;
  border-radius: 100%;
  background: #fff;
  height: 16px !important;
  width: 16px !important;
} */

/* .inputeds::after {
  background: #008cff;
  border-radius: 100%;
  content: '';
  height: 12px;
  left: 3px;
  position: absolute;
  top: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 12px;
} */

.has-arrow::after {
  display: inline-flex;
  border: solid #008cff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  transform: rotate(45deg);
}

.spr-fltrs-sublist {
  padding-left: 28px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkmarkOuter {
  display: inline-flex;
  position: relative;
  min-height: 18px;
  flex-shrink: 0;
}

.checkmarkOuter [type='checkbox']:not(:checked)+label,
html[dir='ltr'] .checkmarkOuter [type='checkbox']:checked+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
}

.dl-List {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 20px;
}

.ofr-deal-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
  border-radius: 4px;
  padding: 15px;
  min-width: 240px;
}

.ofr-deal-card-icons {
  display: flex;
  gap: 4px;
  margin-bottom: -12px;
}

.ofr-deal-card-imgcont {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.offerMainBanner.webpSupport {
  height: 138px;
  background-repeat: round;
}

.Offer-image {
  background-image: url(data:image/webp;base64,UklGRlgIAABXRUJQVlA4WAoAAAAQAAAACAEAiQAAQUxQSEkAAAABN0AmYLHIoori5FIjIoLHncA2AMAy8e7dd/n/S1A3ov8TkD2f/wCJL6BlegU45kuI1gD+/vv99/vv99/dSC0BNStgWVbzsw0AAFZQOCDoBwAAcD0AnQEqCQGKAD6RPptKJaMiIasQq6iwEglpANjMp4882etnL2sy92JeoTnjfDP/B//URj97fXzoDVNUXSw5ijZAt5KbyGTd/YftCWNH9FicjED6HQ6S5MDv88O2ZqyunAct8/XuVnbyEBzyXkZPur+C1PtRuVOsQEN23YPCTJ42spN5NQoEDYyiZINXljUjPQOAoq4rRKVuB/AfF8uqZpsNS6OcT1WkNg1uHmBUEd3aWB7boNOzgYOwxiC6fxNWF5n+qtK+86x1q4fdaeOWmYN2SlvE7ZTsNfu7phfcR5m0NaoQi+kyjm0fyuQv3UcHC9jOofIbTR+N18O1TanIpWByjmRcEfptmzKXMKyZMX9ICKDpX3NZA6dWN5w9BjGo0zmh2dSbYs0AOomqgo0Xrr77sBDGj2+v/KCKtp+WAwCB96N4d9ALP4JlBpTNHeJxyC/zbIIrhGQn0PRodEzzBvtkVget7U62sCez93v5V8785gWU7w7TKZBpeVeCRkUoyJ1PwXoFIBMRzbpEw2W4RdIYQJ1POSXgX5K3OfOXuu1cbeXNv/+u9FOtXGshzLVIAxWbZAy+dveG7HSSunGE5JVg6ti33HKygDTGkXBZSfcfpx+jmJ2knuJgOWPgnygmrlY1JWpyo0jalmA5mEvEpjucd2AA/vX4vDhdpGCIn4i3XrwJ179yS3/62Ajrof7oXJzBpBRsfNAX2dFb+GI5MGMl7Fig05lMEQ3nvS/eEfiW4BBwqL+F8BEv6o243QZDnPXrEVuEhOUPWufposWJfu3i4Y/wM4w5Wntqk7VduIb9Yc8BhgmKg847uP44+cuKW8cklqbE21bYNXXR4x74z+nGaSAeiWsP82VxQBMse8oIthhA7IKf7XLp2AzSqU5C37lo0hoiLTXkxxzizB6HdZYIybIIe/R+rLGe4yGGJRSLWZvEzPUsIeGdBCcv4LGp4ehcLg9hcBSGqYCVvgVPS0P2pGr0bDqB/LpBDl50scknHBjqTBAKt5a06a2ubY/7UWvlSYUnv2aaQKrtulTCfdrsvtgqHDyPfkXtQw/NvtZO1xbaoPb3Q7kpS2ql8QdtqLKnQwziUu+P6kbWMTWNxhRN5Fi/LEQtWdTYnLeEDaX4B8qX6gqasMfualW2RCbVVVyRKzbi646Shu/Cs6QT5fC6OldqEWY6bxwx2ilnjKYJADc6hCAxCA5sVaCQFckPdmvAhtG5QPbndh5RsfOtvLsqyBziUGILsGJ3S3J0uOZAyQuJVpdlgqTV9TDE1LG0I7iTflP8ZSp5NL48ksCQsZLhk2+Op/16vt4+YUlI2VaAr3tTnkL/J8dS3Aki1Uy5KdaiYsOonef3Q0a1DTkhmtjhLNiz3cOwizeS99LAxCvwye8qGE4MIBAqwAabUSqXS/LCW/MvqeLnZO3onfvtbEsaoDjOIfj3xrRgeGu0BxtNwoj464JxN/HX+6ANHvuXcxOq30iu/klk2tyOl2cpD97/rJftgk2AjX0g1pa4qh5EaA2hBggHLlMoo/GHkQ5GZ2nZAItb7DAiR9rKe8wQEydjAAM3y+7DWRjF2W/Yz2rG9mTe2rTu7Et1U3pxAgGIQ3wLxVdxv4Ac0JyDTVNuSe5YnUmrdz6zpkJ0nd4tFLFUm3wDFbNwdkoTROj3QHm/9ed6xKR150CeDQbc00gLaX2hxtwd0PdKsDNzwE1cF2I25P+Hq4R6WknHeyxHdVejWKBma9UiTmOUYcAvYcUqMZ6t5bTcbtZfEcvcxY7U9yhrU+7O4LkciRN4iq+cJgVptEuj8TnWlltZ3c5JIJc2KcqtMTpfvlrMWY03uR/2xOw5yZqyxTmVPSNli+yRVus04uxvk2Uk1rSICLtUeWWVfiDz8Y8er4CWhr7npSdhx6dAgiTgbIN7RIU6j6Jj9uc0ypYqhHf1KgMrSpQENXhx/W7x9IsBy0w19SuRhznyIVvwhHrStQvXtS44lD34cGJnJ6V7dUmbwEUit4YNaSvXpWgRKB2axDYJDqudachdaI8k3tBSSy8Nc/gRXQM4j/amd7NnAco3rdQV42MPOcEl2ZxdNsdSJS+qw796GBycGV+DRqYFkKc5eDPqNotgQp8e0H1BVwEjjMtvkQ1o320og5rCsYW/fMJchl8ycNMHqgj/2LLny/x0R2qQfG+OJqGH5gfjr6hhqqvbjhCuJ2MAnAAQeQvMWJTtQAOais8x4739u2cXbfe55HkMAGMPLo5Cx+TnliwX/n3dRO7q8o6UThRxZ+DokdFITw+fmxPdEALga3MnCQ8ZVRR3Bl0jR9jtvmvBtxk07hYgkjcsdH0M9ao0fAEkwcrDTMix2nULxxlSSAheBMnaiPEDgfxmZC0manJKWjluE+D4nIny5GEyH4BJinsEZr9dBJyvr9YcbjjGOHsfW3AJIYWjCduEPL/7M3eWnm/EMcod7suQPSPYe9XGGsQklBAcXWIgcxaYsQRp5ansVXw8/YfRJDP91SBxgRwXP0/wIjpbb1d2GGsmwJ2TgqCYw1RhbJYaaPu5/2NHs4CTVBo+MTOjQuAWlM0zqsF6eRWuThXoUKS6szE4ftGnbZ+6DRC9rY1DrZei3RRmXhGKiMDbdIJOW/optl/wtYt6f89OcWeyI3Ah7JYdMeQK4gwKQqGxWvbxJLXUf4FqDiKxVzFwXn8omtCQyDhmz/T5N6EAAAA=);
}

.ofr-deal-card-body {
  display: flex;
}

.ofr-deal-card-hd {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  color: #000;
}

.ofr-deal-dard-body-rh {
  flex-shrink: 0;
  text-align: right;
  margin-left: 10px;
  min-width: 90px;
  max-width: 120px;
  align-items: end;
  flex-direction: column;
}

.tn-cta {
  color: #008cff;
  margin-top: 3px;
  font-size: 11px;
  line-height: 11px;
}

.ofr-deal-card-sub {
  font-size: calc(var(--font-scale, 1)* 14px);
  line-height: 18px;
  margin-top: 5px;
}

.ofr-deal-card-ftr {
  margin-top: auto;
}

.ofr-deal-card-make {
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.ofr-deal-card-black-cover {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  border-radius: 14px;
  padding: 2px 4px;
}

.ofr-deal-card-black-cover {
  font-size: calc(var(--font-scale, 1)* 12px);
  font-weight: 700;
  color: #fff;
}

.ofr-deal-card-cta {
  padding: 8px 10px;
  box-shadow: unset;
  text-transform: unset;
  border-radius: 34px;
  background: linear-gradient(93deg, #53b2fe, #065af3);
  box-shadow: 0 1px 7px 0 rgb(0 0 0 / 20%);
  display: inline-block;
  flex-shrink: 0;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  outline: 0;
  border: 0;
  text-align: center;
  font-weight: 900;
}

header img {
  width: 100%;
  max-width: 100%;
}

.offer-row {
  display: flex;
  margin-top: 20px;
}

.offer-details-cont {
  padding-bottom: 50px;
}

.offer-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
  border-radius: 4px;
  background: linear-gradient(98deg, #fffcce 4%, #ffcb6b 99%);
}

.offer-col-head {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.sml-txt {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.primaryed {
  background: -moz-linear-gradient(left, #47a4fc 0%, #1c73f6 100%);
  background: -webkit-linear-gradient(left, #47a4fc 0%, #1c73f6 100%);
  background: linear-gradient(to right, #47a4fc 0%, #1c73f6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#47a4fc', endColorstr='#1c73f6', GradientType=1);
  border-radius: 30px;
  padding: 10px 30px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  margin-left: 10px;
}

.offer-details-cont-h3 {
  padding-top: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.table-responsive {
  border: 1px solid #ddd;
  overflow-y: hidden;
  width: 65%;
  min-height: 0.01%;
  overflow-x: auto;
  margin-top: 10px;
  margin-bottom: 5px;
}

.offer-details-cont ul li::before {
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #2f2f2f;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  list-style-type: disc;
}

.offer-details-cont ul {
  padding: 15px 15px 0px 15px;
}

.tblOffer th {
  background: #6f6f6f;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  padding: 5px 10px;
  border: 1px #cdcdcd solid;
  text-align: left;
}

.tblOffer td {
  border: 1px #cdcdcd solid;
  padding: 10px;
  color: #565656;
  font-size: 14px;
  line-height: 18px;
}

.plus {
  margin: 40px auto;
  border-radius: 100%;
  background: #fff;
  width: var(--plus-icon-size);
  height: var(--plus-icon-size);
  position: relative;
}

.plus:hover {
  cursor: pointer;
}

.plus:before {
  transition: all ease 0.4s;
  content: '';
  top: 50%;
  left: 50%;
  position: absolute;
  width: calc(var(--plus-icon-size)/2);
  height: 1px;
  margin-left: calc(var(--plus-icon-size)/-4);
  margin-top: calc((var(--plus-icon-size)/40)-1);
  background: var(--plus-color);
}

.plus:after {
  transition: all ease 0.4s;
  content: '';
  top: 50%;
  left: 50%;
  position: absolute;
  width: 1px;
  height: calc(var(--plus-icon-size)/2);
  margin-left: calc((var(--plus-icon-size)/40)-1);
  margin-top: calc(var(--plus-icon-size)/-4);
  background: var(--plus-color);
}

.open .plus {
  box-shadow: 0 1px 40px rgba(175, 212, 237, 0.3);
}

.open .plus:before {
  opacity: 0;
  animation: rotateIcon 0.4s linear;
}

.open .plus:after {
  transition: all ease 0.4s;
  transform: rotate(90deg);
}

@keyframe rotateIcon {
  from {
    opacity: 1;
  }

  to {
    transform: rotate(180deg);
    opacity: 0;
  }
}

/* menu box */
.menu {
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  background: #fff;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 40px rgba(175, 212, 237, 0.2);
}

.menu:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  margin-top: -40px;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 30px solid #fff;
}

.menu ul {
  padding: 0;
}

.menu ul li {
  transition: all ease 0.4s;
  padding: 20px;
  list-style: none;
  transform: translateY(80px);
}

.menu ul li a {
  color: #000;
  text-decoration: none;
}

.menu ul li a {
  transition: all ease 0.4s;
}

.menu ul {
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

.menu ul li:hover {
  font-weight: bold;
  cursor: pointer;
  background: #f9f9f9;
}

.menu ul li:hover a {
  margin-left: 20px;
}

.open .menu {
  transition: all ease 0.4s;
  animation: pulse 0.4s linear;
  opacity: 1;
  visibility: visible;
}

.open .menu ul li {
  transform: translateX(0);
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.navs {
  display: block;
  font: 13px Helvetica, Tahoma, serif;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.navs li {
  display: inline-block;
  list-style: none;
}

.navs .button-dropdown {
  position: relative;
}

.navs li a {
  display: block;
  color: #333;
  background-color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 24px;
}

.navs li a span {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  color: #999;
}

/* .navs li a:hover, .nav li a.dropdown-toggle.active {
  background-color: #289dcc;
  color: #fff;
}

.navs li a:hover span, .nav li a.dropdown-toggle.active span {
  color: #fff;
} */

.navs li .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  margin-top: 3px;
  text-align: left;
}

.navs li .dropdown-menu.active {
  display: block;
}

.navs li .dropdown-menu a {
  width: 150px;
}

.states {
  width: 200px;
  margin-left: -50px;
  margin-top: 14px;
}


:root {
  --color-black: #1a1a1a;
  --color-darks: #333;
  --color-greys: #ccc;
  --color-light: #f5f5f5;
  --color-white: #fff;
  --color-blues: #3c83f6;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.section {
  margin: 0 auto;
  /* padding: 5rem 0 2rem; */
}

.centered {
  margin-bottom: 1rem;
  text-align: center;
  vertical-align: middle;
}

.form-group {
  position: relative;
}

.form-arrow {
  position: absolute;
  top: 0.65rem;
  right: 0.5rem;
  z-index: 10;
  font-size: 1.35rem;
  line-height: inherit;
  color: var(--color-darks);
}

.form .dropdown {
  position: relative;
}

.form .dropdown-select {
  position: relative;
  /* font-family: inherit; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  width: 100%;
  height: auto;
  padding: 0.75rem 1.25rem;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  color: var(--color-black);
  background-clip: padding-box;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
  margin-left: -44px;
  max-width: 180px;
}

.form .dropdown-menu {
  position: absolute;
  display: none;
  top: 100%;
  left: -44px;
  width: 81%;
  z-index: 10;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-large);
  transition: all 0.3s ease-in-out;
}

.form .dropdown-menu-inner {
  max-height: 16rem;
  overflow-y: scroll;
  overflow-x: hidden;
}

.form .dropdown-menu-inner::-webkit-scrollbar {
  width: 5px;
  height: auto;
}

.form .dropdown-menu-inner::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: var(--color-greys);
  box-shadow: var(--shadow-small);
}

.form .dropdown-menu-item {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: inherit;
  cursor: pointer;
  user-select: none;
  padding: 0.65rem 1.25rem;
  background-color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

.form .dropdown-menu-item:hover {
  color: var(--color-black);
  background-color: var(--color-greys);
}

.form .dropdown-menu-item.is-select,
.form .dropdown-menu-item.is-select:hover {
  color: var(--color-white);
  background-color: var(--color-blues);
}

.form .dropdown-menu-search {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: auto;
  padding: 0.65rem 1.25rem;
  border: none;
  outline: none;
  color: var(--color-black);
  background-clip: padding-box;
  background-color: var(--color-light);
}

.bordered {
  margin-left: 30px !important;
  background: #dfdfdf;
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 4px;
}

.bordereds {
  margin-left: 18px !important;
  background: #dfdfdf;
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 4px;
}

.borders {
  margin-left: 10px;
}

.nice-select {
  height: 36px;
  line-height: 34px;
  width: 200px;
  padding: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nice-select {
    width: 170px;
  }
}

@media only screen and (max-width: 479.98px) {
  .nice-select {
    width: 190px;
  }
}

#SelExample {
  width: 200px;
  margin-top: 10px;
}

.Hdr {
  background: linear-gradient(rgb(5, 19, 32), rgb(23, 68, 118));
  height: 114px;
}

.Wrapper {
  display: flex;
  justify-content: space-between;
  margin: -40px auto 0px;
  max-width: 1200px;
  padding-bottom: 30px;
  position: relative;
}

.HdrContent {
  align-items: center;
  display: flex;
  margin: 0px auto;
  padding: 25px 0px 0px;
  width: 1200px;
}

.wrapper-left {
  flex-shrink: 0;
  width: 860px;
}

.wrapper-right {
  flex-shrink: 0;
  width: 320px;
}

.paper {
  background: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 1px 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.Info-wrapper {
  border-top: 1px solid rgb(216, 216, 216);
}

.htl-info {
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
}

.htl-info-right {
  flex-shrink: 0;
  margin-left: 30px;
  width: 90px;
}

.a-like-star {
  margin-left: 0;
  margin-right: 10px;
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  line-height: 14px;
}

.iclike-star {
  background-position: -188px -775px;
  height: 15px;
  width: 8px;
  margin-right: 3px;
  display: inline-block;
  flex-shrink: 0;
  font-size: 0;
}

.sprite {
  background: url(//imgak.mmtcdn.com/pwa_v3/pwa_hotel_assets/sprite_prod/hotelSprite_hash0b80e85….png) no-repeat;
  background-size: 450px 1100px;
}

.icGrey-star {
  background-position: -362px -757px;
  height: 10px;
  width: 10px;
  margin-left: 2px;
}

.sprite {
  background: url(//imgak.mmtcdn.com/pwa_v3/pwa_hotel_assets/sprite_prod/hotelSprite_hash0b80e85….png) no-repeat;
  background-size: 450px 1100px;
  display: inline-block;
  flex-shrink: 0;
  font-size: 0;
}

.htl-info-tag {
  align-items: center;
  align-self: flex-start;
  border-radius: 4px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  margin-right: 5px;
  padding: 0 5px;
}

.htl-info-altacco {
  align-items: center;
  align-self: flex-start;
  border-radius: 4px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  margin-right: 5px;
  padding: 0 5px;
  background-color: #e5f3ff;
  color: #0061aa;
}

.htl-infoImg {
  height: 90px;
  position: relative;
  width: 90px;
}

.htl-infoImg>img {
  border-radius: 2px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.prpt-chk-cont {
  grid-column-gap: 5px;
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

.forReview {
  background-color: #f2f2f266;
  border-bottom: 0;
  border-top: 0;
  padding: 16px 20px;
}

.prpt-chk {
  align-items: center;
  /* border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8; */
  display: flex;
  justify-content: space-between;
  padding: 7px 30px;
}

.prpt-chk-cont-col {
  align-items: center;
  background-color: #f2f2f266;
  display: flex;
  padding: 7px 30px;
}

.prpt-chk-nights {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 9px;
  color: #757575;
  display: inline-flex;
  font-size: 10px;
  height: 18px;
  justify-content: center;
  padding: 0 9px;
  text-transform: uppercase;
}

.last {
  text-align: left;
}

.prpt-chk-date {
  font-size: 14px;
  line-height: 19px;
}

.entired {
  background: #f2f2f266;
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
  margin-top: 20px;
  padding: 7px 30px;
}

.entired-hdng {
  color: #232222;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.entired-subHdng {
  align-items: center;
  display: flex;
  font-weight: 700;
  margin-top: 4px;
}

.rm-desc {
  padding: 16px 20px;
}

.imptInfo {
  background-color: #fff8ed;
  border-bottom: 1px dashed #ffc4c2;
  border-top: 1px dashed #ffc4c2;
  padding: 12px 20px;
}

.in-list {
  grid-row-gap: 7px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 10px;
  margin-top: 15px;
}

.in-list-item {
  align-items: center;
  display: flex;
}


.incListIconImg {
  align-self: flex-start;
  height: 16px;
  margin-right: 6px;
  margin-top: 2px;
  width: 16px;
}

.fc-details {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 #96969680;
  padding: 0 20px 15px;
  text-align: left;
  width: 368px;
  z-index: 1;
  box-shadow: none;
}

.hotel-review-new {
  background-color: initial;
  box-shadow: none;
  margin-top: 10px;
  width: 340px;
}

.rfnd-top-bar {
  border-radius: 22px;
  display: flex;
  height: 22px;
}

.rfnd-bottom-bar {
  display: flex;
  padding-top: 13px;
}

.rfnd-top-bar-col:first-child {
  border-radius: 22px 0 0 22px;
  border-right: 1px dashed #000;
  text-align: center;
  flex: 1;
}

.rfnd-top-bar-col.refundable {
  background-color: #249995;
  border-right: 1px dashed #000;
  color: #fff;
  flex-shrink: 0;
  padding: 0 3px 0 5px;
  text-align: center;
}

.rfnd-top-bar-col:last-child {
  border-radius: 0 22px 22px 0;
  flex-shrink: 0;
  padding: 0 5px 0 8px;
  width: 115px;
}

.rfnd-top-bar-col.nonrefundable {
  background-color: #ffefc6;
  color: #cd9100;
  flex-shrink: 0;
  text-align: right;
  width: 115px;
}

.rfnd-top-bar-col {
  align-items: center;
  display: flex;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  position: relative;
}

.rfnd_topBar-oval {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: inset 0 1px 3px 0 #00000080;
  display: inline-flex;
  flex-shrink: 0;
  height: 14px;
  width: 14px;
  margin-right: 8px;
}

.rfnd_topBar-colText {
  font-size: 10px;
  line-height: 22px;
}

.rfnd_bottomBar-lft {
  display: flex;
  flex: 1;
}

.rfnd_bottomBar-col:last-child {
  flex: unset;
}

.rfnd_bottomBar-col.last {
  flex-shrink: 0;
  text-align: right;
  width: 115px;
}

.rfnd_bottomBar-col {
  display: flex;
  flex: unset;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.rfnd_bottomBar-col:first-child {
  text-align: left;
}

.rfnd_bottomBar-col:first-child {
  text-align: left;
}

.rfnd__bottomBar--lft .rfnd_bottomBar-col:nth-child(2) {
  margin-left: auto;
}

.rfnd_bottomBar-col.cardChargeDate {
  margin-right: auto;
}

.rfnd_bottomBar-col:last-child {
  flex: unset;
}

.rfnd_bottomBar-col.cancellationDate {
  margin-right: -23px;
}

.rfnd_bottomBar-colText {
  color: #333;
  font-size: 11px;
  font-weight: 900;
}

.rfnd_bottomBar-colSubText {
  color: #979797;
  font-size: 11px;
  line-height: 12px;
}

.rfnd_bottomBar-lft .rfnd_bottomBar-col:nth-child(2):after {
  background-color: #000;
  content: "";
  height: 11px;
  left: calc(50% + 1px);
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  width: 1px;
}

.imptInfo-hdng {
  color: #cf8100;
  font-size: 18px;
  font-weight: 900;
}

.imptInfo_list li {
  align-items: center;
  display: flex;
  margin-bottom: 6px;
}

.imptInfo_listIcon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-right: 5px;
  width: 14px;
}

.blackDot {
  background-color: #4a4a4a;
  flex-shrink: 0;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: inline-flex;
  margin-left: 3px;
}

.ruleText {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 12px;
}

.papered {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px #0000002e;
  display: flex;
  flex-direction: column;
}

.guest-dtls {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px 0 #0000002e;
}

.logInTo-accs {
  background-color: #ebf5ff;
  border-radius: 0 0 4px 4px;
  justify-content: space-between;
  padding: 15px 20px;
  align-items: center;
  display: flex;
}

.logInTo-accs p {
  font-size: 14px;
  font-weight: 700;
}

.papers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.papers h4 {
  font-size: 18px;
  font-weight: 900;
  color: #000;
}

.papers a {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
}

.paper-hdr {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.paper-hdr h4 {
  font-size: 18px;
  color: #000;
  font-weight: 900;
}

.guests_content {
  padding: 0 20px 20px;
}

.guestDtls__addBtn {
  margin-right: 5px;
}

.guests_row {
  margin-bottom: 27px;
}

.guest_row {
  margin-bottom: 8px !important;
}

.guest_rows {
  margin-bottom: 15px;
}

.guest_add {
  align-items: center;
  display: flex;
}

.guest_col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 70px;
  margin-right: 10px;
}

.guest_col p {
  font-size: 11px;
  margin-bottom: 2px;
}

.frmSelectCont {
  position: relative;
}

.frmSelect {
  /* -webkit-appearance: none; */
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  outline: 0;
  padding: 0 20px 0 10px;
  width: 100%;
}

.frmSelectCont:after {
  /* border: solid #898b91; */
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.guestDtls__col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 247px;
  margin-right: 10px;
}

.guests_col {
  margin-bottom: 10px;
  min-height: 11px;
  font-size: 11px;
  line-height: 11px;
}

.frmTextInput {
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  outline: 0;
  padding: 0 10px;
  width: 100%;
}

.guestDtls__contact {
  flex-shrink: 0;
  position: relative;
}

.frmSelectCont__contact {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.frmSelect.frmSelectContact {
  border-radius: 4px 0 0 4px;
}

.frmSelect {
  /* -webkit-appearance: none; */
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  outline: 0;
  padding: 0 20px 0 10px;
  width: 100%;
}

.selectedCode {
  align-items: center;
  background-color: #fff;
  border: 1px solid #bebebe;
  border-radius: 4px 0 0 4px;
  color: #000;
  display: inline-flex;
  font-size: 14px;
  height: 40px;
  max-width: 90px;
  min-width: 70px;
  overflow: hidden;
  padding: 0 25px 0 10px;
  pointer-events: none;
  transition: all .3s linear;
}

.guestsInfo__contact,
.selectedCode {
  flex-shrink: 0;
  position: relative;
}

.selectedCode:after {
  border: solid #898b91;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  padding: 2.5px;
  position: absolute;
  right: 8px;
  top: 13px;
  transform: rotate(45deg);
}

.frmTextInput.noLeftBorder {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.frmTextInput {
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  outline: 0;
  padding: 0 10px;
  width: 100%;
}

.capText {
  text-transform: uppercase;
}

.logInToAccsCta {
  background-color: #fff;
  border: 1px solid #008cff;
  border-radius: 4px;
  color: #008cff;
  cursor: pointer;
  flex-shrink: 0;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  outline: 0;
  width: 80px;
}

.logInToAccs,
.logInToAccsCta {
  align-items: center;
  display: flex;
}

.billingDetailsWprDt {
  padding: 24px 30px;
  /* font-family: var(--fontFamily); */
  background-color: white;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px #0000002e;
  display: flex;
  flex-direction: column;
}

.billingDetailsWprDt {
  --fontFamily: 'Lato', sans-serif;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --tertiaryColor: #757575;
  --secondaryColor: #4a4a4a;
  --redColor1: #960d11;
  --pryThemeColor: #008cff;
  --sryThemeColor: rgba(0, 140, 255, 0.1);
}

.billingDetailsWpr__headingCtr {
  display: flex;
  align-items: center;
  gap: 4px;
}

.billingDetailsWpr__fieldsCtr {
  display: flex;
  align-items: flex-start;
  width: 272px;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

.checkboxWithLblWpr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.billingDetailsWpr__heading {
  font-size: calc(var(--font-scale, 1)* 18px);
  line-height: 24px;
  font-weight: bold;
  color: var(--blackColor);
  margin-bottom: 2px;
}

.billingDetailsWpr__subHeading {
  font-size: 12px;
  line-height: 14px;
  color: var(--tertiaryColor);
}

.checkboxWithLblWpr__label {
  cursor: pointer;
  font-size: calc(var(--font-scale, 1)* 14px);
  line-height: 16px;
  color: var(--secondaryColor);
}

.checkboxWpr {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
}

.trvl-insurance-itmImg {
  flex-shrink: 0;
  margin-right: 30px;
  width: 100px;
}

.trvl-insurance-itmInfo {
  align-self: flex-end;
  flex-shrink: 0;
  margin-left: 70px;
  min-width: 110px;
  align-items: right;
}

.trvl-insurance-itmImg img {
  border-radius: 4px;
  width: 100px;
}

.trvl-insurance-itmDtl__list {
  column-count: 2;
  column-gap: 25px;
}

.trvl-insurance-itmDtl__listItem {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.trvl-insurance-itmDtl__listItem:before {
  background-color: #4a4a4a;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 5px;
}

.trvl-insurance-itmAdd {
  margin-left: 110px;
  align-items: center;
  background-color: #fff;
  border: 1px solid #008cff;
  border-radius: 4px;
  color: #008cff;
  cursor: pointer;
  display: inline-flex;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  outline: 0;
  width: 80px;
  margin-top: 10px;
  text-transform: uppercase;
}

.payOpts__listItem {
  align-items: center;
  border-top: 0;
  display: flex;
  min-height: 66px;
  /* padding: 15px 0; */
  margin-bottom: -10px;
  justify-content: space-between;
}

/* .payOpts__listItemDtl {
  padding-top: 2px;
} */

/* .radioBtn {
  display: inline-flex;
  flex-shrink: 0;
  height: 18px;
  position: relative;
  width: 18px;
  margin-right: 15px;
}
.radioBtn [type=radio]:checked, [type=radio]:not(:checked) {
  left: -9999px;
  position: absolute;
}
.radioBtn [type=radio]:checked+label, .radioBtn [type=radio]:not(:checked)+label {
  cursor: pointer;
  display: inline-flex;
  height: 18px;
  line-height: 20px;
  position: relative;
  width: 18px;
} */

.btnContinuePayment {
  align-items: center;
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 1px 7px 0 #0003;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  height: 47px !important;
  justify-content: center;
  outline: 0;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
  width: 310px;
  color: #fff;
  text-transform: uppercase;
}

.cstmTooltip {
  background-color: #000;
  display: none;
}

.cst-tip {
  width: 200px;
  height: auto;
  position: absolute;
  background-color: rgb(0, 0, 0);
  border-radius: 4px;
  padding: 16px;
  border-width: 0px;
  border-style: initial;
  border-image: initial;
  top: 40px;
  left: 55px;
  z-index: 2;
}

.pricBreakup__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 16px 20px;
}

.pricBreakup__cont {
  padding: 0 20px;
}

.pricBreakup__total {
  background-color: #f2f2f2;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

.pricBreakup__row {
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 0;
}

.ttlDscTooltip {
  cursor: pointer;
  display: flex;
  position: relative;
}

.sprite {
  background-position: -253px -271px;
  height: 20px;
  width: 19px;
  cursor: pointer;
}

.ttlDiscount {
  background-color: #000;
  border-radius: 4px;
  box-shadow: 0 1px 6px 0 #0003;
  display: none;
  left: 50%;
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  width: 260px;
  z-index: 2;
}

.ttlDiscount__list {
  display: grid;
  grid-template-columns: 1fr;
}

.ttlDiscount__listItem:last-child {
  border-bottom: 0;
}

.ttlDiscount__listItem {
  border-bottom: 1px solid #393939;
  display: flex;
  padding: 10px 19px;
}

.sprite.roomSelectIcon {
  background-position: -313px -215px;
  height: 13px;
  width: 14px;
  margin-right: 10px;
  margin-top: 2px;
}

.sprite {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0;
}

.sprite {
  background: url(//imgak.mmtcdn.com/pwa_v3/pwa_hotel_assets/sprite_prod/hotelSprite_hash0b80e85….png) no-repeat;
  background-size: 450px 1100px;
}

.addAccord {
  cursor: pointer;
  padding-right: 15px;
  position: relative;
}

.donate__text {
  padding-right: 22px;
  position: relative;
}

.donat__text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 900;
  color: #000;
  width: 232px;
}

.charityCont {
  padding-bottom: 10px;
  position: absolute;
  right: 8px;
  top: 2px;
}

.ourInitiative {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 #0003;
  color: #000;
  display: none;
  font-weight: 700;
  padding: 20px 16px 10px;
  position: absolute;
  right: -35px;
  top: 27px;
  width: 330px;
  z-index: 1;
}

.charityCard {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  display: flex;
  padding: 10px 12px;
}

.charityCard__icon {
  flex-shrink: 0;
  margin-right: 12px;
  width: 36px;
}

.banner__html {
  line-height: 10px;
  font-size: 12px;
}

.persuasionBanner img {
  height: 20px;
  width: 40px;
}

.dlCodes {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px 0 #0000002e;
  padding: 25px 20px;
  margin-bottom: 20px;
}

.dlCodes__list {
  grid-row-gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.dlCodes__listItem {
  background: #fff;
  border: 1px dashed #cbcbcb;
  border-radius: 4px;
  display: flex;
  padding: 15px;
}

.dlCodes__listItemCode {
  display: flex;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  word-break: break-word;
}

.dealCode__truncate {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dlCodes__giftmsg {
  background-color: #ffedd1;
  border-radius: 4px;
  padding: 8px 10px;
}

.dlCodes_msg {
  margin-bottom: 15px;
}

.dlCodes_msg p {
  font-size: 12px;
  font-weight: 700;
}

.cpnInput {
  background-color: #fff;
  border: 1px #0000;
  border-radius: 4px;
  box-shadow: 0 1px 7px 0 #0003;
  display: flex;
  overflow: hidden;
}

.cpnInput input[type=text] {
  border: 0;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 700;
  outline: 0;
  padding-left: 15px;
  width: calc(100% - 45px);
}

.cpnInput__btn {
  align-items: center;
  background-color: #0091ff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 45px;
}

.sprite.icWhiteArrow {
  background-position: -109px -452px;
  height: 12px;
  width: 16px;
}

.whySignIn {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 8px 0 #0000002e;
  padding: 25px 20px;
}

.whySignIn__listItem {
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  font-size: 12px;
  padding: 8px 0;
  margin-bottom: -2px;
}

.whySignIn__listIcon {
  flex-shrink: 0;
  margin-right: 5px;
}

.why-sign {
  margin-bottom: 30px;
}

.why-sign {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 7px;
  color: #000;
}

.Click-heresed {
  cursor: pointer;
  /* background-image: linear-gradient(190deg, #f83600 0%, #fee140 100%);
  color: #fff;
  width: 180px;
  text-align: center;
  font-size:16px;
  padding: 18px 0;
  margin: 0 auto;
  transition:background-image 3s ease-in-out; */
}

/* .Click-heresed:hover{
  transition:background-image 3s ease-in-out;
  background-image: linear-gradient(90deg, #fee140 0%, #f83600 100%);
} */
.custom-model-mained {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-opensed {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-innered {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}

.custom-model-wraped {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-opensed .custom-model-innered {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-opensed .bg-overlayed {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlayed {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px) {
  .custom-model-mained:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}

.cm__modalHeader {
  border-bottom: 1px solid #e7e7e7;
  padding: 25px 40px 16px;
}

.cm__modalContent.contentScroll {
  max-height: 700px;
  overflow: scroll;
}

.cm__modalContent {
  padding: 20px 40px;
}

.roomDtlCard__list {
  grid-row-gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
}

.roomDtlCard__listItem {
  align-items: baseline;
  display: flex;
}

.roomDtlCard__listIconImg {
  height: 12px;
  margin-right: 6px;
  width: 12px;
}

.Click-hered {
  cursor: pointer;
  /* background-image: linear-gradient(190deg, #f83600 0%, #fee140 100%);
  color: #fff;
  width: 180px;
  text-align: center;
  font-size:16px;
  padding: 18px 0;
  margin: 0 auto;
  transition:background-image 3s ease-in-out; */
}

/* .Click-hered:hover{
  transition:background-image 3s ease-in-out;
  background-image: linear-gradient(90deg, #fee140 0%, #f83600 100%);
} */
.custom-model-mainsed {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-opened {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-innersed {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}

.custom-model-wrapsed {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-opened .custom-model-innersed {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-opened .bg-overlaysed {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlaysed {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px) {
  .custom-model-mainsed:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}

.rsrtRules__row {
  margin-bottom: 20px;
}

.rsrtRules__list li.noDot {
  padding-left: 0;
}

.rsrtRules__list li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}

.rsrtRules__row h4 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}

.rsrtRules__list li:before {
  background-color: #4a4a4a;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 4px;
}

.payment__wrapper {
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
}

.header__wrap {
  height: 180px;
  background-image: linear-gradient(to top, #15457b, #051423);
  padding: 15px 0 0 0;
}

.payment__container {
  margin: 0 auto;
  width: 1200px;
}

.title-container {
  width: 678px;
}

.amount-saved {
  margin: 4px 4px 0;
}

.push-right {
  margin-left: auto;
  top: 3px;
  position: relative;
}

.wallet__balance__card {
  border-radius: 10px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  overflow: hidden;
}

/* main .dt__payment__left {
   width: 820px; 
} */

.dt__payment__sprite.login-wallet-icon {
  background-position: -9px -113px;
  height: 26px;
  width: 33px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.link__btn {
  background-image: -webkit-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -moz-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  border: 1px solid #008cff;
  color: #fff;
}

.prime__btn {
  align-items: center;
  border: none;
  border-radius: 36px;
  display: flex;
  font-weight: 700;
  justify-content: center;
  outline: 0;
  text-transform: uppercase;
}

.singleSelect {
  border-radius: 10px;
  border: solid 1px #008cff;
  background-color: #fff;
}

.singleSelect__hd {
  background-color: #008cff;
  color: #fff;
  width: fit-content;
  border-radius: 10px 0 15px 0;
  padding: 2px 10px 2px 10px;
}

.addOnListContainer {
  padding: 15px 20px;
}

.singleSelect__crd .imgWrap {
  width: 80px;
  height: 62px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.singleSelect__crd .providerIcon {
  width: 53px;
  height: 11px;
}

.singleSelect__crd .addonText {
  width: 95%;
}

.blue-text {
  color: #008cff;
  cursor: pointer;
}

.buttonContainer[data-transparent-background=true] {
  border: 1px solid #008cff;
  background-color: #fff;
  color: #008cff;
  background-image: none;
  box-shadow: none;
}

.dt__payment__options {
  /* width: 820px; */
  border-radius: 10px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  display: flex;
}

.show__options .payment__options__tab {
  width: 270px;
  background: #eaf5ff;
  transition: ease all .4s;
}

.payment__options__tab {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.box-padding {
  padding: 15px 20px;
}

.show__options .payment__options__tab li.selected {
  background: #fff;
}

.payment__options__tab li {
  display: flex;
  border-top: solid 1px #dfdfdf;
  cursor: pointer;
  position: relative;
}

.show__options .payment__options__tab li.selected::before {
  content: '';
  width: 5px;
  height: 100%;
  background: #008cff;
  position: absolute;
  top: 0;
  left: 0;
}

.payment__icon__wrap {
  width: 36px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show__options .payment__options__tab li.selected .payment__option__title {
  color: #000;
}

.show__options .payment__options__tab li .payment__option__title {
  display: flex;
  flex-direction: column;
}

.payment__options__tab li .payment__option__title {
  display: flex;
  flex: 1;
  align-items: baseline;
  color: #008cff;
}

.paymodeListRightPart {
  padding: 32px;
  width: calc(100% - 270px);
}

.show__options .payment__options__content {
  width: 100%;
  position: relative;
}

.upi__wrap {
  border-radius: 4px;
  border: solid 1px #d8d8d8;
  padding: 20px;
  margin-bottom: 20px;
}

.dt__payment__sprite.mob__icon {
  background-position: -118px -224px;
  height: 21px;
  width: 18px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.pay__vpa__wrap,
.scan__pay__wrap {
  width: 160px;
}

.scan__vpa__divider {
  border-right: solid 1px #d8d8d8;
  color: #249b95;
  position: relative;
}

.or__circle {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: #c1f1dd;
  margin: -22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 10px #fff;
}

.scanner__wrap {
  width: 120px;
  height: 128px;
  border-radius: 7px;
  position: relative;
  border: solid 2px #979797;
  padding: 5px;
}

.scanner__wrap .view__qr {
  filter: blur(2px);
}

.scanner__wrap::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  border: 2px solid #fff;
  height: 100%;
  width: 80%;
  border-left: none;
  border-right: none;
}

.qr__view__btn {
  width: 94px;
  height: 26px;
  border-radius: 15px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .35);
  margin: auto;
  cursor: pointer;
  border: solid 1px #0089ff;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  color: #0089ff;
}

.scanner__wrap::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -2px;
  border: 2px solid #fff;
  border-top: none;
  border-bottom: none;
  height: 80%;
  width: 100%;
}

.form__field__wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__field {
  position: relative;
  width: 100%;
  border: solid 1px #9b9b9b;
  border-radius: 4px;
  transition: .1s ease-out;
}

.form__field input {
  width: 100%;
  outline: 0;
  border: none;
  border-radius: 4px;
  padding: 12px 15px;
  color: #000;
  background: 0 0;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 14px;
}

.paynow__btn {
  min-width: 150px;
}

.vpa__step {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 10px;
}

.vpa__step li {
  color: #9b9b9b;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.vpa__step li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #9b9b9b;
  position: absolute;
  top: 5px;
  left: 0;
}

.vpa__step li::after {
  content: "";
  width: 1px;
  height: 100%;
  border-left: dashed 1px #9b9b9b;
  position: absolute;
  top: 13px;
  left: 2px;
}

.dt__payment__sprite.gpay-icon,
.dt__payment__sprite.wallet__icon--google {
  background-position: -190px -36px;
  height: 19px;
  width: 19px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.bank-logo-sprite.bank__logo--phonepay {
  background-position: -227px -563px;
  height: 33px;
  width: 33px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.dt__payment__sprite.payment__icon__upi {
  background-position: -48px -114px;
  height: 23px;
  width: 16px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.bank-logo-sprite.bank__logo--hdfc {
  background-position: -272px -167px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.zoom-out-icon {
  transform: scale(.7);
}

.bank-logo-sprite.bank__logo--sbi {
  background-position: -271px -405px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.bank-logo-sprite.bank__logo--axis {
  background-position: -86px -47px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.negate-left4 {
  margin-left: -4px;
}

.bank-logo-sprite.bank__logo--paytm {
  background-position: -309px -325px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.rupees:before {
  content: "\20B9\00a0";
}

main .dt__payment__right {
  width: 360px;
}

.dt__payment__sprite.safe-icon {
  background-position: -86px -62px;
  height: 16px;
  width: 15px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.booking__card {
  border-radius: 10px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
}

.hotel__info__wrap {
  position: relative;
  max-height: 135px;
}

.hotel__info {
  background-image: linear-gradient(to left, #fff -10%, #a6a6a6);
  padding: 5px 20px;
}

.free__cancel__note {
  background-image: linear-gradient(5deg, #33d18f -3139%, #33d18f 3239%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4px 20px;
}

.hotel__info__wrap img {
  width: 368px;
  height: 135px;
  border-radius: 10px 10px 0 0;
}

.hotel__info__wrap .hotel__star__rating {
  display: flex;
  width: 70px;
  height: 15px;
  position: absolute;
  bottom: 5px;
  right: 20px;
  justify-content: flex-end;
}

.dt__payment__sprite.star__icon {
  background-position: -153px -159px;
  height: 12px;
  width: 69px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.grey-text--dark {
  color: #4a4a4a;
}

.wrap_date_time {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.dt__payment__sprite.assured__icon,
.dt__payment__sprite.free__cancel__icon {
  background-position: -208px -89px;
  height: 16px;
  width: 12px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.lob__icon__wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt__payment__sprite.bad__icon {
  background-position: -143px -200px;
  height: 14px;
  width: 21px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.room__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 1px #eaeaea;
  border-radius: 3px;
  padding: 2px;
  height: 24px;
  width: 24px;
}

.lob__icon__wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fare__summary__card {
  border-radius: 10px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
}

.scan__vpa__divider .or__circle {
  position: absolute;
  top: 50%;
}

.or__circle {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: #c1f1dd;
  margin: -22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 10px #fff;
}

.dt__payment__sprite.mob__icon {
  background-position: -118px -224px;
  height: 21px;
  width: 18px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.hide {
  display: none;
}

.paymodeListRightPart {
  padding: 32px;
  width: calc(100% - 270px);
}

.show__options .payment__options__content {
  width: 100%;
  position: relative;
}

.form__field__wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__field {
  position: relative;
  width: 100%;
  border: solid 1px #9b9b9b;
  border-radius: 4px;
  transition: .1s ease-out;
}

.form__field input {
  width: 100%;
  outline: 0;
  border: none;
  border-radius: 4px;
  padding: 12px 15px;
  color: #000;
  background: 0 0;
  box-sizing: border-box;
  font-weight: 700;
}

.form__field__wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  width: 104% !important;
  margin-bottom: 20px;
}

.form__field__wrap label {
  display: flex;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
  align-items: baseline;
}

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

.year__select__wrap {
  width: 60%;
  position: relative;
}

.month__select__wrap::before,
.month__select__wrap::after {
  right: 1rem;
}

.month__select__wrap::after,
.month__select__wrap::before {
  right: 1rem;
}

.month__select__wrap::before,
.month__select__wrap::after {
  --size: 0.3rem;
  position: absolute;
  content: '';
  pointer-events: none;
}

.month__select__wrap select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 8px 15px 8px;
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
}

.year__select__wrap::before,
.year__select__wrap::after {
  right: 1rem;
}

.year__select__wrap::after,
.year__select__wrap::before {
  right: 1rem;
}

.year__select__wrap::before,
.year__select__wrap::after {
  --size: 0.3rem;
  position: absolute;
  content: '';
  pointer-events: none;
}

.year__select__wrap select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 8px 15px 8px;
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
}

.month__select__wrap::after {
  border: solid #008cff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  content: '';
  position: absolute;
  top: 18px;
  right: 15px;
  pointer-events: none;
}

.year__select__wrap::after {
  border: solid #008cff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  content: '';
  position: absolute;
  top: 18px;
  pointer-events: none;
  right: 8px;
}

.paynow__btn {
  min-width: 150px;
}

.prime__btn,
.prime__btn--disable {
  align-items: center;
  border: none;
  border-radius: 36px;
  display: flex;
  font-weight: 700;
  justify-content: center;
  outline: 0;
  text-transform: uppercase;
}

.prime__btn {
  background-image: -webkit-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -moz-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, .2);
  color: #fff;
  cursor: pointer;
  height: 40px;
  min-width: 100px;
  padding: 0 20px;
}

.pay__later__benefits {
  display: flex;
  flex-wrap: wrap;
}

.pay__later__benefits li {
  width: 50% !important;
}

.pay__later__advantages {
  width: 40px;
  height: 40px;
}

.chek__eli__wrap {
  display: flex;
  flex-direction: column;
  border: solid 1px #e7e7e7;
  border-radius: 4px;
  padding: 20px;
}

.brand__list {
  display: flex;
}

.brand__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  border-radius: 4px;
  border: solid 1px #e7e7e7;
  background-color: #fff;
  margin-right: 10px;
}

.brand__list li img {
  width: 30px;
  height: 30px;
}

.search__bank__wrap {
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
  border: solid 1px #f0f0f0;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.dt__payment__sprite.search-icon {
  background-position: -107px -89px;
  height: 20px;
  width: 20px;
}

.dt__payment__sprite {
  background: url(//imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/paymentSpriteDTv2.png) no-repeat;
  -webkit-background-size: 242px 350px;
  background-size: 242px 350px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.search__bank__wrap input[type=text] {
  width: 400px;
  height: 40px;
  border: none;
  outline: 0;
  color: #000;
}

.bank__list {
  border-radius: 4px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.bank__list li {
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #e1e1e1;
  padding: 10px 15px;
  min-height: 50px;
  row-gap: 10px;
}

.bank__list li input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0;
  display: none;
}

label .cf__radio__outer {
  align-items: center;
  border: 2px solid #9b9b9b;
  border-radius: 100%;
  display: flex;
  height: 18px;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 2px;
  width: 18px;
}

label .cf__radio__outer .cf__radio__inner {
  background: #008cff;
  border-radius: 100%;
  display: none;
  height: 10px;
  width: 10px;
}

.bank__logo__container {
  max-width: 25px;
}

.bank-logo-sprite.bank__logo--axis {
  background-position: -86px -47px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite.bank__logo--def {
  background-position: -124px -564px;
  height: 32px;
  width: 32px;
}

.bank-logo-sprite {
  background: url(https://imgak.mmtcdn.com/payment-ui-service/pwa_v3/pwa_payments_assets/BanklogoSprite.png) no-repeat;
  -webkit-background-size: 390px 650px;
  background-size: 390px 650px;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.resize-bank-icon {
  transform: scale(.8);
}

.all__wallets {
  display: flex;
  flex-wrap: wrap;
}

.all__wallets .wallet__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 90px;
  border-radius: 4px;
  border: solid 1px #dfdfdf;
  position: relative;
  outline: none;
  margin: 0px 7px 14px 0;
}

.wallet__icon__wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.paymode-images-icons {
  width: 60px !important;
  height: 44px !important;
}

.emi__tabs {
  display: flex;
}

.emi__tabs li.selected {
  background: #e6f2ff;
}

.emi__tabs li {
  border-radius: 13px;
  border: solid 1px #e1e1e1;
  padding: 5px 10px;
  cursor: pointer;
  transition: ease all .3s;
  margin: 0 3px;
  position: relative;
}

.bank__list {
  border-radius: 4px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.bank__list li {
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #e1e1e1;
  padding: 10px 15px;
  min-height: 50px;
  row-gap: 10px;
}

.bank__list li input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0;
  display: none;
}

.bank__list li label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

label .cf__radio__outer {
  align-items: center;
  border: 2px solid #9b9b9b;
  border-radius: 100%;
  display: flex;
  height: 18px;
  justify-content: center;
  margin-top: 2px;
  width: 18px;
}

label .cf__radio__outer .cf__radio__inner {
  background: #008cff;
  border-radius: 100%;
  display: none;
  height: 10px;
  width: 10px;
}

.bank__logo__container {
  max-width: 25px;
}

.paymode-images-icone {
  width: 24px !important;
  height: 24px !important;
}

.nocost__emi {
  min-width: 90px;
  height: 16px;
  border-radius: 7.5px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  background-image: linear-gradient(257deg, #f09819 57%, #f3d452);
}

.offer-details-cont li::before {
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #2f2f2f;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
}

.offer-details-cont ul {
  padding: 15px 15px 0px 15px;
}

#headered {
  position: sticky;
  top: 0px;
  z-index: 2;
}

/* .contented {
  width: 50%;
  margin: 0 auto;
  margin-top: 5%;
  background-color: #e9e9e9;
  border-left: 8px solid black;
  padding: 20px;
} */
.contented h3 {
  font-weight: bold;
  margin-bottom: 24px;
}

.contented p {
  margin-bottom: 12px;
}

#show-mored,
#show-lessed {
  color: grey;
}

#show-mored a,
#show-lessed a {
  cursor: pointer;
  text-decoration: underline;
  color: auto;
}

#button {
  display: inline-block;
  background-color: #dddbd8;
  width: 134px;
  height: 30px;
  padding-top: 3px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: 562%;
  left: 122px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  /* z-index: 1000; */
  color: #1293fe;
}

/* #button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
} */
#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */

/* .conten {
  width: 77%;
  margin: 50px auto;
  font-family: 'Merriweather', serif;
  font-size: 17px;
  color: #6c767a;
  line-height: 1.9;
} */
@media (min-width: 500px) {

  /* .conten {
    width: 43%;
  } */
  #button {
    margin: 30px;
  }
}

/* .conten h1 {
  margin-bottom: -10px;
  color: #03a9f4;
  line-height: 1.5;
}
.conten h3 {
  font-style: italic;
  color: #96a2a7;
} */
span.msg,
span.choose {
  color: #555;
  padding: 5px 0 10px;
  display: inherit
}

.containered {
  width: 500px;
  margin: 50px auto 0;
  text-align: center
}

/*Styling Selectbox*/
.dropdowned {
  width: 210px;
  display: inline-block;
  /* background-color: #fff; */
  /* border-radius: 2px; */
  /* box-shadow: 0 0 2px rgb(204, 204, 204); */
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left;
  left: -150px;
  top: -70px;
}

.dropdowned .select {
  cursor: pointer;
  display: block;
  padding: 10px
}

.dropdowned .select>i {
  font-size: 13px;
  color: #008cff;
  cursor: pointer;
  transition: all .3s ease-in-out;
  float: right;
  line-height: 20px
}

/* .dropdowned:hover {
  box-shadow: 0 0 4px rgb(204, 204, 204)
} */

/* .dropdowned:active {
  background-color: #f8f8f8
} */

/* .dropdowned.active:hover,
.dropdowned.active {
  box-shadow: 0 0 4px rgb(204, 204, 204);
  border-radius: 2px 2px 0 0;
  background-color: #f8f8f8
} */

.dropdowned.active .select>i {
  transform: rotate(-90deg)
}

.dropdowned .dropdowned-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px rgb(204, 204, 204);
  border-radius: 0 1px 2px 2px;
  overflow: hidden;
  display: none;
  max-height: 144px;
  overflow-y: auto;
  z-index: 9
}

.dropdowned .dropdowned-menu li {
  padding: 10px;
  transition: all .2s ease-in-out;
  cursor: pointer
}

.dropdowned .dropdowned-menu {
  padding: 0;
  list-style: none
}

.dropdowned .dropdowned-menu li:hover {
  background-color: #f2f2f2
}

.dropdowned .dropdowned-menu li:active {
  background-color: #e2e2e2
}

.fa-chevron-down:before {
  content: "\f078";
  position: absolute;
  right: 2px;
  top: 8px;
}

.footerBottom {
  background: #000;
  padding: 50px 0 50px !important;
}

.socialMediaLinksed {
  width: 110px;
}

.socialMediaLinksed a {
  width: 50px;
  height: 20px;
  text-align: center;
}

.twiiterIcon {
  width: 30px;
  height: 24px;
  background-position: -84px -132px;
  color: white;
}

.facebookIcon {
  width: 14px;
  height: 30px;
  background-position: -162px -126px;
  color: white;
}

.boxeds {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 238px;
  height: 40px;
  /* margin: 50px auto; */
  border: 2px solid #EFEFEF;
  padding: 0 10px;
  border-radius: 4px;
  margin-left: -18px;
}

.butt {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer
}

.butt:focus {
  outline: none;
}

.butt img {
  width: 25px;
}


.right_contenteds p {
  height: 30px;
}

.right_contenteds {
  float: left;
  width: 70%;
}

.current {
  font-weight: bold;
}

.header-listeds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  /* width: 1200px; */
}

.mmtLogo {
  align-items: center;
  display: flex;
}

.mmtLogo img {
  max-width: 155px;
  max-height: 49px;
}

:root {
  --line-thickness: 0.25em;
  --glass-size: 59%;
  --icon-height: 7rem;
  --transition-speed: 0.35s;
  --timing-function: cubic-bezier(0.77, 1.55, 0.77, 1.13);
  --icon-color: #fff;
  --font-size: 2em;
}

/* .search-icon {
  box-sizing: border-box;
  max-width: 30em;
  transition: all var(--transition-speed) linear, border-color 0s linear var(--transition-speed);
  position: fixed;
  left: 0;
  margin: auto;
  border: solid var(--line-thickness);
  border-color: rgba(255, 255, 255, 0);
  padding: 0.25em;
} */
/* .search-icon, .search-icon .search-icon-wrapper {
  width: var(--icon-height);
  height: var(--icon-height);
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
} */
.search-icon .search-icon-input {
  background: none;
  text-align: left;
  outline: none;
  display: block;
  border: none;
  background: rgba(255, 255, 255, 0);
  width: calc(100% - (var(--icon-height) / 2 + 1rem));
  margin-right: 5rem;
  height: 100%;
  border-radius: 100px;
  transition: all var(--transition-speed) linear;
  font-size: var(--font-size);
  padding: 0 0.5em 0 1em;
  color: #fff;
}

.search-icon .search-icon-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-icon .search-icon-wrapper {
  position: absolute;
  margin: auto 0;
  transform: rotate(-45deg);
  transition: all 0s linear;
}

.search-icon .search-icon-wrapper:hover {
  cursor: pointer;
}

.search-icon .search-icon-wrapper .search-icon-glass {
  width: var(--glass-size);
  height: var(--glass-size);
  border: solid var(--line-thickness);
  border-color: var(--icon-color);
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
  transition: all var(--transition-speed) var(--timing-function) var(--transition-speed), border-color 0s linear var(--transition-speed);
}

.search-icon .search-icon-wrapper .search-icon-handle {
  height: calc(100% - var(--glass-size));
  width: var(--line-thickness);
  margin: 0 auto;
  background: var(--icon-color);
  position: absolute;
  border-radius: 0 0 100px 100px;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all var(--transition-speed) var(--timing-function);
  transition-delay: var(--transition-speed);
}

.search-icon .search-icon-wrapper .search-icon-handle::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--icon-color);
  transition: rotate(0deg);
  transition: all var(--transition-speed) var(--timing-function);
  transition-delay: 0s;
}

.search-icon.open {
  width: calc(100vw - 1em);
  border-color: var(--icon-color);
  transition-delay: var(--transition-speed);
}

.search-icon.open .search-icon-input {
  transition-delay: var(--transition-speed);
}

.search-icon.open .search-icon-wrapper .search-icon-glass {
  width: 100%;
  height: 100%;
  transition: all var(--transition-speed) var(--timing-function) 0s, border-color 0s linear var(--transition-speed);
  border-color: rgba(0, 0, 0, 0);
}

.search-icon.open .search-icon-wrapper .search-icon-handle {
  bottom: calc(50% - (100% - var(--glass-size)) / 2);
  border-radius: 100px;
  transition-delay: 0s;
}

.search-icon.open .search-icon-wrapper .search-icon-handle::after {
  transition-delay: var(--transition-speed);
  transform: rotate(90deg);
}

.footered {
  padding: 20px;
  text-align: center;
  background: #1e3459;
  color: #ffffff;
  text-transform: uppercase;
}

.Click-heresd {
  cursor: pointer;
  color: #000;
  width: 142px;
  text-align: center;
  font-size: 14px;
  padding: 2px 0px;
  margin: 0 auto;
  transition: background-image 3s ease-in-out;
}

.custom-model-mainsd {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-opensd {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-innersd {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}

.custom-model-wrapsd {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-opensd .custom-model-innersd {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}

.model-opensd .bg-overlaysd {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bg-overlaysd {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}

@media screen and (max-width:799px) {
  .custom-model-inner {
    margin-top: 45px;
  }
}

.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

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

.mapHdr {
  display: flex;
  left: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.mapHdr .lstMapHdr {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
  flex: 1;
  height: 44px;
  margin: 0 10px;
}

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

.mapHdr .lstMapHdr .mapSearchIcon {
  left: 0;
  top: 12px;
}

.mapSearchIcon,
.mapSearchIcon__clear {
  display: inline-flex;
  position: absolute;
  z-index: 1;
}

.listingAutocomplete .react-autosuggest__container {
  position: relative;
  width: 100%;
}

.listingAutocomplete .react-autosuggest__input {
  background-color: rgba(227, 231, 235, .27);
  border: 1px solid #e3e7eb;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  height: 36px;
  outline: 0;
  padding: 5px 10px 5px 46px;
  transition: all .3s ease-in-out;
  width: 100%;
}

.areampHdr__cta {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
  color: #08f;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-family: Lato;
  font-size: 14px;
  font-weight: 900;
  outline: 0;
  padding: 13px 15px;
  margin-left: 10px;
}

.sprite.icViewList {
  background-position: -425px -899px;
  height: 13px;
  width: 21px;
  margin-right: 10px;
}

.htlSpriteIcon,
.sprite {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0;
}

.sprite {
  background: url(//imgak.mmtcdn.com/pwa_v3/pwa_hotel_assets/sprite_prod/hotelSprite_hash0b80e85….png) no-repeat;
  background-size: 450px 1100px;
}

.breadcrumb-area {
  background-color: #f5f5f5;
}

.breadcrumb-wrap {
  padding: 24px 0;
  text-align: center;
}

.breadcrumb-wrap .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
  color: #c29958;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
  color: #7e7e7e;
  content: "/";
  font-size: 12px;
  margin: 0 5px;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
  color: #c29958;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.contact-area {
  margin-top: -4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .contact-area {
    margin-bottom: -5px;
  }
}

.contact-message h2 {
  color: #222222;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 28px;
  text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
  .contact-message h2 {
    font-size: 18px;
    padding-bottom: 15px;
  }
}

.contact-message form input,
.contact-message form textarea {
  width: 100%;
  border: none;
  padding: 10px 10px;
  border-bottom: 3px solid transparent;
  background-color: #f7f7f7;
  margin-bottom: 30px;
}

.contact-message form textarea {
  height: 150px;
}

.contact-info {
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info {
    margin-top: 77px;
  }
}

@media only screen and (max-width: 767.98px) {
  .contact-info {
    margin-top: 60px;
  }
}

.contact-info p {
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info p {
    padding-bottom: 10px;
  }
}

.contact-info ul li {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 479.98px) {
  .contact-info ul li {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.contact-info ul li:last-child {
  border-bottom: none;
}

.contact-info ul li i {
  font-size: 18px;
  padding-right: 10px;
}

.contact-info .working-time h6 {
  padding-bottom: 5px;
}

.contact-info .working-time p {
  padding-bottom: 0;
}

.contact-info .working-time p span {
  color: #222222;
  padding-right: 10px;
}

.contact-title {
  line-height: 1;
  padding-bottom: 22px;
}

@media only screen and (max-width: 575.98px) {
  .contact-title {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

.responsive-mapsed {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

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

.utility-nav__list,
.main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sectionedss {
  background: #eee;
  min-height: 60vh;
  margin: 0;
  float: left;
  width: 100%;
  padding: 2rem;
}

.headereds {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.main-nav {
  display: block;
  width: 100%;
  background: #fff;
  height: 3.5rem;
  color: #fff;
}

.main-nav__list {
  float: left;
  height: 3.5rem;
  display: inline-block;
  position: relative;
}

.main-nav__item {
  display: inline-block;
  float: left;
  height: 3.5rem;
  margin-right: 2rem;
}

.main-nav__link {
  color: #000;
  font-weight: 500;
  height: 3.5rem;
  padding: 1rem 5px;
  float: left;
}

.main-nav__active {
  transition: width 0.22s ease-in-out, left 0.22s ease-in-out;
  background: #2a9cd8;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.main-nav__logo {
  /* background: url(http://placehold.it/170x50) no-repeat; */
  width: 162px;
  /* height: 100px; */
  margin-top: 10px;
  display: inline-block;
  float: left;
}

.utility-nav {
  display: block;
  width: 100%;
  height: 2rem;
  background: #1c1c1c;
  background: linear-gradient(to top, #1c1c1c 0%, #252525 45%, #252525 55%, #1c1c1c 100%);
}

.utility-nav__list {
  display: inline-block;
  float: right;
}

.utility-nav__item {
  display: inline-block;
  float: left;
  height: 13px;
  margin-top: 0.5rem;
  margin-left: 1rem;
  border-left: 2px solid #fff;
  padding-left: 1rem;
}

.utility-nav__item:first-child {
  margin-left: 0;
  border-left: 0;
  padding-left: 0;
}

.utility-nav__link {
  font-weight: 600;
  display: inline-block;
  height: 0.5rem;
  line-height: 1;
  float: left;
  font-size: rem(12px);
}

.heroSection {
  width: 100%;
  position: relative;
  top: 0px;
  /* height: 550px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 45px 0;
  background: url(https://imgak.mmtcdn.com/seo/cms-staticpages/sites/all/themes/custom/makemytrip/images/aboutus/topimg.jpg) no-repeat center center;
  background-size: 100%;
  height: 461px;
  background-size: cover;
}

.whiteText {
  color: #fff;
}

.headerGg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.89;
}

.aboutMmt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.sectionedss {
  padding: 60px 0 0px 0;
}

.descText {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.aboutMmt h1 {
  display: flex;
  flex-direction: column;
  font-size: 34px;
  margin-bottom: 15px;
}

.aboutMmt h1 .small {
  font-size: 20px;
}

.journey {
  display: flex;
  height: 500px;
  background: url(https://imgak.mmtcdn.com/seo/cms-staticpages/sites/all/themes/custom/makemytrip/images/aboutus/mmtJourneyBg1.jpg) no-repeat center center;
  background-size: cover;
}

.journey h2 {
  font-size: 4.0rem;
  margin-bottom: 10px;
}

.journey h3 {
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.journeyTrack {
  position: relative;
  display: block;
  height: 80%;
}

.milstone .pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  background: rgba(0, 85, 183, 0.2);
  animation: pinOutrAni 2s infinite;
  top: 115%;
  left: 39%;
  /* animation-delay: 7s; */
}

.milstone .pin::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #0055B7;
  display: flex;
  border-radius: 100%;
}

.milstone.start {
  width: 130px;
  top: 56%;
  left: -11%;
}

.journeyTrack .milstone {
  opacity: 0;
  position: absolute;
  text-align: center;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  /* top: 64%;
  left: -4%; */
}

.date {
  font-size: 16px;
}

.milAni {
  animation: fadeIn 1.5s linear forwards;
}

.blackText {
  color: #000;
}

.milstone.one {
  width: 130px;
  top: 42%;
  left: -5%;
}

.milstone.two {
  width: 130px;
  top: 50%;
  left: 4%;
}

.milstone.three {
  width: 130px;
  top: 44%;
  left: 16%;
}

.milstone.four {
  top: 51%;
  left: 27%;
}

.milstone.four {
  top: 51%;
  left: 27%;
}

.milstone.five {
  text-align: center;
  width: 130px;
  top: 27%;
  left: 32%;
}

.milstone.six {
  text-align: center;
  width: 130px;
  top: 44%;
  left: 41%;
}

.milstone.seven {
  text-align: center;
  width: 130px;
  top: 35%;
  left: 50%;
}

.milstone.eight {
  text-align: center;
  width: 130px;
  top: 35%;
  left: 62.5%;
}

.milstone.nine {
  text-align: center;
  top: 45%;
  left: 75%;
  width: 130px;
}

.milstone.ten {
  top: 14%;
  left: 76%;
  text-align: right;
}

.milstone.eleven {
  top: 0%;
  left: 80%;
  text-align: right;
}

.milstone.twelve {
  top: -7%;
  left: 88.5%;
  animation-delay: 3.3s;
  text-align: right;
}

.milstone.thirteen {
  width: 130px;
  text-align: right;
  top: -33%;
  left: 87.5%;
  animation-delay: 3.4s;
}

.milstone .title {
  font-size: 14px;
}

.appendBottom4 {
  margin-bottom: 4px;
}

.milstone .title {
  font-size: 11px;
}

.appendBottom4 {
  margin-bottom: 4px;
}

.descText {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
  text-align: justify;
}

.leadership {
  display: flex;
  flex-wrap: wrap;
}

.leadership li {
  width: 248px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-bottom: 50px;
  margin-right: 28px;
  overflow: hidden;
}

.leadership .imgWrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  margin-bottom: 16px;
}

.leadership .imgWrap img {
  width: 100%;
  transition: 1s ease all;
}

.leadership h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.leadership h5 {
  font-size: 14px;
  line-height: 24px;
  color: #848484;
}

.footprint {
  display: flex;
  background: #204990;
  padding-bottom: 40px;
  position: relative;
}

.footAni {
  animation: bgAni 15s infinite;
}

.footprintAni {
  width: 0%;
  height: 100%;
  display: flex;
  background: url(https://imgak.mmtcdn.com/seo/cms-staticpages/sites/all/themes/custom/makemytrip/images/aboutus/lineBg.png) top left;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.footpritList {
  display: flex;
  flex-wrap: wrap;
}

.footpritList li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 260px;
  height: 120px;
  background: #FFFFFF;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  color: #2A2A2A;
  cursor: pointer;
  transition: 1s ease all;
  margin: 0 16px 32px 0;
}

.footpritList li h3 {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}

.footpritList li p {
  font-size: 18px;
}

.carded {
  min-height: 150px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin: 10px 10px 10px 10px;
  padding: 0 20px;
  justify-content: space-between;
  width: 100%;
}

.im {
  height: 40px;
}

.cardeds {
  width: 50%;
}

.succes {
  width: 60%;
}

.succesStories .shortName {
  width: 66px;
  height: 66px;
  border-radius: 100%;
  background: #6558A0;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.succesStories .shortName img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}

.succesStories .card h4,
.mediaPresence .card h4 {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #2A2A2A;
  font-weight: 800;
}

.succesStories .card .dtlText,
.mediaPresence .card .dtlText {
  font-size: 1.6rem;
  line-height: 2.0rem;
  color: #2A2A2A;
}

.succesStories .card a.readMore,
.mediaPresence .card a.readMore {
  font-size: 1.8rem;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-left: 20px;
  font-weight: 700;
}

.coreValue .coreValueList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.coreValueList.coreValueList li {
  height: auto;
}

.coreValueList.coreValueList li {
  width: 338px;
  height: 320px;
  padding: 24px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 32px 32px 0;
  cursor: pointer;
  transition: 1s ease all;
}

.coreValueList img {
  width: 170px;
}

.coreValueList img {
  margin-bottom: 20px;
}

.coreValueList h4 {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #2F2F2F;
  margin-bottom: 5px;
}

.coreValueList .descText {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #2F2F2F;
}

.footer-top {
  background-color: #f7f7f7;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.widget-title {
  margin-top: -6px;
  margin-bottom: 23px;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

.contact-block li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottomed {
  padding: 20px 0;
}

.footer-top [class*=col-]:last-child .widget-item {
  margin-bottom: 0;
}

.social-link {
  margin-top: 30px;
}

.social-link a {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  margin-right: 10px;
  color: #777777;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #dedede;
}

.info-list {
  display: grid;
  grid-template-columns: auto auto;
}

.info-list li {
  margin-bottom: 8px;
}

.info-list li a {
  font-size: 14px;
  color: #555555;
  text-transform: capitalize;
}

.contact-block li i {
  font-size: 18px;
  padding-right: 5px;
  vertical-align: middle;
}

.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
}

.closeds {
  position: absolute;
  right: -248px;
  width: 51px;
  height: 51px;
  font-size: 0;
  cursor: pointer;
  bottom: 1454%;
}

.closeds:before,
.closeds:after {
  content: '';
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}

.closeds:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popups {
  position: absolute;
  top: 346%;
  left: 34%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #FAFDFF;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 600px;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.09), 0px 11px 12px 7px rgba(0, 0, 0, 0.02);
  -moz-transition: all 120ms;
  -webkit-transition: all 120ms;
  -o-transition: all 120ms;
  transition: all 120ms;
  z-index: 99;
  padding: 25px;
  color: #5E5E5E;
}

@media screen and (max-width: 1000px) {
  .popups {
    width: 80%;
  }
}

/* .popup-headers {
  text-transform: uppercase;
  font-size: 18px;
} */

.popup-bodys {
  padding: 25px 0;
}

/* .buttoneds {
  padding: 10px 15px;
  border: 1px solid #F5F5F5;
  text-transform: uppercase;
  box-shadow: 1px 2px 3px #F5F5F5;
  color: #5E5E5E;
  cursor: pointer;
  transition: all 120ms ease-in;
  outline: none;
} */

.buttoneds:hover {
  box-shadow: 1px 3px 5px #E9E9E9;
  transform: translateY(-1px);
}

.buttoneds:active,
.buttoneds:visited {
  transform: translateY(1px);
  outline: none;
  box-shadow: 1px 2px 3px #F5F5F5;
}

.forgotLogin {
  background: linear-gradient(0deg, #ffffffe6, #ffffffe6), linear-gradient(270deg, #f95776, #f0772c);
  height: 554px;
  flex-direction: column;
  display: flex;
}

.loginPhoneModal {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #0006;
  left: 50%;
  overflow: hidden;
  padding: 26px 29px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 510px;
  z-index: 103;
}

.Account__back {
  min-height: 37px;
}

.backs {
  color: #cf8100;
  font-size: 12px;
  line-height: 12px;
  font-weight: 900;
  color: #ff664b !important;
  text-transform: uppercase;
}

.forgotLogin-Width {
  width: 80%;
}

.Phone-Login {
  background-color: #fff;
  /* border: 1px solid #fac7ab; */
  border-radius: 4px;
  display: flex;
  margin-bottom: 20px;
}

.cntrycode__wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  width: 448px !important;
  position: relative;
}

.createMbAccount__btn.disabledContinue {
  /* background: #c2c2c2; */
  box-shadow: none;
  /* color: #fff9; */
  pointer-events: none;
}

.create-Account-btn {
  align-items: center;
  background-image: linear-gradient(256deg, #ff684a, #ff4959);
  box-shadow: 0 1px 17px 0 #00000052;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: calc(var(--font-scale, 1)* 16px);
  font-weight: 700;
  height: 44px;
  justify-content: center;
  margin-bottom: 50px;
}

.create-Account-btn,
.inputTextPhoneLogin {
  border: 0;
  border-radius: 4px;
  outline: 0;
  width: 100%;
}

.modalFieldInner {
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  align-items: center;
  display: flex;
}

.modalLogin {
  width: 100%;
  border: 0;
  outline: none;
  /* width: 75%; */
  background-color: #fff;
  /* border: 1px solid #9b9b9b; */
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  line-height: 14px;
  color: #008cff;
}

.login-signup {
  align-items: center;
  color: #008cff;
  display: flex;
  font-weight: 900;
  justify-content: center;
  margin-bottom: 26px !important;
  width: 100%;
}

.account-tab-menu {
  flex-direction: column;
  margin-top: 64px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

a.active {
  background-color: #c29958;
  border-color: #c29958;
  color: #fff;
}

.account-tab-menus {
  border: 1px solid #d7dddf !important;
  border-bottom: none;
  color: #222222;
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding: 10px 15px;
  text-transform: capitalize;
}

.margin {
  margin-right: 10px;
}

.value {
  margin-bottom: 10px;
}

.values {
  margin-bottom: 20px;
}

/* .lefte-d {
  background: #d7dddf;
  padding: 44px 12px 1px 12px;
  border-radius: 2px;
} */

.widget-logo-img {
  width: 170px;
}

.gray {
  color: #555555;
}

.htl-info-left h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 900;
}

.htl-info-left-part {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.htl-info-left p {
  font-size: 14px;
  line-height: 20px;
  color: #4a4a4a;
  margin-top: 8px;
  margin-bottom: 8px;
}

.prpt-chk1 {
  margin-bottom: 3px;
  color: #757575;
  font-size: 12px;
  line-height: 12px;
}

.prpt-chk1 {
  margin-top: 2px;
  color: #000;
}

.prpt-chk-conts {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.rm-desced h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.rm-desced p {
  font-size: 14px;
  color: #757575;
  margin-top: 5px;
}

.incListIconed a {
  cursor: pointer;
  margin-left: 10px;
  font-weight: 900;
  font-size: 12px;
  line-height: 12px;
}

.clicks {
  font-size: 16px;
  font-weight: 700;
  color: #0d6efd;
}

.contentScrolled p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.column1 {
  font-size: 14px;
  font-weight: 700;
  color: black;
}

.column2 {
  margin-top: 3px;
  line-height: 20px;
}

.cm-modal h3 {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.impt_list {
  margin-bottom: 10px;
}

.guestDtls_col {
  font-size: 11px;
  margin-bottom: 10px;
}

.trvl-insurance_list {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
}

.booked {
  margin-bottom: 20px;
  padding: 20px;
}

.bok {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}

.pay_list {
  font-size: 12px;
  margin-top: -12px;
}

.pay-list {
  font-size: 16px;
  font-weight: 900;
}

.pay-item1 {
  font-size: 14px;
  font-weight: 900;
}

.pay-item2 {
  font-size: 12px;
  margin-top: -12px;
}

.books-nowed {
  margin-bottom: 24px;
  margin-left: 4px;
  display: flex;
  gap: 2px;
}

#tnc {
  margin-right: 10px;
}

.book-box {
  font-size: 12px;
  line-height: 16px;
}

.pric_header {
  font-size: 16px;
  color: black;
  font-weight: 900;
}

.pric_lft {
  margin-top: 3px;
  font-size: 12px;
  color: #757575;
}

.pers-Banner {
  background-color: rgb(230, 255, 249);
  margin-top: 10px;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
}

.pers-Banner img {
  margin-right: 6px;
}

.charity-cont {
  margin-left: -33px;
}

.charity-card {
  margin-bottom: 10px;
}

.pricBreakup__lfts {
  font-size: 14px;
  font-weight: 700;
}

.pricBreakup__rhts {
  font-size: 14px;
  font-weight: 700;
}

.dl-Codes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.dl-Codes p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.dlCodes_Item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.dlCodes_Item1 {
  font-size: 12px;
  line-height: 16px;
}

.summary {
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
}

.booking-word {
  background: #d7dddf;
  text-align: center;
  padding: 10px;
}

.card-word img {
  border-radius: 10px;
  width: 100px;
  height: 86px;
}

#booking-detail1 {
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 700;
}

#booking-detail2 {
  font-size: 12px;
}

.price {
  border-top: 1px solid gray;
  margin-bottom: 6px;
  margin-top: 6px;
}

.title-cont {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.title-cont1 {
  display: flex;
  align-items: center;
  color: #249b95;
  font-weight: 700;
}

.title-cont2 {
  color: white;
  margin-right: 5px;
}

.mains {
  display: flex;
  justify-content: space-between;
  margin-top: -150px;
}

.dt-payment {
  margin-bottom: 50px;
  margin-top: 40px;
}

.wallet-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
}

.wallet-card span {
  margin-right: 15px;
}

.wallet-card1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wallet-card2 {
  font-size: 14px;
  font-weight: 700;
}

.link_btn {
  font-size: 16px;
  margin-left: auto;
  padding: 10px;
}

.single-select {
  margin-bottom: 20px;
}

.single-select1 {
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
}

.single-crd1 {
  align-items: center;
  line-height: 20px;
  column-gap: 10px;
  font-weight: 900;
}

.add-text {
  font-size: 12px;
  line-height: 16px;
  color: #4a4a4a;
  font-weight: 400;
}

.flexed {
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}

.addeds-btns {
  width: 100px;
  line-height: 17px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}

.addeds-btns1 {
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  color: #9b9b9b;
}

.payment-title1 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-right: 10px;
}

.payment-title2 {
  font-size: 12px;
  line-height: 14px;
  margin-right: 5px;
  color: #4a4a4a;
}

.payment-content1 {
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
  color: #f09819;
  display: flex;
}

.payment-content2 {
  margin-right: 10px;
  color: #f09819;
}

.upi-wrap {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.scan-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scan-wrap1 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
}

.scan-wrap2 {
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.pay-vpa {
  align-items: center;
  flex-direction: column;
  display: flex;
  width: 100%;
}

.scanner-wrap {
  margin-bottom: 20px;
}

.view-btn {
  font-size: 12px;
  font-weight: 400;
}

.vpa_step {
  margin-top: 10px;
}

.vpa-step {
  font-size: 12px;
}

.logo-contain {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logo-contain p {
  display: flex;
  align-items: center;
}

.payment-sprite {
  margin-right: 5px;
}

.payment-sprite {
  margin-right: 10px;
}

.due-num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.due-nums {
  display: flex;
  flex-direction: column;
}

.due__num {
  display: flex;
  align-items: baseline;
  font-size: 20px;
}

.due__num1 {
  font-weight: 900;
  margin-right: 5px;
}

.due__num2 {
  font-size: 10px;
  color: #4a4a4a;
}

.agree-terms {
  font-size: 12px;
  line-height: 16px;
}

.payment-right {
  margin-bottom: 25px;
  display: flex;
}

.cap-texts {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: white;
}

.cap-texts span {
  margin-right: 5px;
}

.hotel-info {
  display: flex;
  flex-direction: column;
}

.hotel-info1 {
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 700;
}

.hotel-info2 {
  font-size: 12px;
}

.box-padded {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e7e7e7;
}

.box-padded1 {
  display: flex;
  align-items: center;
}

.box-padded2 {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.box-padde2 {
  font-size: 14px;
  font-weight: 400;
  margin-right: 5px;
  margin-bottom: 2px;
}

.box-padde2 {
  margin-bottom: 2px;
}

.box-paddeds2 {
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
}

.gaps {
  margin-right: 20px;
  margin-left: 10px;
}

.free-cancel-note {
  font-size: 14px;
}

.free-cancel-note span {
  margin-right: 15px;
}

.rommed {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e7e7e7;
}

.rommeds {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.lob-icon-wrap {
  margin-right: 10px;
}

.lob-icon-wrap1 {
  display: flex;
  flex-direction: column;
}

.lob-icon-wrap1 p {
  font-size: 14px;
  font-weight: 900;
}

.room-tag {
  font-size: 6px;
  margin-right: 10px;
}

.room-tag1 {
  font-size: 8px;
}

.double2 {
  display: flex;
  font-size: 12px;
}

.doubles1 {
  font-weight: 900;
  margin-bottom: 3px;
}

.doubles2 {
  margin-left: 5px;
  font-weight: 400px;
}

.enter-detail {
  display: flex;
  flex-direction: column;
}

.enter-detail1 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 0px;
}

.enter-detail2 {
  font-size: 12px;
  margin-bottom: 0px;
  color: #4a4a4a;
}

.enter-details li {
  font-size: 12px;
  margin-bottom: 0px;
  color: #4a4a4a;
}

.fare-summary-card {
  margin-bottom: 20px;
  font-size: 14px;
  flex-direction: column;
}

.fare-summary-cards {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}

.fare-summary-card1 {
  font-size: 14px;
  font-weight: 400;
}

.fare-summary-card2 {
  font-size: 12px;
  cursor: pointer;
  margin-left: auto;
  color: #249b95;
}

.fare-summarys-card {
  display: flex;
  margin-bottom: -1px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 400;
}

.fares-summarys-card {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  color: #4a4a4a;
  margin-bottom: -1px;
}

.fares-summarys-card1 {
  display: flex;
  font-weight: 400;
}

.fares-summarys-card2 {
  display: flex;
  font-weight: 700;
  margin-bottom: -1px;
  color: #249b95;
}

.summarys-card1 {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: -1px;
  color: black;
}

.fares-card {
  display: flex;
  font-weight: 900;
  font-size: 20px;
  color: black;
}

.fare-card1 {
  align-items: center;
  color: #249b95;
  font-size: 14px;
  margin-bottom: 20px;
}

.forgot-login {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}

.forgots-login {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.forgot-logins {
  margin-bottom: 30px;
}

.mg-headers {
  margin-bottom: 10px;
  align-items: center;
}

.mg-folders {
  padding-bottom: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mgs-folder {
  font-size: 14px;
  line-height: 14px;
  color: black;
}

.froms-1 {
  margin-top: 10px;
}

.froms-2 {
  margin-top: 8px;
}

.froms-3 {
  margin-top: 10px;
}

.viewed {
  margin-right: 10px;
}

.tabs-content {
  margin-top: 24px;
}

.bo-xs {
  margin-bottom: 40px;
}

.offereds h4 {
  margin-bottom: 10px;
}

.about-desc h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.abouted-des {
  width: 97%;
}

.abouteds-des {
  font-size: 12px;
  line-height: 16px;
}

.travel-photos {
  margin-bottom: 10px;
  align-items: center;
}

.travel-photos span {
  margin-right: 10px;
}

.traveled-photo {
  padding-bottom: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.traveled-photo1 {
  font-size: 14px;
  line-height: 14px;
  color: black;
}

.hotel-space p {
  margin-bottom: 5px;
  font-size: 18px;
}

.spacesed{
  font-weight: bold;
  margin-bottom: 10px;
}

.select-filter{
  margin-bottom: 35px;
}

.recentlys{
  margin-bottom: 25px;
}

.content-box{
  margin-left: 20px;
}

.detailed-box{
  margin-top: 8px;
}

.box-icons{
  gap:20px;
}

.box-icons1{
  margin-right: 8px;
}

.priced-section{
  display: flex;
  flex-direction: column;
  line-height: 16px;
}

.hoteled-slider{
  margin-bottom: 20px;
}

.modal-mainesd{
  margin-bottom: 25px;
}

.formed-size{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.button-continue{
  margin-bottom: 25px;
  margin-top: 10px;
}

.logined-slider{
  margin-left: 125px;
  margin-top: -16px;
}

.modal-Maineds{
  margin-bottom: 25px;
}

.modal-label{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-wrapper{
  margin-left: 125px;
  margin-top: -16px;
}

.bread-crumbs{
  gap: 10px; 
  margin-top: 16px;
}

.product-pages{
  gap:10px; 
  margin-bottom: 20px;
}

.imged-holder{
  width: 100%;
  height: 138px;
}

.img-content{
  margin-top: 16px;
}

.img-content p{
  margin-bottom: 6px;
  font-size: 16px;
}

.ques-tion{
  margin-top: 20px;
}

.luxe-theme{
  margin-top: 16px;
}

.luxe_themesed{
  margin-bottom: 16px;
}

.product-nameds{
  margin-top: 30px;
}

.night-charges{
  margin-top: 20px;
}
.night-charges{
  margin-bottom: 5px;
}

.taxes-product1{
  font-size: 28px; 
  line-height: 28px;
}

.taxes-product2{
  margin-left: 5px;
}

.offer-product{
  margin-top: 20px;
}

.off-product{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.off-product1{
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.offer-categories{
  margin-bottom: 30px;
}

.offer-categories p{
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 16px;
  font-weight: 700;
}

.spr-item{
  margin-top: -100px;
}

.fltrs-list span{
  margin-left: 14px;
}

.p-trains{
  font-size: 12px;
  margin-bottom: 10px;
}

.offer-h2{
  font-size: 30px; 
  font-weight: 900; 
  margin-bottom: 30px; 
  margin-top: 60px; 
}