.h1,
h1 {
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-top: var(--header-margin-top);
    margin-bottom: var(--header-margin-bottom);
    line-height: var(--header-line-height);
    color: var(--header-color);
    font-size: var(--h1-size-mobile);
}
@media screen and (min-width: 768px) {
    .h1,
    h1 {
        font-size: var(--h1-size-desktop);
    }
}
.h2,
h2 {
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-top: var(--header-margin-top);
    margin-bottom: var(--header-margin-bottom);
    line-height: var(--header-line-height);
    color: var(--header-color);
    font-size: var(--h2-size-mobile);
}
@media screen and (min-width: 768px) {
    .h2,
    h2 {
        font-size: var(--h2-size-desktop);
    }
}
.h3,
h3 {
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-top: var(--header-margin-top);
    margin-bottom: var(--header-margin-bottom);
    line-height: var(--header-line-height);
    color: var(--header-color);
    font-size: var(--h3-size-mobile);
}
@media screen and (min-width: 768px) {
    .h3,
    h3 {
        font-size: var(--h3-size-desktop);
    }
}
.h4,
h4 {
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-top: var(--header-margin-top);
    margin-bottom: var(--header-margin-bottom);
    line-height: var(--header-line-height);
    color: var(--header-color);
    font-size: var(--h4-size-mobile);
}
@media screen and (min-width: 768px) {
    .h4,
    h4 {
        font-size: var(--h4-size-desktop);
    }
}
.h5,
h5 {
    font-family: var(--header-font-family);
    font-weight: var(--header-font-weight);
    margin-top: var(--header-margin-top);
    margin-bottom: var(--header-margin-bottom);
    line-height: var(--header-line-height);
    color: var(--header-color);
    font-size: var(--h5-size-mobile);
}
@media screen and (min-width: 768px) {
    .h5,
    h5 {
        font-size: var(--h5-size-desktop);
    }
}
p,
span {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-size: var(--p-size-mobile);
}
@media screen and (min-width: 768px) {
    p,
    span {
        font-size: var(--p-size-desktop);
    }
}
b,
strong {
    font-family: var(--body-bold-font-family);
    font-weight: var(--body-bold-font-weight);
    font-size: var(--p-size-mobile);
}
@media screen and (min-width: 768px) {
    b,
    strong {
        font-size: var(--p-size-desktop);
    }
}
.modal.modal-component {
    --p-size-desktop: 1rem;
    --p-size-mobile: 1rem;
    line-height: 1.75rem;
    color: var(--color-primary);
}
.modal.modal-component .modal-content {
    border-radius: 0.75rem;
}
.modal.modal-component .close {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    margin: 1rem;
}
.modal.modal-component .close span {
    font-size: inherit;
}
.modal.modal-component .modal-header {
    border-bottom: 0;
}
.modal.modal-component .modal-body {
    padding: 1rem 2.25rem 1rem 1.5rem;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.modal.modal-component img {
    max-width: 100%;
}

#cart-wishlist-modal .modal-content {
    border-radius: unset;
}

#cart-wishlist-modal .modal-header .modal-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 23.44px;
    letter-spacing: 0.05em;
    text-align: left;
}
#cart-wishlist-modal .modal-body .wishlist-modal-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 23.5px;
    letter-spacing: 0.1em;
    text-align: left;
}
#cart-wishlist-modal .modal-dialog {
    justify-content: unset;
}
@media (min-width: 576px) {
    #cart-wishlist-modal .modal-dialog {
        max-width: 556px;
    }
}

#cart-wishlist-modal .modal-body {
    padding: 1rem 2.25rem 1rem 1.5rem !important;
}

#cart-wishlist-modal .modal-footer {
    border-top: unset;
}
#cart-wishlist-modal .modal-footer .login-button {
    width: 100%;
    min-height: 3.75rem;
    margin: 0 0 0.625rem;
    font-weight: 700;
    background: #1C4DA1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 18.75px;
    letter-spacing: 0.05em;
    text-align: center;

}

#cart-wishlist-modal .modal-footer .continue-shopping{
    font-size: 16px;
    font-weight: 700;
    line-height: 18.75px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0;
}