.item-added-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 484px;
    padding: 48px;
    background: #ffffff;
    border-radius: 32px;
    margin: 0 16px;
}
.item-added-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.item-added-popup__header__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
}
.item-added-popup__header__close-button {
    cursor: pointer;
}
.item-added-popup__photo {
    max-width: 270px;
    height: 220px;
    width: 100%;
    margin-bottom: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.item-added-popup__item-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
}
.item-added-popup__item-price {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    align-items: center;
}
.item-added-popup__item-price:after {
    content: " ₽";
}
.item-added-popup__go-to-cart-button {
    margin-top: 40px;
}

.popup-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 484px;
    padding: 48px !important;
    background: #ffffff;
    border-radius: 32px;
    margin: 0 16px;
}
.popup-window-titlebar-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
    color: #212529;
}
.popup-window-content img {
    max-width: 270px;
    max-height: auto;
    height: 220px;
    width: 100%;
    margin-bottom: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.popup-window-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
}
@media screen and (max-width: 577px) {
    .item-added-popup__header__title {
        font-size: 22px;
    }
    .popup-window-content img {
        height: auto;
    }
    .popup-window {
        width: 90%;
    }
}