.cart-delayed-delivery {
    border-radius: 20px;
    padding: 30px;
    background-color: white;
    position: fixed;
    z-index: 1060;
    width: 100%;
    max-width: 388px;
    min-width: 360px;
    height: 650px;
    left: calc(50% - 180px);
    top: 5%;
}

.cart-delayed-delivery .form {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-delayed-delivery .popup-buttons {
    height: 37px;
    min-height: 37px;
    width: 100%;
    border-radius: 50px;
    background-color: rgba(235, 235, 235, 1);
    position: relative;
    display: flex;
    flex-direction: row;
}

.cart-delayed-delivery .popup-buttons button {
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50px;
    background-color: rgba(235, 235, 235, 1);
    color: black;
    font-size: 14px;
}

.cart-delayed-delivery .popup-buttons button:not(.active) {
    background-color: rgba(235, 235, 235, 1);
    color: black;
}

.cart-delayed-delivery .popup-buttons button.active {
    background-color: #28a745;
    color: #ffffff;
}

.cart-delayed-delivery .form .popup-list-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.cart-delayed-delivery .form .popup-list-container {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.cart-delayed-delivery .form .popup-list-container .time-list {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-y: scroll;
}

.delay-time-label {
    width: 64px;
    height: 17px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.delay-time-label span {
    height: 17px;
}

.delay-time-label .delay-time-input {
    margin-right: 10px;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    outline: none;
    border: 1px solid gray;
}

.delay-time-label .delay-time-input:checked {
    border: 1px solid green;
}

.delay-time-label .delay-time-input:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.delay-time-label .delay-time-input:checked:before {
    border: 4px solid green;
}

.cart-delayed-delivery .title {
    font-size: 22px;
    font-weight: bold;
}

.popup-overlay {
    background-color: black;
    opacity: 0.5;
    top: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.cart-delayed-delivery .span-exit {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.cart-delayed-delivery .button-add {
    min-height: 44px;
    height: 44px;
    border-radius: 8px;
}