body {
  height: 100%;
  width: 100%;
  inset: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
}

#loading {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.cookies-rejected-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#loading img {
  opacity: .66;
  transition: opacity .4s;
}

#loading.main_start img {
  animation: 1s ease-in-out 0s infinite alternate breathe;
}

#loading.main_done img {
  opacity: 1;
}

#loading.init_done img {
  animation: .33s ease-in-out 0s 1 forwards zooooom;
  opacity: .05;
}

.hidden {
  display: none;
  visibility: hidden;
}

.consent-banner-div {
  z-index: 1;
  bottom: 0px;
  left: 0px;
  right: 0px;
  position: fixed;
  padding: 14px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: white;
}

.consent-banner-div p {
  width: 70%;
}

.consent-popup-div {
  z-index: 1;
  position: absolute;
  bottom: 40px;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: white;
  border-radius: 5px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}

.banner-row-div {
  display: flex;
  justify-content: space-evenly;
}

.details-row-div {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

#accept-btn,
#save-btn,
#cookies-settings-btn {
  background-color: #ff5500;
}

#reject-btn,
#cancel-btn {
  background-color: #000000;
  border:1px solid white;
}

.btn {
  padding: 8px 16px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.inline {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

h2 {
  margin-block-start: 0.5em;
  margin-block-end: 0em;
}

h3 {
  margin-block-start: 0.5em;
  margin-block-end: 0em;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* 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;
}

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

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

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

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

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

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


@media screen and (max-width: 600px){
  /* For phones: */
  .consent-banner-div {
    flex-direction: column;
  }

  .consent-banner-div p {
    width: 100%;
  }
}

@keyframes breathe {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(0.95)
  }
}

@keyframes zooooom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(0.01)
  }
}