
.cookie_banner_body {
    padding: 10px;
    background: #2c3840;
    /*font-size: 0.8rem;*/
    max-height: 400px;
    min-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 5px;
}


.cookie_banner {
    display: inline-block;
    position: fixed;
    left: -500px;
    bottom: 2.5rem;
    background: #232A34;
    color: white;
    max-width: 80%;
    width: 400px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
    z-index: 1050;
}


.cookie_banner_tile {
    transform: rotate(90deg) translateX(-100%);
    display: inline-block;
    position: fixed;
    left: 0;
    top: 75%;
    transform-origin: bottom left;
    background: #232A34;
    color: #FFCC00;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    transition: 300ms all ease-in-out;
    z-index: 9999999;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1.5rem;
}

.cookie_banner_tile:hover {
    background: #2c3840;
}

.cookie_banner_close {
    cursor: pointer;
    color: #FFCC00;
    font-size: 3rem;
    line-height: 3rem;
}

.cookie_banner_header_text {
    display: flex;
}

.cookie_banner_header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cookie_banner_header_btn {
    background: #FFCC00;
    color: #232A34;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cookie_banner_footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
    a {
        color: white;
    }
}

.cookie_row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cookie_col {
    flex-grow: 1;
    max-width: 50%;
}

#reset_link {
    cursor: pointer;
}

.move_tile_left {
  left: -100px;
  transition: left 0.5s ease-in-out;
}

.move_cookie_banner_left {
  left: -500px;
  transition: left 0.5s ease-in-out;
}

.move_cookie_banner_right {
  left: 2.5rem;
  transition: left 0.5s ease-in-out;
}

.activateCookieBtn {
    background: #FFCC00;
    color: #232A34;
    border: none;
    cursor: pointer;
    line-height: 1.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    /*margin-top: 40%;*/
}

.activateGoogleBtn {
    margin-top: 290px;
}

.activateYouTubeBtn {
    margin-top: 140px;
}

.cookie_banner_header3 {
    color: #FFCC00;
}


/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #FFCC00;;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FFCC00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}
