@keyframes flash {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  background: #f5f6f8;
  -webkit-tap-highlight-color: transparent;
}

.container {
  min-width: auto;
  max-width: 1300px;
  padding: 0 clamp(0.625rem, 0.523rem + 0.5102vw, 0.9375rem);
  margin: 0 auto;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

.page-outer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 0;
}

.page-outer .breadcrumb ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.page-outer .breadcrumb ul li {
  font-size: 13px;
}

.page-outer .breadcrumb ul li img {
  width: 13px;
}

.page-outer .breadcrumb ul li a {
  color: #551a8b;
  cursor: pointer;
  text-decoration: underline;
}

.page-outer .hotel-outer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-outer .hotel-outer .hotel-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
  gap: 10px;
}

.page-outer .hotel-outer .hotel-card .top {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-outer .hotel-card .top {
    display: flex;
    flex-direction: column;
  }
}

.page-outer .hotel-outer .hotel-card .top .image {
  background: url("../images/hotel.jpg");
  background-size: cover;
  width: 185px;
  height: 170px;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-outer .hotel-card .top .image {
    width: 100%;
    background-position: bottom;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 84%;
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-outer .hotel-card .top .texts {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .page-outer .hotel-outer .hotel-card .top .texts {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts .left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 650px) {
  .page-outer .hotel-outer .hotel-card .top .texts .left {
    width: 100%;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 0.61vw + 0.88rem, 1.38rem);
  font-weight: 500;
  color: #000;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title h3 span {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title h3 span img {
  width: 16px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title p {
  color: #055290;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-style: italic;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title p img {
  width: 16px;
  height: 16px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .title span {
  font-size: 12px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .amenities ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .amenities ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: #5e5e5e;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .amenities ul li img {
  width: 16px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .features ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .features ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  border-radius: 5px;
  height: 23px;
  padding: 12px 7px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .features ul li img {
  width: 20px;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .features ul li.blue {
  background: #e7f4ff;
  border: 1px solid #bdd3e5;
}

.page-outer .hotel-outer .hotel-card .top .texts .left .features ul li.green {
  border: 1px solid #beebc4;
  background: #f0fff2;
}

.page-outer .hotel-outer .hotel-card .top .texts .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-outer .hotel-card .top .texts .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

@media screen and (max-width: 650px) {
  .page-outer .hotel-outer .hotel-card .top .texts .right {
    width: 100%;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts .right .price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 650px) {
  .page-outer .hotel-outer .hotel-card .top .texts .right .price {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 650px) {
  .page-outer .hotel-outer .hotel-card .top .texts .right .price .rate {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts .right .price .rate h4 {
  color: #000;
  font-size: clamp(1.13rem, 0.61vw + 1rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 2px;
  text-align: right;
}

.page-outer .hotel-outer .hotel-card .top .texts .right .price .rate span {
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 500;
  margin: 2px 0 5px;
  text-align: right;
}

.page-outer .hotel-outer .hotel-card .top .texts .right .price .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-outer .hotel-card .top .texts .right .price .btns {
    display: flex;
    flex-direction: row-reverse;
  }
}

.page-outer .hotel-outer .hotel-card .top .texts .right .price .btns .btn {
  font-size: 17px;
  font-weight: 700;
  padding: 2px 10px;
  background: #d32f2f;
  text-transform: capitalize;
  color: #fff !important;
  min-width: 64px;
  line-height: 36px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.page-outer .hotel-list {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .hotel-list .heading {
  padding-top: 20px;
}

.page-outer .hotel-list .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .hotel-list .outer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 20px;
  flex-wrap: wrap;
}

.page-outer .hotel-list .outer .lists {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  padding: 10px;
  width: 32%;
}

@media screen and (max-width: 900px) {
  .page-outer .hotel-list .outer .lists {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  .page-outer .hotel-list .outer .lists {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .page-outer .hotel-list .outer .lists {
    display: flex;
    flex-direction: column;
  }
}

.page-outer .hotel-list .outer .lists .imgouter {
  min-width: 80px;
  height: 125px;
  background: url("../images/hotel-abudhabi.jpg");
  background-position: center;
}

@media screen and (max-width: 500px) {
  .page-outer .hotel-list .outer .lists .imgouter {
    min-width: 118px;
  }
}

@media screen and (max-width: 400px) {
  .page-outer .hotel-list .outer .lists .imgouter {
    min-width: 100%;
  }
}

.page-outer .hotel-list .outer .lists .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-outer .hotel-list .outer .lists .content h2 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.page-outer .hotel-list .outer .lists .content .stage {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.page-outer .hotel-list .outer .lists .content .stage img {
  width: 16px;
}

.page-outer .hotel-list .outer .lists .content .stage h3 {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.page-outer .hotel-list .outer .lists .content p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.page-outer .hotel-list .outer .lists .content .book {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

@media screen and (max-width: 400px) {
  .page-outer .hotel-list .outer .lists .content .book {
    display: flex;
    flex-direction: column;
  }
}

.page-outer .hotel-list .outer .lists .content .book h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.page-outer .hotel-list .outer .lists .content .book h4 span {
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 500;
}

.page-outer .hotel-list .outer .lists .content .book .btn {
  height: 25px;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
  padding: 0 10px;
  background: #fff;
  color: #19478a;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #19478a;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.page-outer .popular-hotel {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .popular-hotel .heading {
  padding-top: 20px;
}

.page-outer .popular-hotel .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .popular-hotel .content {
  padding: 10px 20px 20px;
}

.page-outer .popular-hotel .content .links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.page-outer .popular-hotel .content .links .sub-link {
  width: 20%;
}

@media screen and (max-width: 1095px) {
  .page-outer .popular-hotel .content .links .sub-link {
    width: 24%;
  }
}

@media screen and (max-width: 800px) {
  .page-outer .popular-hotel .content .links .sub-link {
    width: 33%;
  }
}

@media screen and (max-width: 600px) {
  .page-outer .popular-hotel .content .links .sub-link {
    width: 100%;
  }
}

.page-outer .popular-hotel .content .links .sub-link a {
  text-decoration: underline;
  color: #0d30ad;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.page-outer .popular-hotel .content .links .sub-link a img {
  width: 12px;
}

.page-outer .hotel-chain {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .hotel-chain .heading {
  padding-top: 20px;
}

.page-outer .hotel-chain .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .hotel-chain .content {
  padding: 10px 20px 20px;
}

.page-outer .hotel-chain .content .links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.page-outer .hotel-chain .content .links .sub-link {
  width: 19%;
}

@media screen and (max-width: 1095px) {
  .page-outer .hotel-chain .content .links .sub-link {
    width: 33%;
  }
}

@media screen and (max-width: 800px) {
  .page-outer .hotel-chain .content .links .sub-link {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .page-outer .hotel-chain .content .links .sub-link {
    width: 100%;
  }
}

.page-outer .hotel-chain .content .links .sub-link a {
  text-decoration: underline;
  color: #0d30ad;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.page-outer .hotel-chain .content .links .sub-link a img {
  width: 12px;
}

.page-outer .hotel-faq {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .hotel-faq .heading {
  padding-top: 20px;
}

.page-outer .hotel-faq .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .hotel-faq .content {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.page-outer .hotel-faq .content .questions h4 {
  color: #363636;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 22px;
}

.page-outer .hotel-faq .content .questions p {
  color: #363636;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 22px;
}

.page-outer .hotel-faq .content .questions p a {
  color: #0a3df3;
  text-decoration: underline;
  cursor: pointer;
}

.page-outer .hotel-faq .content .questions ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-outer .hotel-faq .content .questions ul li {
  text-decoration-line: underline;
  color: #551a8b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

.page-outer .hotel-faq .content .questions ul.rating {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
}

.page-outer .hotel-faq .content .questions ul.rating li {
  text-decoration-line: none;
  color: black;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

.page-outer .hotel-faq .content .questions ul.rating li a {
  text-decoration-line: underline;
  color: #551a8b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

.page-outer .hotel-location {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .hotel-location .heading {
  padding-top: 20px;
}

.page-outer .hotel-location .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .hotel-location .content {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media screen and (max-width: 1100px) {
  .page-outer .hotel-location .content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.page-outer .hotel-location .content table tr th {
  text-align: left;
  width: 20%;
  cursor: pointer;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
}

.page-outer .hotel-location .content table tr th.rating {
  width: 10%;
  text-align: right;
}

.page-outer .hotel-location .content table tr th.price {
  width: 10%;
  text-align: right;
}

.page-outer .hotel-location .content table tr th.service {
  width: 30%;
}

.page-outer .hotel-location .content table tr td {
  text-align: left;
  width: 20%;
  cursor: pointer;
  color: #838383;
  font-weight: 400;
  font-size: 14px;
  padding: 10px;
}

.page-outer .hotel-location .content table tr td.service {
  width: 30%;
}

.page-outer .hotel-location .content table tr td.rating {
  width: 10%;
  text-align: right;
}

.page-outer .hotel-location .content table tr td.price {
  width: 10%;
  text-align: right;
}

.page-outer .hotel-location .content table tr:nth-child(odd) {
  background-color: #f5f6f8;
}

.page-outer .best-hotel {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .best-hotel .heading {
  padding-top: 20px;
}

.page-outer .best-hotel .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  padding-left: 20px;
  text-transform: capitalize;
  border-left: 5px solid #d32f2f;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .best-hotel .content {
  padding: 10px 20px 20px;
}

.page-outer .best-hotel .content .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.page-outer .best-hotel .content .links .sub-link {
  width: 19%;
}

@media screen and (max-width: 1095px) {
  .page-outer .best-hotel .content .links .sub-link {
    width: 24%;
  }
}

@media screen and (max-width: 900px) {
  .page-outer .best-hotel .content .links .sub-link {
    width: 32%;
  }
}

@media screen and (max-width: 800px) {
  .page-outer .best-hotel .content .links .sub-link {
    width: 49%;
  }
}

@media screen and (max-width: 600px) {
  .page-outer .best-hotel .content .links .sub-link {
    width: 100%;
  }
}

.page-outer .best-hotel .content .links .sub-link a {
  text-decoration: underline;
  color: #0d30ad;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.page-outer .best-hotel .content .links .sub-link a img {
  width: 12px;
}

.page-outer .cheap-hotel {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .cheap-hotel .heading {
  padding: 20px 20px 0px;
}

.page-outer .cheap-hotel .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  text-transform: capitalize;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .cheap-hotel .content {
  padding: 10px 20px 20px;
}

.page-outer .cheap-hotel .content p {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 400;
}

.page-outer .budget-hotel {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .budget-hotel .heading {
  padding: 20px 20px 0px;
}

.page-outer .budget-hotel .heading h2 {
  font-weight: 700;
  font-size: clamp(1rem, 0.31vw + 0.94rem, 1.19rem);
  display: block;
  color: #000;
  text-transform: capitalize;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .budget-hotel .content {
  padding: 10px 20px 20px;
}

.page-outer .budget-hotel .content p {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 400;
}

.page-outer .cheaphotels {
  background: #fff;
  border: 1px solid rgba(156, 170, 179, 0.28);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-outer .cheaphotels .heading {
  padding: 20px 20px 0px;
}

.page-outer .cheaphotels .heading h1 {
  font-weight: 700;
  font-size: clamp(1.13rem, 0.41vw + 1.04rem, 1.38rem);
  display: block;
  color: #000;
  text-transform: capitalize;
  line-height: clamp(1.31rem, 0.41vw + 1.23rem, 1.56rem);
}

.page-outer .cheaphotels .content {
  padding: 10px 20px 20px;
}

.page-outer .cheaphotels .content p {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 400;
}

.animating {
  animation: flash 1s linear 0s infinite normal forwards;
  -webkit-animation: flash 1s linear 0s infinite normal forwards;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  border-radius: 2px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: 0px !important;
}

ul,
li {
  list-style-type: none;
}

a,
button {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  background: #f5f6f8;
  -webkit-tap-highlight-color: transparent;
}

.container {
  min-width: auto;
  max-width: 1300px;
  padding: 0 clamp(0.625rem, 0.523rem + 0.5102vw, 0.9375rem);
  margin: 0 auto;
  box-sizing: border-box;
}

@keyframes loading {
  0% {
    opacity: 0;
    transform: translateY(-50px);
    -moz-transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
  }
}

.clear::after {
  display: table;
  content: "";
  clear: both;
}

.btm-outer {
  /* padding: 0px 15px 15px; */
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.btm-outer a {
  font-size: 14px;
  font-weight: 700;
  color: #fa3a3a;
  text-transform: capitalize;
}

.btm-outer a span {
  color: #fa3a3a;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 0.5s ease;
}

.btm-outer .btn {
    background: #fa3a3a !important;
    border: 1px solid #fa3a3a;
    padding: 13px 39px;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.loadingbtn {
  background: #b72828 !important;
  color: #fff !important;
}

.loadingbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  z-index: 1;
  animation: move 2s linear infinite;
  -webkit-animation: move 2s linear infinite;
  overflow: hidden;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

.search-widget-wrapper {
  width: 100%;
  padding: 0 0px !important;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-top: 21px;
  box-shadow: 0 5.083px 20.333px #11221112;
}

.search-widget-wrapper .row .sector-outer {
  background: #fff;
  position: absolute;
  left: 15px;
  top: 35px;
  width: 336px;
  border: 1px solid #d4d4d4;
  box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.23);
  display: none;
  z-index: 15;
}

.search-widget-wrapper .row .sector-outer.open {
  display: block;
}

.search-widget-wrapper .row .sector-outer .searchinput {
  padding: 0 15px;
  height: 60px;
}

.search-widget-wrapper .row .sector-outer .searchinput .ak-search {
  font-size: 14px;
  color: #000;
  float: left;
  margin-top: 23px;
}

.search-widget-wrapper .row .sector-outer .searchinput .input-field {
  width: calc(100% - 21px);
  position: relative;
  float: right;
  margin-top: 9px;
}

.search-widget-wrapper .row .sector-outer .searchinput .input-field input {
  height: 42px;
  display: block;
  line-height: 42px;
  width: 100%;
  border: 0;
  border: 0;
  margin: 0;
  font-size: 14px;
  position: relative;
  z-index: 5;
  color: #6d6c6c;
  box-shadow: none;
  padding: 0;
}

.search-widget-wrapper .row .sector-outer .searchinput .input-field input~label {
  left: 0;
  padding: 0;
  color: #6d6c6c;
  text-transform: none;
  font-size: 12px;
  position: absolute;
  pointer-events: none;
  top: -9px;
  z-index: 10;
  cursor: text;
  transform-origin: 0% 100%;
  background: #fff;
  transition: all 0.3s linear;
  transform: translateY(13px);
  -moz-transform: translateY(13px);
	line-height: 10px;
}

.search-widget-wrapper .row .sector-outer .searchinput .input-field input~label.with-value {
  transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  font-size: 11px;
}

.search-widget-wrapper .row .sector-outer .searchinput .input-field input:focus~label {
  transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  font-size: 11px;
	top:0;
}

.search-widget-wrapper .row .sector-outer .search-list {
  max-height: 330px;
  overflow: hidden;
  overflow-y: auto;
}

.search-widget-wrapper .row .sector-outer .search-list ul {
  display: block;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li {
  padding: 10px 0;
  display: block;
  background: #fff;
  transition: all 0.3s ease-in;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li::after {
  display: table;
  content: "";
  clear: both;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li.heading-style {
  padding: 0;
  background: #f1f7ff;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li p {
  padding: 5px 15px;
  color: #002543;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li h5 {
  padding: 5px 15px;
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li h5 .icon {
  color: #d32f2f;
  font-size: 21px;
  margin-right: 5px;
  vertical-align: middle;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a {
  padding: 0 15px;
  display: block;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h3 {
  font-size: 14px;
  color: #010101;
  margin: 0;
  font-weight: 400;
  width: calc(100% - 100px);
  transition: all 0.3s ease;
  position: relative;
  float: left;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h3 .blocks {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  vertical-align: text-top;
  background: #404040;
  padding: 1px 2px;
  text-transform: uppercase;
  margin-right: 5px;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h3 .br {
  display: block;
  color: #898989;
  font-size: 12px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  font-weight: 400;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h4 {
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 400;
  width: 100px;
  float: right;
  text-align: right;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h4 span {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0px;
  min-width: 17px;
  width: 17px;
  height: 13px;
  overflow: hidden;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li a h4 span.ellipsistext {
  width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 3px;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:hover {
  background: #f1f7ff;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:hover a h3 {
  color: #000;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:hover a h3 .icon {
  color: #002543;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:focus {
  background: #f1f7ff;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:focus a h3 {
  color: #000;
}

.search-widget-wrapper .row .sector-outer .search-list ul>li:focus a h3 .icon {
  color: #002543;
}

.search-widget-wrapper .row .sector-outer .search-list ul li.active {
  background: #f1f7ff;
}

.search-widget-wrapper .row .sector-outer .search-list ul li.active a h3 {
  color: #000;
}

.search-widget-wrapper .row .sector-outer .search-list ul li.active a h3 .icon {
  color: #002543;
}

.search-widget-wrapper .row .travellersouter {
  background: #fff;
  position: absolute;
  left: 15px;
  width: 360px;
  border: 1px solid #d4d4d4;
  box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.23);
  display: none;
  z-index: 15;
  position: absolute;
  box-shadow: 0 2px 12px #0000002d;
  z-index: 11;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  min-width: 360px;
  margin-left: -11px;
  top:50px
  
}

.search-widget-wrapper .row .travellersouter.open {
  display: block;
}
.search-widget-wrapper .row .travellersouter .bookedrooms h4{
	font-size:18px;
	color:#000;
	line-height: 20px;
}
.search-widget-wrapper .row .travellersouter .bookedrooms h5{
	font-size: 14px;
    line-height: 20px;
	color:#000;
}
.search-widget-wrapper .row .travellersouter .ak-cancel {
	float:right;
}
.search-widget-wrapper .row .travellersouter.open h2 {
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 0px 0px 24px;
    width: 100%;
}

.search-widget-wrapper .row .travellersouter ul {
  margin-bottom: 15px;
}

.search-widget-wrapper .row .travellersouter ul li {
  /* padding: 10px 15px;
  border-bottom: 1px dotted #cbcbcb; */
  padding-bottom: 15px;
  transition: all 0.5s ease-in;
  cursor: auto;
}

.search-widget-wrapper .row .travellersouter ul li p {
  font-size: 16px;
  float: left;
  color: #000;
  width: calc(100% - 110px);
  padding-right: 10px;
  font-weight: 500;
	line-height:18px;
}

.search-widget-wrapper .row .travellersouter ul li p span {
  display: block;
  font-size: 12px;
  color: #6b6b6b;
}

.search-widget-wrapper .row .travellersouter ul li p.single-line {
  margin-top: 6px;
}

.search-widget-wrapper .row .travellersouter ul li h6 {
  font-size: 16px;
  color: #363636;
  width: 40px;
  float: left;
  margin: 0px 0 0px !important;
}

.search-widget-wrapper .row .travellersouter ul li .btnouter {
    display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-direction: row;
  border: 0px solid #d4d4d4;
}

.search-widget-wrapper .row .travellersouter ul li .btnouter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  user-select: none;
  transition: box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  border-radius: 5px ;
  box-shadow: 0 1px 8px #0003;
  width: 32px;
  height: 32px;
  padding: 4px;
    
}

.search-widget-wrapper .row .travellersouter ul li .btnouter a:first-child {
  border-right: 1px solid #d4d4d4;
}

.search-widget-wrapper .row .travellersouter ul li .btnouter a:hover {
 color: #000 !important;
    background: none;
}

/* .search-widget-wrapper .row .travellersouter ul li:hover {
  background: #f1f7ff;
} */

/* .search-widget-wrapper .row .travellersouter ul li:hover p {
  color: #d32f2f;
} */

.search-widget-wrapper .row .travellersouter ul li:hover p span {
  color: initial;
}

.search-widget-wrapper .row .travellersouter .radio {
  position: relative;
  margin: 13px 0;
  padding: 0 15px;
}

.search-widget-wrapper .row .travellersouter .radio input {
  opacity: 0;
  position: absolute;
}

.search-widget-wrapper .row .travellersouter .radio input+label {
  font-size: 15px;
  color: #000;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  padding-left: 27px;
  position: relative;
}

.search-widget-wrapper .row .travellersouter .radio input+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
}

.search-widget-wrapper .row .travellersouter .radio input+label::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  width: 18px;
  height: 18px;
  background: #d32f2f;
  border-radius: 50%;
}

.search-widget-wrapper .row .travellersouter .radio input:checked+label::after {
  transform: translateY(-50%) scale(0.7);
  -moz-transform: translateY(-50%) scale(0.7);
}

.search-widget-wrapper .row .travellersouter .apply {
  color: #fff;
  text-transform: capitalize;
  background: #d32f2f;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 5px 15px 18px;
  height: 29px;
  line-height: 29px;
  width: 57px;
}

.search-widget-wrapper .row .calendarOuter {
  background: #fff;
  position: absolute;
  padding: 0;
  left: 15px;
  top: 35px;
  width: 170px;
  border: 1px solid #d4d4d4;
  box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.23);
  display: none;
  z-index: 15;
}

.search-widget-wrapper .row .calendarOuter input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  background: none;
  padding: 0 11px 0 15px;
  border: 0;
  box-shadow: none;
}

.search-widget-wrapper .row .calendarOuter.open {
  display: block;
}

.search-widget-wrapper .row .calendarOuter .tab-style {
  border-bottom: 1px solid #d4d4d4;
}

.search-widget-wrapper .row .calendarOuter .tab-style li {
  padding: 0 15px;
  min-height: 52px;
  position: relative;
  float: left;
}

.search-widget-wrapper .row .calendarOuter .tab-style li:first-child {
  border-right: 1px solid #d4d4d4;
}

.search-widget-wrapper .row .calendarOuter .tab-style li.close {
  padding: 0;
}

.search-widget-wrapper .row .calendarOuter .tab-style li.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #d32f2f;
}

.search-widget-wrapper .row .calendarOuter .tab-style li h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  color: #5b5b5b;
  margin: 1em 0;
}

.search-widget-wrapper .row .calendarOuter .tab-style li h3 span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.search-widget-wrapper .row .calendarOuter .tab-style li .ak-close {
  position: absolute;
  left: 50%;
  opacity: 0.4;
  font-size: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.search-widget-wrapper .row .calendarOuter .tab-style li .btn-style {
  font-size: 14px;
  font-weight: 500;
  color: #010101;
  background: #ebebeb;
  line-height: 30px;
  height: 30px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 10px;
}

.search-widget-wrapper .row .calendarOuter .outer {
  position: relative;
}

.search-widget-wrapper .row .calendarOuter .outer .nav {
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 25px;
  z-index: 10;
  color: grey;
}

.search-widget-wrapper .row .calendarOuter .outer .nav.prev {
  left: 15px;
}

.search-widget-wrapper .row .calendarOuter .outer .nav.next {
  right: 15px;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month {
  width: 50%;
  float: left;
  padding: 10px 15px;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month:first-child {
  border-right: 1px solid #c3c3c3;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month h3 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #d32f2f;
  text-transform: uppercase;
  padding: 15px 0;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .day-name li {
  float: left;
  height: 38px;
  width: 14.2857142857%;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 700;
  line-height: 41px;
  color: #000;
  font-size: 13px;
  text-transform: capitalize;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li {
  float: left;
  height: 41px;
  width: 14.2857142857%;
  position: relative;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li p {
  display: block;
  position: absolute;
  top: 48%;
  width: 100%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li p span {
  display: block;
  font-size: 10px;
  color: #a8a8a8;
  font-weight: 400;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li p span.lowestfare {
  color: #307d01;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.inactive-date p {
  color: #bbb;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.disabled-date p {
  color: #fff;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.disabled-date p span {
  color: #fff;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.selected-date {
  background: #19478a;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.selected-date p {
  color: #fff;
}

.search-widget-wrapper .row .calendarOuter .outer .monthouter .month .weeks li.selected-date p span {
  color: #fff;
}

.search-widget-wrapper .row .one-way {
  position: relative;
  border-top:0px solid #ebebeb;
  border-bottom: 0px solid #ebebeb;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.search-widget-wrapper .row .one-way>li {
  display: flex;
     flex-direction: column;
    justify-content: center;
    gap: 0px;
  min-height: 80px;
  padding: 11px;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}

.search-widget-wrapper .row .one-way>li:hover {
  background-color: #f1f7ff;
}

.search-widget-wrapper .row .one-way>li .errormsg-outer {
  position: absolute;
  left: 0;
  top: 90%;
  z-index: 10;
  width: 100%;
  animation: loading 0.5s ease 0s 1 normal forwards;
  -webkit-animation: loading 0.5s ease 0s 1 normal forwards;
}

.search-widget-wrapper .row .one-way>li .errormsg-outer .error-style {
  background: #ffe9e9;
  border-left: 3px solid #d32f2f;
  padding: 5px 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  text-align: left;
}

.search-widget-wrapper .row .one-way>li .errormsg-outer .error-style p {
  white-space: normal;
  overflow: visible;
  color: #d32f2f;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 40px);
}

.search-widget-wrapper .row .one-way>li .errormsg-outer .error-style .icon {
  font-size: 26px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  color: #d32f2f;
}

.search-widget-wrapper .row .one-way>li.error {
  background: rgba(255, 0, 0, 0.1);
}

.search-widget-wrapper .row .one-way>li .ak-down {
  font-size: 80%;
  transition: all 0.2s linear;
  display: inline-block;
}

.search-widget-wrapper .row .one-way>li.open .ak-down {
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  color: #19478a;
}

.search-widget-wrapper .row .one-way>li label {
  font-size: 14px;
  font-weight: 400;
  color: #363636;
  text-transform: capitalize;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
	line-height:20px;
}

.search-widget-wrapper .row .one-way>li h6#lblfrom1 {
  font-size: 21px;
	display: inline-block;
    width: 7ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (min-width:1200px){
.search-widget-wrapper .row .one-way>li .date-section{
  display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
}

.search-widget-wrapper .row .one-way>li .date-section h6{
  display: flex;
	gap:4px;
}
.search-widget-wrapper .row .one-way>li h6 {
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; */
  font-size: 16px;
  font-weight: 700;
  margin: 0px 0 0px !important;
  color: #000;
}
@media screen and (max-width:450px){
	.search-widget-wrapper .row .one-way>li h6{
		font-size:13px;
		line-height:18px;
	}
}
.search-widget-wrapper .row .one-way>li h6.date {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.search-widget-wrapper .row .one-way>li h6.date span {
  font-weight: 400;
  font-size: 15px;
}

.search-widget-wrapper .row .one-way>li h6 span {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width:450px){
	.search-widget-wrapper .row .one-way>li h6 span{
		font-size:13px;
	}	
}

.search-widget-wrapper .row .one-way>li p {
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  width: 100%;
	
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}
@media only screen and (max-width:450px){
	.search-widget-wrapper .row .one-way>li p{
		font-size:13px;
	}
}
.search-widget-wrapper .row .one-way>li .room-gest-ounter{
  display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-gest-ounter
.search-widget-wrapper .row .one-way>li h5 {
  font-weight: 500;
  margin: 10px 0 0;
  color: #6d6c6c;
  font-size: 14px;
}

.search-widget-wrapper .row .one-way>li::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #ebebeb;
  position: absolute;
  right: 0;
  top: 47%;
  transform: translateY(-45%);
}

.search-widget-wrapper .row .one-way>li.cityHotel {
     width: calc((100% - 183px) / 6 + 8px);
  display: flex;
      padding-left: 13px;
}

@media screen and (max-width: 990px) {
  .search-widget-wrapper .row .one-way>li.cityHotel {
    width: calc(26% - 45px);
  }
}

@media screen and (max-width: 700px) {
  .search-widget-wrapper .row .one-way>li.cityHotel {
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }

  .search-widget-wrapper .row .one-way>li.cityHotel::after {
    display: none;
  }
}

.search-widget-wrapper .row .one-way>li.cityHotel .full-width {
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  align-items: flex-end;
  gap: 8px;
	align-items: center;
}
.search-widget-wrapper .row .one-way>li.cityHotel .full-width  span.bilt-hotel{
	display: flex;
    align-items: center;
}
.search-widget-wrapper .row .one-way>li.cityHotel .full-width .bilt-hotel img {
  width: 20px;
}

.search-widget-wrapper .row .one-way>li.cityHotel .ak-gps {
  font-size: 21px;
  color: #d2d2d2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: scale(0.8) translateY(-50%);
  -moz-transform: scale(0.8) translateY(-50%);
  transition: all 0.3s ease;
}

.search-widget-wrapper .row .one-way>li.cityHotel .ak-gps:hover {
  transform: scale(1) translateY(-50%);
  -moz-transform: scale(1) translateY(-50%);
}

.search-widget-wrapper .row .one-way>li.cityHotel .ak-swipe {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: calc(100% - 12px);
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: all 0.3s ease;
  color: #d32f2f;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}

.search-widget-wrapper .row .one-way>li.cityHotel .ak-swipe:hover {
  transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
}

.search-widget-wrapper .row .one-way>li.checkin {
  width: calc((100% - 185px) / 6 + 25px);
}

.search-widget-wrapper .row .one-way>li.nights {
  width: calc((100% - 185px) / 6 + 10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-widget-wrapper .row .one-way>li.nights span {
  width: 20px;
  font-weight: 700;
  display: inline-block;
  font-size: 16px;
}

@media screen and (max-width: 990px) {
  .search-widget-wrapper .row .one-way>li.checkin {
    width: calc(23% - 44px);
  }
  .search-widget-wrapper .row .one-way>li.nights {
   width: calc(22% - 44px);
  }
}

@media screen and (max-width: 700px) {
  .search-widget-wrapper .row .one-way>li.checkin {
    width: calc(23% - 0px);
/*     border-bottom: 1px solid #ebebeb; */
  }
  .search-widget-wrapper .row .one-way>li.nights{
      width: calc(23% - 0px);
/*       border-bottom: 1px solid #ebebeb; */
  }
  
}
@media screen and (max-width: 450px) {
  .search-widget-wrapper .row .one-way>li.checkin{
      width: calc(35% - 0px);
  }
  .search-widget-wrapper .row .one-way>li.nights{
    width: calc(30% - 0px);
  }
}
.search-widget-wrapper .row .one-way>li.checkout {
  width: calc((100% - 100px) / 6 + 11px);
  padding-left:13px;
}

.search-widget-wrapper .row .one-way>li.checkout .nights {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  width: 40px;
  color: #363636;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
}

.search-widget-wrapper .row .one-way>li.checkout .nights span {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border: 1px solid #ebebeb;
  background: #fff;
  color: #363636;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 3px;
  border-radius: 50%;
}

@media screen and (max-width: 990px) {
  .search-widget-wrapper .row .one-way>li.checkout {
    width: calc(23% - 45px);
  }
}

@media screen and (max-width: 700px) {
  .search-widget-wrapper .row .one-way>li.checkout {
    width: calc(25% - 0px);
/*     border-bottom: 1px solid #ebebeb; */
    padding-left: 10px;
  }

  .search-widget-wrapper .row .one-way>li.checkout::after {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .search-widget-wrapper .row .one-way>li.checkout {
    width: calc(35% - 0px);
  }
}
.search-widget-wrapper .row .one-way>li.roomsGuests {
  width: calc((100% - 185px) / 6 + 26px);
  display: flex;
}

@media screen and (max-width: 990px) {
  .search-widget-wrapper .row .one-way>li.roomsGuests {
    width: calc(27% - 45px);
  }
}

@media screen and (max-width: 450px) {
  .search-widget-wrapper .row .one-way>li.roomsGuests {
    width: 100%;

  }
}

.search-widget-wrapper .row .one-way>li.roomsGuests::after {
  display: none;
}

.search-widget-wrapper .row .one-way>li.btnarea {
  width: 185px;
}

@media screen and (max-width: 900px) {
  .search-widget-wrapper .row .one-way>li.btnarea {
    width: 100%;
    display: block;
    border-top: 1px solid #ebebeb;
  }
}

.search-widget-wrapper .row .one-way>li.btnarea:hover {
  background-color: transparent;
}

.search-widget-wrapper .row .one-way>li.btnarea::after {
  display: none;
}

.search-widget-wrapper .row .one-way>li.btnarea .btn {
  color: #fff;
  text-transform: capitalize;
  background: #fa3a3a;
  display: inline-block;
  text-align: center;
  border-radius: 7px;
  white-space: nowrap;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  position: absolute;
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (min-width:1200px){
  .search-widget-wrapper .row .one-way>li.btnarea .btn{
    left: 25%;
  }
}
.search-widget-wrapper .row .one-way>li.btnarea .btn img{
      position: relative;
      top: 2px;
      margin-left: 3px;
}

@media screen and (max-width: 900px) {
  .search-widget-wrapper .row .one-way>li.btnarea .btn {
    margin: 0px auto;
    width: 190px;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}

.search-widget-wrapper.skeleton {
  margin-top: 20px;
}

.search-widget-wrapper.skeleton .one-way li.cityHotel label {
  width: 100%;
  height: 13px;
}

.search-widget-wrapper.skeleton .one-way li.cityHotel label:last-child {
  width: 30%;
}

.search-widget-wrapper.skeleton .one-way li.cityHotel h6 {
  width: 60%;
  height: 30px;
  margin-bottom: 5px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .check,
.search-widget-wrapper.skeleton .one-way li.checkout .check {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .check .in,
.search-widget-wrapper.skeleton .one-way li.checkout .check .in {
  width: 70px;
  height: 13px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .check .calendar,
.search-widget-wrapper.skeleton .one-way li.checkout .check .calendar {
  width: 15px;
  height: 15px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .check .down,
.search-widget-wrapper.skeleton .one-way li.checkout .check .down {
  width: 8px;
  height: 8px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .sk_date,
.search-widget-wrapper.skeleton .one-way li.checkout .sk_date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-top: 5px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .sk_date span,
.search-widget-wrapper.skeleton .one-way li.checkout .sk_date span {
  width: 30px;
  height: 30px;
}

.search-widget-wrapper.skeleton .one-way li.checkin .sk_date span:last-child,
.search-widget-wrapper.skeleton .one-way li.checkout .sk_date span:last-child {
  width: 80px;
  height: 18px;
}

.search-widget-wrapper.skeleton .one-way li.checkin p,
.search-widget-wrapper.skeleton .one-way li.checkout p {
  width: 70px;
  height: 30px;
  margin-top: 5px;
}

.search-widget-wrapper.skeleton .one-way li.checkout .nights {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.search-widget-wrapper.skeleton .one-way li.checkout .nights .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.search-widget-wrapper.skeleton .one-way li.checkout .nights .night {
  width: 45px;
  height: 13px;
}

.search-widget-wrapper.skeleton .one-way li.roomsGuests label {
  	width: 90%;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:4px;
}
.search-widget-wrapper.skeleton .one-way li.roomsGuests label span{
	font-weight:700;
	font-size:16px;
}

.search-widget-wrapper.skeleton .one-way li.roomsGuests h6 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.search-widget-wrapper.skeleton .one-way li.roomsGuests h6 .date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.search-widget-wrapper.skeleton .one-way li.roomsGuests h6 .date span {
  width: 15px;
  height: 30px;
}

.search-widget-wrapper.skeleton .one-way li.roomsGuests h6 .date span:last-child {
  width: 60px;
  height: 15px;
}

.search-widget-wrapper.skeleton .one-way li.btnarea {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.search-widget-wrapper.skeleton .one-way li.btnarea span {
  width: 155px;
  height: 42px;
  display: block;
}
.search-widget-wrapper .row .one-way>li.cityHotel .full-width label,
.search-widget-wrapper .row .one-way>li.cityHotel .full-width p{
	display:none;
}

.search-widget-wrapper .row .one-way>li.checkin input[type="date"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
}
.search-widget-wrapper .row .one-way>li.checkin input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    right: 10px;
}
.search-widget-wrapper.skeleton .modify-search-view-values{
	font-size:14px;
}
/*# sourceMappingURL=widget-style.css.map */