/* Button Components */

/* Primary Button */
.primary-btn,
.address-book-edit-button, .continue-review #edit-actions-next, #edit-sidebar-coupon-redemption-form-apply,
.cart-buttons-wrapper .button#edit-checkout,#edit-shipping-information-recalculate-shipping,.customer-registration-submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 5px 20px;
    background-color: #008080 !important;
    color: #fff !important;
    border: 1px solid #008080 !important;
    /* border-radius: 5px; */
    /* font-family: var(--font-primary) !important; */
    font-size: 14px;
    font-family: "Barlow", sans-serif !important;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.primary-btn::after{
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.primary-btn:hover,
.address-book-edit-button:hover, .continue-review #edit-actions-next:hover, #edit-sidebar-coupon-redemption-form-apply:hover,
.cart-buttons-wrapper .button#edit-checkout:hover,#edit-shipping-information-recalculate-shipping:hover,.customer-registration-submit:hover,.customer-registration-submit:focus{
    background-color: #025e5e !important;
    border-color: #025e5e !important;
    transform: translateY(-2px) scale(1.02) !important;
    color: #dde3e9 !important;
    font-weight: 600;
}


/* Outline Button */
.outline-btn,
a.link--previous,.cart-buttons-wrapper .button#edit-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 5px 20px;
    background-color: #f7f7f7 !important;
    color: #1f1f1f !important;
    border: 1px solid #E9E8E8 !important;
    border-radius: 0px;
    font-family: "Barlow", sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.outline-btn::after{
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.outline-btn:hover,
a.link--previous:hover,.cart-buttons-wrapper .button#edit-submit:hover{
    background-color: #eaeaea !important;
    border-color: #eaeaea !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
    0 10px 28px rgba(207, 207, 207, 0.45), 0 0 0 3px rgb(109 109 109 / 12%) !important;
    color: #1f1f1f !important;
}
.outline-btn:hover::after { left: 125%; }

/* Icon Button */
.icon-btn{
    display:flex !important;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.icon-btn img {
    width: 23px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    top: -2px;
}




/* Input-Components */

/* ----- Text ---- */
.input-wrapper input,
.text-feild-wrapper textarea {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    height: 44px;
    max-height: 44px;
    min-height: 44px;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    margin: 0px;
    font-family: var(--font-primary);
    font-size: 14px;
    box-shadow: none;
    padding: 0 15px;
    color: var(--text-color-dark);
    transition: all 0.5s ease-in;
}
.text-feild-wrapper textarea{
    min-height: 100px;
    padding: 15px;
}
.input-wrapper input:hover,
.text-feild-wrapper textarea:hover {
    box-shadow: 0px 10px 25px #ffd6d6ba;
}
.input-wrapper input:focus,
.input-wrapper input:focus-visible,
.input-wrapper input:focus-within,
.text-feild-wrapper textarea:focus,
.text-feild-wrapper textarea:focus-visible,
.text-feild-wrapper textarea:focus-within{
    outline:none;
    border: 1px solid #ffd2d2;
}


.create-account {
    display: none;
}