.cookie-box {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 10000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75px;
  background-color: white;
  border-radius: 5px;
  text-align: center;
}

@media screen and (max-width: 1192px) {
  .cookie-box {
    height: 280px;
  }
}

@media screen and (max-width: 700px) {
  .cookie-box {
    height: 370px;
  }
}

@media screen and (max-width: 500px) {
  .cookie-box {
    height: 600px;
  }
}

@media screen and (max-width: 400px) {
  .cookie-box {
    height: 600px;
  }
}

.cb {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  margin: 15px;
}

@media screen and (max-width: 500px) {
  .cb {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
}

.cookie-text {
  width: 100%;
  text-align: left;
  margin-top: 17px;
  margin-right: 25px;
}

  @media screen and (max-width: 500px) {
    .cookie-text {
      width: 100%;
      text-align: center;
      margin: 15px;
      margin-bottom: -250px;
    }
  }

.cookie-btns {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 500px) {
  .cookie-btns {
    justify-content: center;
    align-items: center;
    height: 600px;
  }
}

.cookie-btn {
  width: 150px;
  margin: 15px;
  border: 1px solid #bdbdbd;
}

.cookie-btn:nth-of-type(2) {
  width: 285px;
  margin-bottom: 10px;
  border: 1px solid #bdbdbd;
}

form {
  display: flex;
  flex-direction: column;
}

.f-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #c6c6c6;
  width: 100%;
  box-sizing: border-box;
}

button.g-recaptcha {
  padding: 10px;
  color: #000;
  cursor: pointer;
  border: 2px solid black;
  width: 25%;
  margin-top: 15px;
}

button.g-recaptcha:hover {
  border: 2px solid black;
}
