.booking__content-date-time-picker {
}

.booking__content-date-time-picker-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.booking__content-date-time-picker-container > div:first-child {
  width: 220px;
}
.booking__content-date-time-picker-container > div:nth-child(2) {
  width: 130px;
}

.booking__voucher {
  display: flex;
  flex-direction: column;
}
.booking__voucher-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.booking__voucher-list-item {
  display: flex;
  flex-direction: row;
  width: 220px;
  align-items: center;
  height: 40px;
}

.booking__voucher-list-item:not(:last-child) {
  margin-bottom: 10px;
}

.booking__voucher-list-item span {
  display: block;
  margin-left: 5px;
}

.booking__voucher-list-item button {
  margin-left: auto;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.booking__voucher-input {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.booking__voucher-input input {
  width: 220px;
}
.booking__voucher-input button {
  width: 135px;
  height: 45px;
  font-weight: var(--fontWeightNormal);
}

.booking__voucher-input-verifying button {
  border-color: var(--colorBlue);
  background-color: var(--colorBlue);
  color: var(--colorWhite);
  position: relative;
}

.booking__voucher-input button[disabled] {
  color: #797979;
  font-weight: var(--fontWeightNormal);
}

div.booking__input-error input {
  border-color: rgb(255, 87, 82) !important /* =( */;
}

/* Verfify icon */
.voucher__verified-icon:before {
  content: '';
  height: 2px;
  border-radius: 2px;
  position: absolute;
  transform: rotate(45deg);
  top: 9px;
  left: 6px;
  transition: width 50ms ease 50ms;
  transform-origin: 0% 0%;
  width: 5px;
  background: var(--colorBlue);
}
.voucher__verified-icon:after {
  content: '';
  height: 2px;
  border-radius: 2px;
  position: absolute;
  transform: rotate(305deg);
  top: 13px;
  left: 7px;
  transition: width 50ms ease;
  transform-origin: 0% 0%;
  background: var(--colorBlue);
  width: 10px;
}

.voucher__verified-icon {
  width: 20px;
  height: 20px;
  background: none;
  position: relative;
  -webkit-appearance: none;
  transform: scale(2);
}

/* QUERIES */
@media screen and (max-width: 700px) {
}

@media screen and (max-width: 479px) {
  .booking__voucher-list-item {
    width: 100%;
  }

  .booking__voucher-input button {
    width: 100px;
  }
  .booking__voucher-input input {
    max-width: 150px;
  }
}
