#cookieModal1{
    display: flex;
}

.cookies-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    outline: 0;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 99999;
    background: #00000070;
    align-items: center;
    justify-content: center;
}

.cookies-modal .cookies-dialog {
    width: 600px;
    margin: 30px 6px;
}


.cookies-modal .cookies-content {
    background-color: #fff;
    border-radius: 5px;
}


.cookies-modal .cookies-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookies-modal .cookies-header button{
    border: none;
    background: transparent;
    font-size: 19px;
    cursor: pointer;
}

.cookies-modal .cookies-body {
    padding: 15px;
    position: relative;
    padding: 15px;
    font-size: 15px;
    color: #575757;
}

.cookies-modal .cookies-body span,
.cookies-modal .cookies-body a{
    color: #575757;
    cursor: pointer;
    font-weight: bold;
}

.cookies-modal .cookies-body ul{
    margin: 5px 10px 20px 10px;
}

.cookies-modal .cookies-body label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.cookies-modal hr{
    margin: 18px 0px;
    color: #bdbdbd;
    border-color: white;
    border: 0;
    border-top: 1px solid #eee;
}

.cookies-modal .cookies-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.cookies-modal .cookies-footer button{
    background: var(--color-nav);
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.cookies-modal .cookies-footer .button2{
    background: #d9d9d9;
    color: #5d5d5d;
    font-weight: 400;
}

.cookies-modal p {
    margin: 0 0 10px;
}

.cookies-modal  .cookies-title{
    margin: 0;
    font-size: 18px;
    color: #3e3e3e;
}


@media all and (max-width:400px){
    .cookies-modal .cookies-footer button {
        padding: 5px 15px;
    }

    .cookies-modal .cookies-footer .buttonconfig {
        padding: 5px 8px;
    }
}

