.cookie-rolex-modal {
    display: none;
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 440px;
    z-index: 9999999;
    background: white;
    padding: 20px 26px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    border-radius: 6px;
}

.cookie-rolex-modal .title, #modal-manage h4 {
    color: #212121;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 12px 0;
    word-break: break-word;
}

.cookie-rolex-modal .description, #modal-manage p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #212121;
}

.cookie-rolex-modal .description-btn-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.cookie-rolex-modal .description-btn-container button, #save-manage, #cancel-manage{
border: 2px solid #3c3c3c;
    flex: auto;
    max-width: 100%;
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    padding: 8px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    text-transform: none;
    min-height: 0;
}

.cookie-rolex-modal .description-btn-container #cookie-rolex-accept, #save-manage {
    color: #fff;
    background-color: #3C3C3C;
}

.cookie-rolex-modal .description-btn-container #cookie-rolex-reject,
.cookie-rolex-modal .description-btn-container #cookie-rolex-manage,
#cancel-manage{
    color: #3c3c3c;
    background: transparent;
}

#cookie-small {
    display: none;
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 9999999;
    background: white;
    padding: 15px 15px 10px 15px;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 24px;
    border: 3px solid var( --e-global-color-primary );
}
#cookie-small img{
    width: 30px;
}
#modal-manage{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background-color: #3c3c3c46;
    justify-content: center;
    align-items: center;
}
#modal-manage .modal-content{
    margin: 0 auto;
    width: 70%;
    z-index: 9999999;
    background: white;
    padding: 20px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    border-radius: 6px;
}
#modal-manage .container-title{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

#modal-manage .container-text{
    width: 60%;
}

#modal-manage .switch-container {
    display: flex;
    align-items: center;
    width: 40%;
    height: fit-content;
    justify-content: flex-end;
}

#modal-manage .switch-label {
    margin: 0 10px;
    font-size: 12px;
}
#modal-manage .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

#modal-manage .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

#modal-manage input:checked + .slider {
    background-color: var( --e-global-color-primary );
}

#modal-manage input:focus + .slider {
    box-shadow: 0 0 1px var( --e-global-color-primary );
}

#modal-manage input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
#modal-manage .container-btn{
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    #modal-manage .modal-content{
        width: 90%;
    }
    #modal-manage .container-title{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #modal-manage .switch-container{
        width: 100%;
        justify-content: center;
    }
    #modal-manage .modal-content h3{
        text-align: center;
    }
    #cookie-small {
        bottom: 20px;
        left: 20px;
    }
    .cookie-rolex-modal {
        width: 90%;
        bottom: 0;
        left: 0;
        max-width: 100%;
        padding: 20px;

    }
    .cookie-rolex-modal .description-btn-container{
        flex-direction: column;
        align-items: stretch;
    }
}