.cbc-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: start;
}
.cbc-modal {
    padding: 0 15px;
    margin: 1.75rem auto;
}
.cbc-layer {
    background: white;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    display: none;
}
.cbc-layer.active {
    display: block;
}
.cbc-layer-body{
    padding: 1rem;
}
.cbc-buttons {
    border-top: 1px solid #b8b8b8;
    padding: 1rem;
    display: flex;
    justify-content: end;
    gap: 10px;
}

.cbc-toggle {
    display: flex;
    margin: 10px 0;
}

.cbc-toggle-btn {
    width: 100%;
    padding: 5px 15px;
    border: 2px solid black;
    background: white;
    cursor: pointer;
}

.cbc-toggle-btn.active {
    background: black;
    color: white;
}
.display-4 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}
@media (max-width: 991.98px) {
    .cbc-buttons{
        flex-direction: column-reverse;
    }
    .cbc-buttons > .btn {
        margin: 0;
        width: 100%;
    }
}