.popupCart {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    display: none;
    width: 350px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #121212;
    background-color: #fff;
    border: 1px solid #ebeef2;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.popupCart.active {
    display: block;
}
.popupCart-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px
}
.popupCart-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}
.popupCart-item-img {
    width: 100%;
    max-width: 81px;
    height: 81px;
    margin-right: 10px;
    background-color: #ddd;
}
.popupCart-item-name {
    width: 100%;
    max-width: 100px;
    margin-right: 25px;
    color: rgb(67, 67, 67);
}
.popupCart-item-price {
    margin-left: 20px;
}
.popupCart-item-close {
    width: 15px;
    height: 15px;
    padding: 0;
    margin-left: auto;
    background-color: transparent;
}
.popupCart-price-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 18px;
    line-height: 11px;
}
.popupCart-price-row span {
    margin-right: 9px;
    color: rgb(67, 67, 67);
}
.popupCart-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.popupCart-controls-btn {
    padding: 6px 20px;
    margin-left: 5px;
    font-size: 13px;
    color: #fff;
    background-color: #384043
}
@media (max-width: 768px) {
    .popupCart p {
        display: block !important;
    }
}

@media (max-width: 420px) {
    .popupCart {
        *width: 273px;
        width: 298px;
    }
    .popupCart-item-img {
        max-width: 64px;
        height: 64px;
    }
    .popupCart-item-name {
        max-width: 92px;
        margin-right: 10px;
    }
    .popupCart-item-price {
        margin-left: 10px;
    }
}


@media (max-width: 380px) {
    .popupCart-item-img {
        max-width: 48px;
        height: 48px;
    }
}