.testing__container {
    flex-direction: column;
}

.testing__container .breadcrumb {
    display: none;
}

.testing__row {
    display: flex;
    justify-content: center;
}

.testing__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 0 60px 0;
    max-width: 702px;
}

.testing__send {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.testing__send._active {
    display: none;
}

.testing__title {
    color: var(--color-black);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130.099%;
    text-align: center;
}

.testing__description {
    display: block;
    max-width: 350px;
    color: var(--color-black-50);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: justify;
}

.testing__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.testing__form-label {
    display: none;
}

#product-code {
    display: flex;
    align-items: center;
    padding: 17px 15px;
    width: 100%;
    max-width: 310px;
    height: 54px;
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #F9F9F9;
    transition: border 0.2s ease-in;
}

#product-code::placeholder {
    color: var(--color-black-60);
}

#product-code:hover, #product-code:focus {
    outline: none;
    border-color: var(--color-orange);
}

#product-code:focus::placeholder {
    color: transparent;
}

.testing__form .button-white {
    margin-top: 20px;
    padding: 16px 53px;
    width: 100%;
    max-width: 212px;
    font-size: 16px;
}

.text-danger {
    display: block;
    margin-top: 8px;
    max-width: 464px;
    color: var(--color-red);
    font-size: 12px;
    text-align: center;
}

.testing__retry {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.testing__retry._active {
    display: flex;
}

.testing__product {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 303px;
}

.testing__product-href {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: max-content;
}

.testing__product-href img {
    display: block;
    width: auto;
    height: max-content;
}

.testing__product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.testing__product-info p {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
}

.testing__retry .testing__retry-button {
    margin-top: 20px;
    padding: 16px 53px;
    width: 100%;
    max-width: 242px;
    font-size: 16px;
}

@media (min-width: 992px) {
    .testing__content {
        gap: 50px;
        padding: 95px 0 400px 0;
    }

    .testing__title {
        margin-bottom: 11px;
        font-size: 24px;
    }

    .testing__description {
        max-width: 700px;
        font-size: 17px;
        text-align: center;
    }

    .testing__form .button-white {
        margin-top: 80px;
        padding: 25px 53px;
        width: 100%;
        max-width: 212px;
        font-size: 18px;
    }

    .text-danger {
        margin-top: 10px;
        font-size: 17px;
    }

    .testing__product {
        gap: 40px;
    }

    .testing__product-info p {
        font-size: 17px;
    }

    .testing__retry .testing__retry-button {
        margin-top: 80px;
        padding: 25px 53px;
        width: 100%;
        max-width: 259px;
        font-size: 18px;
    }
}