/*
#cookiePopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  padding: 20px;
  background-color: #1d438c;
  color: #eee;
  text-align: center;
  z-index: 9999;
  border-radius: 25px;
}

#cookiePopup button {
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  #cookiePopup {
    width: 90%;
    max-width: 300px;
  }
}
*/

.cookie-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background: url('../media/image10.png') center/cover;
  z-index: 999;
  display: none;
}

.cookie-popup {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 100%;
  padding: 20px;
  background-color: #1d438c;
  border-radius: 4px;
  text-align: center;
  z-index: 9999;
}

@media (min-width: 768px){
  .cookie-popup {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media (max-width: 767px){
  .cookie-popup {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.cookie-popup p {
  font-size: 14px;
  margin-bottom: 16px !important;
  text-align: left;
  color: #ddd;
}

.cookie-popup-buttons button {
  margin-right: 10px;
}

.cookie-popup-links a {
  display: block;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 130px;
}

.cookie-popup-links a:hover {
  color: #fd9;
}

.cookie-popup-switches {
  display: flex;
  align-items: flex-start;
  max-width: 450px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.switch-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 5px;
  margin-right: auto;
  margin-left: auto;
  color: #ddd;
}

.switch-label input[type="checkbox"] {
  visibility: hidden;
}

.switch-label span.switch-slider {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #000;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 6px;
  margin-right: 6px;
}

.switch-label span.switch-slider:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.switch-label input[type="checkbox"]:checked + span.switch-slider {
  background-color: #2196f3;
}

.switch-label input[type="checkbox"]:checked + span.switch-slider:before {
  transform: translateX(20px);
}

.switch-label:hover .switch-slider {
  background-color: #e5e5e5;
}

@media screen and (max-width: 600px) {
  .cookie-popup {
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .cookie-popup-switches {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }
  .cookie-popup-switches{
    text-align: center;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: transparent;
  pointer-events: none;
}