/* CSS Document - Tailwind Checkout Page */
html, body {
  height: 100%;
}

/* School customized background color */
.bg-school {
  background-color: rgb(var(--tenant-background-color, 244, 247, 254));
}

.absolute-top-right-quote {
    position: absolute;
    left: 93%;
    font-size: 50px;
    color: white;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* couponcode style start*/

.couponCode-inputWrapper {


}

.couponCode-inputWrapper label {
    /* padding-top: 1rem; */
    display: block;
    height: 1.6rem;
}
.couponCode-inputWrapper .label-text {
         -webkit-transform: translateY(-1.7rem);
         transform: translateY(-1.7rem);
        cursor:pointer;
        color: rgba(var(--primary-rgb-900));
        font-weight:700;
        -webkit-transition: -webkit-transform 0.2s ease-out;
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out
}

.couponCode-inputWrapper label input {
    outline: 0;
    border:0;
    border-bottom: 0px solid rgb(var(--primary-rgb-900));
    font-weight:700;
    color: rgb(var(--primary-rgb-900));
}

.couponCode-inputWrapper label input:focus {
    border: 0;
    border-bottom: 2px solid rgba(var(--primary-rgb-900));
    padding-left: 1rem;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    width: 100%;
    
}

.couponCode-inputWrapper label input:focus + .label-text {
            -webkit-transform: translateX(1rem);
            transform: translateX(1rem) translateY(-1.7rem);
            font-size: 0.8rem;
}

/* When coupon code is active, apply styling to show its active */
.couponCode-inputWrapper label input.is-valid {

/* background-color: var(--neutral80); */

display: inline-block;
}

/* Terms and conditions checkbox - high contrast styling */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #4b5563; /* gray-600 for good contrast */
  border-radius: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.form-check-input:hover {
  border-color: #374151; /* gray-700 */
}

.form-check-input:checked {
  background-color: rgb(var(--primary-rgb-600, 79, 70, 229));
  border-color: rgb(var(--primary-rgb-600, 79, 70, 229));
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
  border-color: rgb(var(--primary-rgb-500, 99, 102, 241));
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb-500, 99, 102, 241), 0.25);
}

.form-check-label {
  cursor: pointer;
}

/* When coupon code input field is not empty, remove text */

.couponCode-inputWrapper label input.input--not-empty + .label-text {
    visibility:hidden;

}

/* couponcode style end*/

/* ===========================================
   Tailwind Ring Utilities - Bootstrap Override
   Allows Tailwind ring-* classes to work alongside Bootstrap
   =========================================== */

/* Ensure Tailwind ring utilities work - only set base offset vars, let Tailwind set the rest */
[class*="ring-"].ring-2,
[class*="ring-"].ring-1 {
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
}