.basketpopup {
    /*width: 100vw;*/
    height: 100vh;
    display: none;

    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;

    backdrop-filter: blur(5px);
    background-color: rgba(255, 228, 196, 0.171);
}

.basketpopup-active {display: flex;}

.basketpopup-field {
    width: 80%;
    height: 100%;
    padding: 25px 10px;

    position: relative;

    background-color: #fffffff3;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: -5px 5px 10px #979494f3;
    opacity: 0;
}

.basketpopup-close {
    position: absolute;
    top: 10px;
    right: 10px;

    font-size: 13px;
    color: rgb(238, 40, 13);
    opacity: 0;

    cursor: pointer;
}

.basketpopup-close:hover {
    font-weight: 700;
}

.basketpopup-title {
    text-align: center;

    font-size: 20px;
    font-weight: 600;
    font-style: italic;

    text-transform: uppercase;
    text-shadow: -3px 3px 6px #7c7070f3;
}

.basketpopup-mask {
    width: 95%;
    height: 85%;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 15px;
    overflow-y: auto;
}

.basketpopup-table {
    width: 100%;
    /* margin-top: 25px;
    overflow-y: auto; */

    border-collapse: collapse;
}

.basketpopup-table th {
    /* width: 12.5%; */
    padding: 10px 0;

    border: 1px solid #7c7070f3;
    background-color: #E1EDE6;

    font-size: 16px;
    color: rgba(29, 12, 214, 0.616);

    text-transform: uppercase;
    /* text-shadow: -2px 1px 6px #7c7070f3; */
}

.basketpopup-table td {
    text-align: center;
}

.basket-img {
    width: 90px;
    /* height: 90px; */
    display: block;
    margin: 5px auto;
}
.quantity {
    padding: 0 6px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-btn {
    font-size: 30px;
    font-weight: 800;
    cursor: pointer;
}

.quantity-btn:hover {
    color: #13d540f3;
}

.basketpopup-order-btn {
    margin-left: 30px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(29, 12, 214, 0.616);
    text-transform: uppercase;

    cursor: pointer;
    background-color: #E1EDE6;
    border: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}