.contact-form-container {
  width: 100%;
  max-width: 600px;
}

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

#form_comments {
  min-width: 100%;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-option {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-option i {
  color: #fec000;
  margin: 10px;
}

.contact-option span {
    text-align: center;
}

.landing-title.spaced {
  margin: 50px 0;
}

.landing-title.spaced-bottom {
  margin-bottom: 50px;
}

.form-box.no-margin {
  margin: 0;
}

#f_comments {
  height: 300px;
}

textarea {
  height: 100%;
}

.picker-container {
  margin-top: 20px;
}

.checkbox-container {
    margin-top: 20px;
}

.checkbox-container label {
  margin-left: 10px;
}

#submit-button {
  margin-top: 30px;
  border: none;
}

input[type="checkbox"] {
  height: 0;
  width: 0;
  margin-left: -3px;
  display: none;
}

input[type="checkbox"] + label {
  position: relative;
  display: flex;
  margin: 15px 0;
  align-items: center;
  color: #9e9e9e;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
  user-select: none;
}

input[type="checkbox"] + label > ins {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50px;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"] + label > ins > i {
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #4fc3f7;
}

input[type="checkbox"] + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  width: 25px;
  height: 25px;
  background: transparent;
  border: 2px solid #1f5755;
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}

/*input[type="checkbox"] + label:hover,
input[type="checkbox"]:focus + label {
  color: #fff;
}*/

input[type="checkbox"] + label:hover > span,
input[type="checkbox"]:focus + label > span {
  background: #1f575522;
}

input[type="checkbox"]:checked + label > ins {
  height: 100%;
}

input[type="checkbox"]:checked + label > span {
  border: 12.5px solid #fec000;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}

input[type="checkbox"]:checked + label > span:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}

@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #212121;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 5px;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 5px;
    height: 13px;
    border-color: #212121;
    transform: translate3d(0, -13px, 0) rotate(45deg);
  }
}
