html,
body {
  /* height: 100%;
  width: 100%; */
  /* background-color: #2d2d2d; */
  font-family: Arial, Helvetica, sans-serif;
}

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

.button-div {
  display: block;
  margin-left: auto;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.cookies-description {
  color: #606060;
}

.consent-div {
  display: flex;
  flex-wrap: wrap;
  max-width: 1364px;
  margin-right: auto;
  margin-left: auto;
  bottom: 20px;
  background-color: #fff;
  align-items: flex-end;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}

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

#accept-btn,
#save-btn {
  background-color: #22c272;
  transition-duration: 0.4s;
}

#info-btn {
  background-color: transparent;
  color: #22c272;
  transition-duration: 0.4s;
}

#accept-btn:hover,
#save-btn:hover {
  background-color: #188c52;
}

#reject-btn,
#cancel-btn {
  background-color: transparent;
  color: #595959;
  transition-duration: 0.4s;
}

#reject-btn:hover,
#cancel-btn:hover {
  background-color: #d1d1d1;
}

.btn {
  height: 25px;
  width: 140px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 3px;
  cursor: pointer;
}

.inline {
  display: inline-block;
  margin-right: 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: #22c272;
}

input:checked + .locked {
  background-color: rgba(34, 194, 114, 0.5);
}

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

input:focus + .locked {
  box-shadow: 0 0 1px rgba(34, 194, 114, 0.5);
}

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%;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #595959;
  border-radius: 50%;
  margin-bottom: 32px;
  width: 40px;
  height: 40px;
  animation: spin 1.5s linear infinite;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width: 540px) {
  .cookies-title {
    font-size: 1.3em;
  }
  .cookies-description {
    font-size: 1.2em;
  }
  .inline{
    font-size: 1.1em; 
  }
  .btn {
    height: 35px;
    width: 170px;
  }
  .button-div {
    display: block;
    margin-left: auto;
  }
  .center {
    top: 30%;
  }
}