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

.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;
}

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

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

}

/* couponcode style start*/