/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 27 2025 | 10:09:28 */
body {
  background: #f8f8f8;
}

.view {
  width: 90%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.container {
  width: 90%;
  margin: 20px auto;
}

.checkout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-title h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

.checkout-secure {
  display: flex;
  gap: 6px;
  align-items: center;
  background: #fff;
  border-radius: 43px;
  padding: 13.5px 20.5px;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.19);
}

.checkout-secure span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.checkout-content {
  display: flex;
  gap: 14px;
  width: 100%;
}

.checkout-fields-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(65% - 14px / 2);
}

.checkout-order-area {
  width: calc(35% - 14px / 2);
  display: flex;
  flex-direction: column;
  padding-bottom: 36px;
}

.checkout-fields-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
}

.checkout-fields-step.closed .checkout-fields-cards-accepted,
.checkout-fields-step.closed .checkout-step-form {
  display: none;
}

.checkout-edit {
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Test Founders Grotesk";
  font-weight: 400;
  line-height: 1;
  padding: 9px 19px;
  cursor: pointer;
  color: #191a1a;
  background: #fff;
  display: none;
}

.checkout-edit:hover {
  opacity: 0.7;
}

.checkout-edit.active {
  display: block;
}

.checkout-fields-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.checkout-step-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.checkout-step-form .form-row-2col {
  display: flex;
  width: 100%;
  gap: 14px;
}

.checkout-step-form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.valid-error {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #d21d1d;
  font-weight: 400;
  display: none;
}

.valid-error.active {
	display: block;
}


.checkout-step-form .form-row-2col .form-group {
  width: calc(50% - 14px / 2);
}

.checkout-step-form .form-group label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #222;
}

.checkout-step-form input,
.checkout-step-form textarea {
  font-family: "Inter", sans-serif;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 1;
  border-radius: 8px;
  -webkit-box-shadow: inset 0px 0px 0px 1px #b0b0b0;
  box-shadow: inset 0px 0px 0px 1px #b0b0b0;
  border: none;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.checkout-step-form textarea {
  min-height: 126px;
}

.checkout-step-form input:focus,
.checkout-step-form textarea:focus {
  -webkit-box-shadow: inset 0px 0px 0px 2px #000;
  box-shadow: inset 0px 0px 0px 2px #000;
}

.required {
	color: #d21d1d;
}

.checkout-step-form .form-actions .btn {
  font-family: "Test Founders Grotesk";
  background: #191a1a;
  color: #fff;
  padding: 16.5px 0;
  min-width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 18px;
}

.checkout-step-form .form-actions .btn:hover {
  opacity: 0.9;
}

.checkout-fields-step-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-fields-cards-accepted {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-fields-cards-accepted.closed {
  display: none;
}

.checkout-fields-cards-accepted span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #b9b9b9;
}

.cards-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cards-list img {
  width: 35px;
  height: 24px;
}

.form-group-2-cols {
  display: flex;
  flex-direction: row !important;
}

.form-group-2-cols-field {
  width: calc(50% - 14px / 2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.checkout-step-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Inter", sans-serif;
}

.checkout-step-summary span {
  font-size: 16px;
  line-height: 1;
  color: #717171;
}
.checkout-order-area {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
}

.order-villa-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-villa-card-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 248px;
  border-radius: 8px 8px 0px 0px;
}

.order-villa-card-img img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.order-villa-card-title {
  padding: 0px 32px 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-villa-card-title .order-villa-card-name {
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}

.order-villa-card-title .villa-beach-access {
  padding: 3px 14px;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.19);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #191a1a;
  border-radius: 43px;
  position: static;
}

.checkout-order-booking-info,
.checkout-order-price-info,
.checkout-order-discount-info,
.checkout-order-total-info,
.checkout-order-btns {
  padding: 0 12px;
}

.checkout-booking-info-content,
.checkout-order-info-content,
.checkout-order-info-content-green {
  padding: 20px;
  background: #f3f3f3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14.5px;
  font-family: "Inter", sans-serif;
}

.checkout-order-info-content {
  background: none;
  gap: 6px;
}

.checkout-order-discount-info .checkout-order-value {
	position: relative;
}

.checkout-order-discount-info .checkout-order-value .info-box {
	right: 0px;
	left: auto;
	top: 20px;
	color: #201f1f !important;
	box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.35);
  -webkit-box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.35);
  -moz-box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.35);
}

.checkout-order-discount-info .checkout-order-value .info-box .info-box-item span {
	font-weight: 400;
}

.checkout-order-discount-info .checkout-order-value .info-box svg {
	filter: invert(0);
}

.checkout-order-info-content-green {
  background: #579d70;
  color: #fff;
}

.checkout-order-info-content-next {
  padding-top: 0;
}

.checkout-order-total-info .checkout-order-info-content {
  gap: 10px;
}

.checkout-order-group {
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}

.checkout-order-row {
  display: flex;
  align-items: center;
}

.checkout-order-row-total {
  gap: 6px;
}

.checkout-order-row-title,
.checkout-order-row-value {
  width: 50%;
  font-size: 14px;
  line-height: 1;
  color: #201f1f;
}

b.checkout-order-row-title {
  font-size: 15px;
}

.checkout-order-info-content-green .checkout-order-row-title {
  color: #fff;
}

.checkout-order-row-value {
  display: flex;
  justify-content: flex-end;
}

.checkout-order-total-info .checkout-order-row-value {
  justify-content: flex-start;
  color: #ff6161;
  text-decoration: line-through;
  font-size: 18px;
}

.checkout-order-date {
  font-size: 15px;
  line-height: 1;
  color: #201f1f;
}

.checkout-order-value {
  font-size: 16px;
  line-height: 1;
  color: #545454;
  font-weight: 500;
}

.checkout-order-info-content-green .checkout-order-value {
  color: #fff;
  font-size: 16px;
}

.checkout-order-value-bold {
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: center;
}

.checkout-order-value-bold svg {
  filter: invert(1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-order-value-bold svg:hover {
	transform: scale(1.3);
}

.checkout-order-plan {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.checkout-order-plan-info {
  display: flex;
  justify-content: space-between;
  width: 50%;
}

.checkout-order-plan-value {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.checkout-order-plan-value .booking-option-info {
	right: 0;
}

.checkout-order-plan-value svg {
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-order-plan-value svg:hover {
	transform: scale(1.3);
}

.checkout-order-plan-edit {
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Test Founders Grotesk";
  font-weight: 400;
  line-height: 1;
  padding: 9px 19px;
  background: #f3f3f3;
  cursor: pointer;
  color: #191A1A;
}

.checkout-order-plan-edit:hover {
  opacity: 0.5;
}

.checkout-order-total-price {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #121722;
}

.checkout-order-total-currency {
  color: #545454;
  font-size: 18px;
}

.checkout-order-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16.5px 0;
  background: #191a1a;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.v-btn:hover {
  opacity: 0.9;
}

.v-btn-white {
  background: #fff;
  color: #191a1a;
  box-shadow: 0px 0px 0px 1px rgba(221, 221, 221, 1) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(221, 221, 221, 1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(221, 221, 221, 1) inset;
}

.checkout-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}

.checkout-overlay.active {
  display: flex;
}

.checkout-popup {
  max-width: 1000px;
  width: 95%;
  height: 80%;
  background: #ffffff;
  border-radius: 30px;
  opacity: 0;
  animation: villasFadeIn 0.6s ease forwards;
  position: relative;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE Edge */
}

.checkout-popup::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.checkout-popup-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}

.checkout-popup-close svg,
.checkout-popup-close svg * {
  pointer-events: none;
}

.checkout-popup-content-terms, .checkout-popup-confirmation {
  width: 70%;
  margin: 0 auto;
  padding: 84px 0;
  font-family: "Test Founders Grotesk";
  display: none;
  flex-direction: column;
  gap: 34px;
  color: #191a1a;
}

.checkout-popup-content-terms.active,
.checkout-popup-confirmation.active {
  display: flex;
}

.checkout-popup-content-terms h3, .checkout-popup-confirmation h3 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-popup-content-terms h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}

.terms-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-text-block p,
.terms-text-block ul {
  color: #717171;
  font-size: 18px;
}

.terms-text-block ul {
  list-style-type: "— ";
  padding-left: 20px;
}

.terms-warning {
  padding: 24px 26px;
  background: #e6f7ec;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
}

.checkout-popup-content-terms .btn, .checkout-popup-confirmation .btn {
  font-family: "Test Founders Grotesk";
  background: #191a1a;
  color: #fff;
  padding: 16.5px 0;
  min-width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 230px;
}

.checkout-popup-content-terms .btn:hover, .checkout-popup-confirmation .btn:hover {
  opacity: 0.9;
}

.confirmation-text-block {
  font-size: 18px;
  color: #222222;
}

.confirmation-text-block b {
  opacity: 0.5;
}

.confirmation-text {
  font-size: 18px;
  color: #717171;
}

.confirmation-text a {
  color: #717171;
}

.checkout-edit-plan.hidden {
	display: none;
}

.confirmation-btn.disabled,
.confirmation-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

@keyframes villasFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .checkout-title h2 {
    font-size: 24px;
  }

  .checkout-content {
    gap: 8px;
  }

  .checkout-fields-area,
  .checkout-order-area {
    width: calc(50% - 4px);
  }

  .checkout-fields-step {
    padding: 36px 16px;
    gap: 20px;
  }

  .form-row {
    margin-top: 0;
  }

  .form-row h4 {
    padding-top: 14px;
  }

  .checkout-step-form .form-row-2col {
    flex-direction: column;
  }

  .checkout-step-form .form-row-2col .form-group {
    width: 100%;
  }

  .checkout-fields-step-title {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .checkout-fields-cards-accepted {
    flex-direction: column;
    align-items: baseline;
  }

  .checkout-step-summary span {
    font-size: 14px;
  }

  .order-villa-card-title .order-villa-card-name {
    font-size: 28px;
  }

  .order-villa-card-title .villa-beach-access {
    gap: 6px;
  }

  .order-villa-card-title .villa-beach-access {
    font-size: 12px;
  }

  .checkout-order-row-title,
  .checkout-order-row-value {
    font-size: 12px;
  }

  .checkout-order-date,
  .checkout-order-value {
    font-size: 11px;
  }

  .checkout-order-plan-edit,
  .checkout-edit {
    font-size: 14px;
    padding: 9px 10px;
  }

  .checkout-order-info-content-green .checkout-order-value {
    font-size: 12px;
  }
	
  .checkout-popup-content-terms, .checkout-popup-confirmation {
    width: 75%;
    padding: 64px 0;
    gap: 28px;
  }

  .checkout-popup-content-terms h3, .checkout-popup-confirmation h3 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .checkout-title {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }

  .checkout-title h2 {
    font-size: 22px;
  }

  .checkout-secure {
    padding: 8.5px 12px;
  }

  .checkout-secure span {
    font-size: 10px;
  }

  .checkout-content {
    flex-direction: column;
    gap: 20px;
  }

  .checkout-fields-area,
  .checkout-order-area {
    width: 100%;
  }

  .order-villa-card-title .order-villa-card-name {
    font-size: 26px;
  }

  .checkout-fields-step h3 {
    font-size: 20px;
  }
	
  .checkout-popup-content-terms, .checkout-popup-confirmation {
    width: 85%;
  }

  .checkout-popup-content-terms h3 {
    font-size: 34px;
  }
	
  .checkout-popup-confirmation h3 {
    font-size: 28px;
    margin-top: 20px;
  }

  .terms-text-block p,
  .terms-text-block ul, .checkout-popup-confirmation .confirmation-text-block,
  .checkout-popup-confirmation .confirmation-text-block .confirmation-text {
    font-size: 16px;
  }
	
	.checkout .v-book-now-btn {
		display: flex;
	}
	
	.checkout-edit-plan .v-booking-checkbox-area {
		flex-direction: column;
		gap: 5px;
	}
	
	.checkout-order-plan-value .booking-option-info {
		left: auto;
		right: -20px;
	}
	
	svg:hover {
		transform: none !important;
	}
}
