.symptoms {
    position: relative;
    margin-top: 32rem;
    padding: 24rem 16rem;
    border-radius: 24rem;
}

.symptoms__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    overflow: hidden;
    border-radius: 24rem;
}

.symptoms__content {
    max-width: 470rem;
}

.symptoms__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12rem;
    margin-bottom: 30rem;
}

.symptoms__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 12rem;
    padding: 16rem 24rem;
    background-color: var(--color-white);
    border-radius: 16rem;
}

.symptoms__item--list {
    width: 100%;
    background-color: var(--color-gray-100);
}

.symptoms__item-img {
    width: 24rem;
    height: 24rem;
}

.symptoms__item-text {
    font-size: 14rem;
    font-weight: 500;
}

.symptoms__text {
    color: var(--color-white);
    font-size: 14rem;
    font-weight: 300;
}

.symptoms__button {
    margin-top: 24rem;
    color: var(--color-white);
    font-size: 16rem;
    font-weight: 700;
    text-decoration: underline;
}

.symptoms___popup {
    position: absolute;
    top: 24rem;
    right: 16rem;
    z-index: 3;
    width: 100%;
    max-width: 340rem;
    padding: 28rem 24rem;
    background-color: var(--color-white);
    border-radius: 24rem;
    opacity: 0;
    -webkit-transition: opacity var(--global-transition-duration) ease-in-out;
    transition: opacity var(--global-transition-duration) ease-in-out;
    pointer-events: none;
    visibility: hidden;
}

.symptoms___popup--open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.symptoms___popup-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.symptoms___popup-title {
    font-size: 18rem;
    font-weight: 700;
}

.symptoms___popup-close {
    width: 25rem;
    height: 25rem;
    background-image: url('../../img/symptoms/icons/close.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.symptoms___popup-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20rem;
    gap: 8rem;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .symptoms {
        padding: 70rem 48rem 48rem;
    }

    .symptoms__box {
        margin-bottom: 70rem;
        gap: 66rem;
    }

    .symptoms__item--box:nth-child(2) {
        margin-left: 35%;
    }

    .symptoms__item--box:nth-child(3) {
        margin-left: 10%;
    }

    .symptoms__item--box:nth-child(4) {
        margin-left: 50%;
    }

    .symptoms__text {
        font-size: 16rem;
    }

    .symptoms___popup {
        max-width: 390rem;
    }
}
