.qf-page__batch-validator-container {
    padding-block: 3rem 5rem;
}

.qf-batch__form-section {
    position: relative;
    padding-bottom: 20rem;
    overflow: hidden;
    background: linear-gradient(0deg, transparent 0%, #fff 70%);
}

.qf-batch__form-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--circle-design-size);
    height: var(--circle-design-size);
    background: var(--circle-design-bottom-linear-gradient);
    background-position: 0% 25%;
    border-radius: 50%;
    z-index: -1;
}

.qf-batch__form-section .container {
    display: flex;
}

.qf-batch__form-section .container>div {
    flex: 1;
}

.qf-batch__form-section .qf-batch__form-content {
    margin-top: 1.5rem;
}

.qf-batch__form-section .qf-batch__form-content p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.qf-batch__form-section .qf-batch__form-content .qf-batch-validator-form__container form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.qf-batch__form-section .qf-batch__form-content .qf-batch-validator-form__container form input {
    width: fit-content;
}

.qf-batch__form-section .qf-batch__form-content .qf-batch-validator-form__container form input[type=text] {
    padding-block: .75rem;
    padding-inline: 1rem .5rem;
    background-color: #fff;
    font-size: 1.25rem;
    width: 50%;
    border: none;
    outline: none;
    border-radius: 3px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}

.qf-batch__form-section .container .qf-batch__form-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qf-batch__info-section {
    padding-block: 5rem;
}

.qf-batch__info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.qf-batch__info-section p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.qf-batch__info-section p a {
    color: var(--font-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.qf-batch__info-section p a:hover {
    color: var(--tertiary-color);
}

.qf-batch__best-sellers-section {
    position: relative;
    padding-top: 8rem;
    overflow: hidden;
}

.qf-batch__best-sellers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--circle-design-size);
    height: var(--circle-design-size);
    background: var(--circle-design-top-linear-gradient);
    background-position: 0% 25%;
    border-radius: 50%;
    z-index: -1;
}

.qf-bestsellers-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/*****************************************************************
* RESULTS DIALOGUE
******************************************************************/

.qf-batch__results-popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem 2rem;
    border-radius: 5px;
    border: 5px solid var(--primary-color);
    outline: none;
}

.qf-batch__results-popup::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.qf-batch__results-popup .qf-batch__results-title .qf-batch__close {
    --close-btn-size: 35px;

    position: absolute;
    top: 1rem;
    right: 1rem;
    width: var(--close-btn-size);
    height: var(--close-btn-size);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.qf-batch__results-popup .qf-batch__results-title .qf-batch__close>div {
    position: relative;
    width: 100%;
    height: 100%;
}

.qf-batch__results-popup .qf-batch__results-title .qf-batch__close>div::before,
.qf-batch__results-popup .qf-batch__results-title .qf-batch__close>div::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: red;
}

.qf-batch__results-popup .qf-batch__results-title .qf-batch__close>div::before {
    transform: translateY(-50%) rotateZ(45deg);
}

.qf-batch__results-popup .qf-batch__results-title .qf-batch__close>div::after {
    transform: translateY(-50%) rotateZ(-45deg);
}

.qf-batch__results-popup .qf-batch__results-popup-content h2 {
    position: relative;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.qf-batch__results-popup .qf-batch__results-popup-content h2::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    height: 4px;
    width: 180px;
    border-radius: 1000px;
    background-color: var(--tertiary-color);
    transform: translateX(-50%);
}

.qf-batch__results-popup .qf-batch__response-message {
    margin-bottom: 3rem;
}

.qf-batch__results-popup .qf-batch__response-message p {
    font-size: 1.25rem;
    text-align: center;
}

.qf-batch__results-popup .qf-batch_cta-container {
    display: flex;
    justify-content: center;
}

/*****************************************************************
* MEDIA QUERY
******************************************************************/

@media only screen and (max-width: 1450px) {
    .qf-batch__form-section .container .qf-batch__form-image img {
        width: 440px;
        height: 440px;
    }
}

@media only screen and (max-width: 1150px) {
    .qf-batch__form-section {
        padding-bottom: 9rem;
    }

    .qf-batch__form-section .container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media only screen and (max-width: 1000px) {
    .qf-batch__results-popup {
        width: 80%;
    }
}

@media only screen and (max-width: 680px) {
    .qf-batch__form-section .qf-batch__form-content .qf-batch-validator-form__container form input[type=text] {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .qf-batch__results-popup {
        top: 40%;
        width: 95%;
    }

    .qf-batch__form-section .container .qf-batch__form-image img {
        width: 350px;
        height: 350px;
    }

    .qf-batch__form-section {
        padding-bottom: 5rem;
    }
}