/*
COD modal
 */
.cod-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 999;
}
@media (max-width: 768px) {
    .cod-modal {
        width: calc(100% - 1vh);
    }
}
.cod-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
.cod-modal .btn-primary.yes {
    background-color: green;
    color: white;
    border-color: green;
    margin-bottom: 20px;
}
.cod-modal .btn-primary.no {
    background-color: red;
    color: white;
    border-color: red;
    margin-bottom: 20px;
}
.cod-modal p {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cod-modal {
        width: calc(100% - 1vh);
    }
}