.nps-pause-subscription {

    background-color: #ffffff;
    padding: 20px;

    .order-heading {
        line-height: 1;
    }

    .date-section {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .from-date-container,
    .to-date-container {
        width: 50%;
    }

    textarea {
        min-height: 170px;
    }

    .button {
        padding: 8px 12px;
        min-height: initial;
        font-size: 10px;
        border-radius: var(--btn-accented-brd-radius);
        color: var(--btn-accented-color);
        box-shadow: var(--btn-accented-box-shadow);
        text-transform: var(--btn-accented-transform, var(--btn-transform, uppercase));
        font-weight: var(--btn-accented-font-weight, var(--btn-font-weight, 600));
        font-family: var(--btn-accented-font-family, var(--btn-font-family, inherit));
        font-style: var(--btn-accented-font-style, var(--btn-font-style, unset));

        &:hover {
            color: var(--btn-accented-color-hover);
            box-shadow: var(--btn-accented-box-shadow-hover);
            background-color: var(--btn-accented-bgcolor-hover);
        }
    }
}

.nps-pause-subscription-error {
    h3 {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 1024px) {
    .nps-pause-subscription {
        .order-heading {
            font-size: 20px;
            margin-bottom: 15px;
        }
    }
}

@media screen and (max-width: 768px) {
    .nps-pause-subscription {
        .order-heading {
            font-size: 18px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 15px;
        }

        textarea {
            min-height: 130px;
        }
    }
}

@media screen and (max-width: 576px) {
    .nps-pause-subscription {

        .date-section {
            flex-direction: column;
            gap: 10px;
        }

        .from-date-container,
        .to-date-container {
            width: 100%;
        }

        input[type="date"] {
            font-size: 12px;
            height: 34px;
        }
    }
}