.wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 1000;
    overflow: auto;
}

.basket-popup {
    margin: 65px auto;
    width: 100%;
    max-width: 560px;
    min-height: 300px;
    background-color: rgba(255, 255, 255, 1);
    padding: 40px;
    box-sizing: border-box;
    overflow: auto;
}

.basket-popup__title {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color: #3d3d3d;
}

.basket-popup__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.basket-popup__input{
    padding-left: 20px;
    height: 56px;
}

.basket-popup__big-input {
    padding-left: 20px;
    height: 102px;
}

.basket-popup__submit {
    text-align: center;
    color: white;
    height: 60px;
    border: 0 none;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
    -webkit-appearance: none;
    font-weight: 700;
    white-space: nowrap;
    background-image: none;
    cursor: pointer;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    background-color: rgba(1,67,255,0.7);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    transition: 1s;
}

.basket-popup__submit:hover {
    background-color: #ec7f1f;
}

.basket-popup__prices {
    text-align: end;
    margin-bottom: 15px;
}

.basket-popup__item {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: center;
}

.basket-popup__items {
    margin-bottom: 15px;
    margin-top: 15px;
}

.basket-popup__item-delete {

}

.basket-popup__prices-main {
    font-weight: 600;
}

.basket-popup__item-quantity {
    text-align: center;
    width: 33px;
}

.basket-popup__item-link {
    width: 185px;
    text-decoration: none;
    color: black;
}

.basket-popup__item-button {
    border-radius: 10px;
    background-color: white;
    border-width: 1px;
    cursor: pointer;
    padding: 3px;
    width: 22px;
}

.basket-popup__items-line {
    height: 1px;
    width: 100%;
    background-color: rgba(0,0,0, 0.3);
    margin-top: 10px;
    margin-bottom: 10px;
}

.timer_wrap {
    flex-direction: column;
}

.progress {
    transform: rotate(-90deg);
}

.progress__meter,
.progress__value {
    fill: none;
}

.progress__meter {
    stroke: #e6e6e6;
}

.progress__value {
    stroke: #ec7f1f;
    stroke-linecap: round;
}

.time {
    position: relative;
    left: 33px;
    bottom: 20px;
}

.item_return {
    cursor: pointer;
    color: rgba(1,67,255,0.7);
    transition: 0.5s;
}

.item_return:hover {
    color: #ec7f1f;
}

.basket-popup_header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.basket-popup__prices-element {
    margin-bottom: 5px;
}

.empty-basket {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 25px;
    color: red;
}

.close_basket {
    display: none;
}

.basket-icon {
    position: fixed;
    left: 90%;
    top: 15%;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
}

.basket-svg {
    position: relative;
    left: 12px;
    top: 10px;
}


@media (min-width: 600px) {
    .basket-mobile__flex {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

@media (max-width: 600px) {
    .basket-popup {
        width: 100%;
    }

    .basket-mobile__flex {
        text-align: center;
    }

    .basket-icon {
        left: 80%;
        top: 20%;
    }
}

.basket-mobile__flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.basket-counter {
    right: -6px;
    bottom: -6px;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    padding: 0 5px;
    background-color: red;
    color: #fff;
    border-radius: 30px;
    position: absolute;
    text-align: center;
}

.vib {
    animation: shake-circle-01 .1s infinite
}

.disnon {
    display: none;
}

@keyframes shake-circle-01 {
    0% { transform: translate(-1px, 0px); }
    33% { transform: translate(-3px, 0px); }
    66% { transform: translate(-1px, 0px); }
    100% { transform: translate(-3px, 0px); }
}

.basket-popup__item-quantity::-webkit-outer-spin-button,
.basket-popup__item-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}