.cookie-pop {
  background-color: #fff;
  position: fixed;
  text-align: left;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  font-size: 16px;
  padding: 30px;
}

.cookie-pop p:first-child {
  padding: 10px 0 5px 0;
}

#more-info {
  margin: 15px 0 0 15px;
  font-size: 16px;
  padding: 15px 15px;
  color: #000;
  background-color: #fff;
  border: solid 3px;
  border-color: #bd2129;
}

#more-info:hover {
  color: #fff;
  background-color: #bd2129;
}

#accept-cookie {
  margin: 15px;
  font-size: 16px;
  padding: 15px 30px;
  color: #fff;
  border: solid 3px;
  border-color: #bd2129;
  background-color: #bd2129;
}

#accept-cookie:hover {
  color: #000;
  border: solid 3px;
  border-color: #bd2129;
  background-color: #fff;
}

.coi-modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* toogle */

.toggle {
  margin: 0 0 0 1rem;
  position: relative;
  display: inline-block;
  width: 3.1rem;
  height: 1.6rem;
  top: 0.5rem;
}

.toggle input {
  display: none;
}

.roundbutton {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: #bd2129;
  display: block;
  transition: all 0.3s;
  border-radius: 1.5rem;
  cursor: pointer;
}

.roundbutton:before {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 100%;
  display: block;
  left: 0.05rem;
  bottom: 0.05rem;
  background-color: white;
  transition: all 0.3s;
}

input:checked+.roundbutton {
  background-color: #FF6E48;
}

input:checked+.roundbutton:before {
  transform: translate(1.5rem, 0);
}

/* modal2 for DSGVO info */

.modal2 {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* modal2 Content */

.modal2-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  width: 50%;
}

.close {
  color: #fff;
  float: right;
  font-size: 20px;
}

.close:hover, .close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.modal2-header {
  padding: 15px 16px;
  background-color: #bd2129;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.modal2-body {
  padding: 15px 100px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 60vh;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .modal2-content {
    width: 80%;
  }
  .modal2-body {
    padding: 15px 30px;
  } 
  #accept-cookie {
  margin: 15px 0 15px 0;
  }
  #more-info {
  margin: 15px 0 0 0;
  }
}