
body{
    font-family: sans-serif;
}

.coba-modal_container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* pointer-events: none; */
    z-index: 9999;
    background-color: rgba(0,0,0,.25);
    display: none;
}

.coba-modal_container.show{
    display: block;
}


.coba-modal{
    width: 90%;
    max-width:650px;
    border-radius:1rem;
    padding: 1rem;
    background: #efefef;
    box-shadow: 0 0 12px 0 #ccc;
    margin: 10vh auto;
    position: relative;
    pointer-events: all;
}

.coba-modal .coba-modal-body{
    overflow-y: scroll ;
    max-height: 80vh;
}

.coba-modal .coba-modal-body::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }

.coba-modal .coba-logo-container{
    max-width: 220px;
    max-height: 95px;

}

.coba-modal .coba-logo-container img{
    width: 100%;
    object-fit: conttain;
}



.coba-modal .title{
    font-size: 22px;
    position:relative;
    z-index: 1;
    margin-top: 20px;

}
.coba-modal .description{
    font-size: 14px !important;
    position:relative;
    z-index: 1;
    margin-top: 60px;
}

.coba-modal .cookie-img{
    width: 160px;
    height: 160px;
    background-size: cover;
    background-image: url(./../images/CookieImg.png);
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 0;
    opacity: .4;
}

.coba-modal .coba-modal-close_btn{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;

}

.coba-modal .btn-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 25px;
}
.coba-modal button{
    outline: none;
    appearance: none;
    border: none;
    padding: .7rem 1.5rem;
    border-radius: .45rem;
    cursor: pointer;
}

.coba-modal .accept_button{
    background: #db7b24;
    color: #fefefe;
}

.coba-modal .accept_selection_button{
    background: rgb(218, 218, 218);
    color: #646464;
}



/* Coba Tab Bar */

.coba-tab{
    position: relative;
    border: 1px solid #ccc;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 6px;
}

.coba-tab p{
    margin: 0;
}

.coba-tab .coba-tab-bar-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coba-tab .coba-tab-bar-title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    cursor: pointer;
}

.coba-tab .coba-tab-bar-body{
    display: none;    
    padding-top: 1.2rem;
    font-size: 12px !important;
}
.coba-tab .coba-tab-bar-body p{
    font-size: 12px !important;
}

.coba-tab .coba-tab-bar-body.show{
    display: block;    
}

/* Swich Button */
.coba-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 22px;
}

.coba-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.coba-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.coba-switch .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
  

.coba-switch input:checked + .slider {
    background-color: #db7b24;
}

.coba-switch input:focus + .slider {
    box-shadow: 0 0 1px #db7b24;
}

.coba-switch input:disabled + .slider {
    opacity: .65;
    cursor: not-allowed;
}


.coba-switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}



.coba-tab-arrow-down{
    width: 22px;
    height: 22px;
    position: relative;
    display: block;
    cursor: pointer;
}

.coba-tab-arrow-down span{
    width: 14px;
    height: 3px;
    background: #db7b24;
    display: block;
    cursor: pointer;
}

.coba-tab-arrow-down span:first-of-type{
    position: absolute;
    top: 10px;
    left: 0;
    transform: rotate(45deg);


}

.coba-tab-arrow-down span:last-of-type{
    position: absolute;
    top: 10px;
    right: 0;
    transform: rotate(-45deg);
}