@keyframes flash {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(10px);
}

.modal-dialog {
    max-width: 100%;
    max-height: 100%;
    top: 0;
    margin: auto;
    padding: 16px 12px;
}

.shades-modal .modal-content {
    gap: 12px;
    height: calc(100dvh - 32px);
    border: none;
    background: transparent;
}

.shades-modal .modal-content .close-btn {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
    border-radius: 8px;
    background-color: #fff;
    padding: 10px;
}

.shades-modal .modal-content .modal-title p {
    letter-spacing: -0.02em;
    font-size: 0.875rem;
    line-height: 120%;
}

#notify-modal .modal-dialog .modal-dialog {
    max-width: 100%;
    max-height: 100%;
    top: 0;
    margin: auto;
    padding: 16px 12px;
}

#notify-modal .modal-dialog .modal-content {
    gap: 12px;
    height: calc(100dvh - 32px);
    border: none;
    background: transparent;
}

#notify-modal .modal-dialog .modal-content .close-btn {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
    border-radius: 8px;
    background-color: #fff;
    padding: 10px;
}

#notify-modal .modal-dialog .modal-content .modal-title p {
    letter-spacing: -0.02em;
    font-size: 0.875rem;
    line-height: 120%;
}

.notify-container {
    display: none;
    position: absolute;
    inset: 0;
    padding: 16px 12px;
    z-index: 1;
    flex-direction: column;
    background: linear-gradient(45deg,
            hsla(0, 0%, 100%, 0.95),
            hsla(0, 0%, 100%, 0.65));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
}

.notify-item {
    padding: 8px 16px 8px 12px;
    transition: background 0.25s ease-out, box-shadow 0.25s ease-out;
    background: #fff;
    box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
}

.notify-item .title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notify-item .title-wrap .img-shades {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid #d8d8d8;
    padding: 3px;
    overflow: hidden;
    transition: border-color 0.25s ease-out;
    border-radius: 50%;
}

.notify-item .title-wrap .img-shades img {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.notify-item .title-wrap .img-shades.out-of-stock::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    margin: auto;
    background: #d8d8d8;
    height: 1px;
    width: 100%;
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
    transition: background 0.25s ease-out;
}

.notify-item .title-wrap .title {
    font-size: 12px;
    line-height: 16.38px;
    letter-spacing: -0.02em;
}

.notify-title {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.notify-title span {
    font-weight: 200;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.03em;
}

.notify-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: linear-gradient(45deg,
            hsla(0, 0%, 100%, 0.95),
            hsla(0, 0%, 100%, 0.65));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
}

.notify-success-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 12px;
}

.notify-success-wrap .notify-success-msg {
    font-size: 12px;
    padding: 0 5px;
    line-height: 16.8px;
    letter-spacing: -0.02em;
}

.change-item {
    font-size: 0.75rem;
    text-decoration: underline;
}

.notify-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    overflow-y: auto;
}

.body-title {
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 105%;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.body-mailText {
    font-size: 0.75rem;
    letter-spacing: -0.02em;
}

.notify-modal .privacy-text {
    line-height: 1rem;
    text-underline-offset: 0.18rem;
    font-size: 0.75rem;
    letter-spacing: -0.02em;
    margin-inline-start: 24px;
    text-decoration: underline;
}

.notify-modal .signUp-form {
    gap: 16px;
    margin-bottom: 0;
    height: 100%;
    padding-bottom: 12px;
}

.notify-modal .signUp-form .form-email-section {
    position: relative;
}

.notify-modal .signUp-form .form-email-section .email-label {
    position: absolute;
    top: -8px;
    left: 8px;
    font-size: 10px;
    font-weight: 400;
    line-height: 13.65px;
    letter-spacing: -0.02em;
    background-color: #fff;
    padding: 2px 8px;
}
.notify-modal .signUp-form .form-email-section .inpt.is-invalid label {
    color: #dc3545;
}
.notify-modal .signUp-form .form-email-section input {
    background-color: transparent;
    height: 100%;
}

.notify-modal .signUp-form .form-email-section input:focus {
    outline: none;
}

.notify-modal .signUp-form .form-consent-section {
    gap: 12px;
}

.notify-modal .signUp-form .form-consent-section input {
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    position: relative;
    height: 12px;
    min-width: 12px;
    top: 3px;
    left: 3px;
    outline: 2px solid #252b2e;
    padding: unset;
    width: unset;
    border: unset;
    border-radius: unset;
    cursor: pointer;
}
.notify-modal .signUp-form .form-consent-section input.form-control.is-invalid {
    background-image: unset;
    outline: 2px solid #dc3545;
}

.notify-modal .signUp-form .form-consent-section input:checked:after {
    content: url('../../images/svg/tick.svg'); 
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #252b2e;
    font-size: 12px;
    font-weight: 500;
}

.notify-modal .signUp-form .form-consent-section label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16.38px;
    letter-spacing: -0.02em;
    color: #252b2e;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    cursor: pointer;
}
.notify-modal .signUp-form .form-consent-section .invalid-feedback {
    font-size: 10px;
    margin-inline-start: 24px;
}

.variant-content .content-item.current-color {
    background: #fff;
    -webkit-box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
}

.variant-content .content-item.current-color .title-wrap .img-shades {
    border: 1px solid #252b2e;
}

.variant-content .content-item.current-color .title-wrap .img-shades::after {
    background: #252b2e !important;
}

.service-slider-wrapper {
    z-index: 1
}

@media (max-width: 480px) {
    .service-slider-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto
    }
    .service-slider-wrapper .slide {
        width: calc(50vw - 15px);
    }
    .service-slider-wrapper::-webkit-scrollbar {
        display: none
    }
}