@media (max-width: 768px) {
    a#save, a#read{
        display: block !important;
    }
}

.cookiebar {
    font-size: 16px;
    opacity: 0.95;
    position: fixed;
    padding: 20px 5px;
    color: white;
    text-transform: none;
    background: #343a40;
    text-align: center;
    line-height: 2;
    box-shadow: 0px 7px 4px 0px #707070;
    top: 25vh;
    width: 80%;
    margin-left: 10%;
    max-height: 90vh;
    overflow: auto;
    
}

a#save, a#read{
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid white;
    font-weight: bold;
    color: white;
    position: relative;
    top: 7px;
    margin-top: 7px !important;
}

a#save {
    background: rgb(255,200,0);
    background: linear-gradient(180deg, rgba(255,200,0,1) 0%, 
                                        rgba(254,204,0,1) 33%, 
                                        rgba(255,226,0,1) 67%, 
                                        rgb(255, 198, 20) 75%, 
                                        rgb(246, 225, 45) 100%);    
    box-shadow: inset 0px 0px 11px rgb(253, 157, 3);
}

a#read {
    background: rgb(255, 90, 5);
    background: linear-gradient(180deg, rgb(251, 117, 43) 0%, 
                                        rgb(250, 125, 31) 33%, 
                                        rgb(249, 143, 62) 67%, 
                                        rgb(251, 117, 43) 75%, 
                                        rgb(255, 186, 94) 100%);
}

a#save:hover{
    background-color: #24c424;
}
a#read:hover{
    background-color: #ffc673;
}

ol.cookie-list li {
    text-decoration: underline;
}

.cookie-name {
    display: inline-block;
    min-width: 125px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* 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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

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

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

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


.popup {
    position: fixed;
    bottom: 10vw;
    text-align: center;
    width: 70vw;
    margin-left: 15vw;
    padding: 1vw;
    box-shadow: 0px 3px 5px grey;
    color: white;
    border-radius: 15px;
    z-index:9999;
}

.popup.success {
    background-color: #00791f;
}

.popup.danger {
    background-color: #9e0000;
}