/* Add here all your CSS customizations */
.cc-cookies{width:100%;}

.custom-modal{
  
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12345;
    display: none;
    
}
.modal-overlay{
    background: rgba(0, 0, 0, 0.82);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 123456;
    cursor: pointer;
}


.modal-box{
    /*background: rgb(233, 233, 233);*/
    background:none;
    position: absolute;
    top: calc(50% - 150px);
    left: 30vw;
    right: 30vw;
    z-index: 1234567;
    margin: 0;
    border:0 !important; 
}

.panel-footer{
    margin-top:.5em;
    border-top: 1px solid rgba(0, 0, 0, 0.24);
    background-color: none !important;
    background:none !important;
}

.panel-heading{
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    font-weight: 700;
}

.panel-body{
    font-size: 1.5em;
    line-height: 1em;
}

.close{
    outline: none !important;
    cursor: pointer;
}

@media (max-width:1024px) {

    .modal-box{
        left: 5vw;
        right: 5vw;
    }
}

@media (max-width:560px) {

    .modal-box{
       
        font-size: 3vw;
    }
}


