/*--- SPINNER ---*/
.spinner_wrapper {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.spinner_inner {
    position: absolute;
    width: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px)
}

.spinner {
    width: 100px;
}

/*--- COOKIE ---*/
.cookie_banner {
    background-color: white;
    position: fixed;
    top: auto;
    right: 0;
    bottom: 50px;
    max-width: 600px;
    margin: 0px auto 0px auto;
    border: 3px solid black;
    border-radius: 10px;
    padding: 30px;
    left: 0;
    z-index: 2000;
    display: block;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto
}