.box-cookies.hide {
    display: none !important;
}

.box-cookies {
    position: fixed;
    background: rgb(40, 41, 127, .9);
    width: 100%;
    z-index: 49;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-cookies .btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.box-cookies a {
    color: #fff;
    margin-right: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
    text-align: left;
    padding: 25px;
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.box-cookies .btn-cookies {
    background: #ff2d9b;
    cursor: pointer;
    align-self: normal;
    border: none;
}

@media screen and (max-width: 600px) {
    .box-cookies {
        flex-direction: column;
    }

    .box-cookies .btn-container {
        flex-direction: column;
        width: 100%;
    }

    .box-cookies .btn-cookies {
        width: 100%;
        text-align: center;
    }

    .box-cookies a {
        margin-bottom: 15px;
        margin-right: 0;
    }
}


.cookie-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 30px;
    background: #ff2d9b;
    color: #fff;
    cursor: pointer;
    border: 0;
}


.cookie-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s;
}

.cookie-modal-title{
    font-size: 1.2rem;
}

.cookie-modal-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

.cookie-modal hr {
    margin-top: .5rem;
    margin-bottom: .8rem;
}

.cookie-modal-description{
    font-size: .7rem;
    color: black;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 95%;
    max-width: 400px;
    /*height: 420px;*/
    height: 480px;
    background: white;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    padding: 20px;
    transition: 0.5s ease-out;
}

.active {
    visibility: visible;
    opacity: 1;
}

.active + .cookie-modal {
    visibility: visible;
    opacity: 1;
}

.cookie-modal-accept-container {
    display: flex;
    justify-content: space-between;
}

.cookie-modal-checkbox {
    position: absolute;
    opacity: 0;
}
.cookie-modal-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    justify-self: flex-end;
    margin-left: 15px;
}
.cookie-modal-checkbox + label:before {
    content: '';
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid black;
}
.cookie-modal-checkbox:hover + label:before {
    background: #ff2d9b;
}
.cookie-modal-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.cookie-modal-checkbox:checked + label:before {
    background: #ff2d9b;
}
.cookie-modal-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.cookie-modal-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ff2d9b;
}
.cookie-modal-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
#cookie-modal-btn-save{
    margin-top: 15px;
    background-color: #ff2d9b;
    color: white;
    border: none;
    padding: 3px 10px;
}

#cookie-modal-btn-accept-all{
    margin-top: 15px;
    background-color: white;
    color: #ff2d9b;
    border: 1px solid #ff2d9b;
    padding: 3px 10px;
}

.cookie-modal {
    overflow: scroll;
}