.t2-reservation-carousel {
  overflow: hidden;
}
.t2-reservation-carousel img {
  width: 100vw;
  object-fit: cover;
  object-position: center;
}
.t2-reservation-form {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  gap: 20px;
}
.t2-reservation-form {
  .form-text-header {
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
  }
  .form-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-evenly;
    width: 70%;
  }
  .form-floating {
    width: 100%;
  }
  .row-bottom-text {
    padding-top: 3rem;
    width: 70%;
  }
  .row-bottom-text p {
    text-align: start;
    color: white;
  }
  .submit-btn-container {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: end;
  }
  .submit-btn {
    align-self: flex-end;
    padding: 5px 40px;
  }
  .t2-color-selection-container {
    padding: 20px;
    background-color: white;
    width: 70%;
    box-shadow: 0px 0px 5px 5px #fff;
  }
  .t2-color-selection {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .t2-color-item {
    transition: all 0.2s linear;
  }
  .t2-color-item .color-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    i {
      display: none;
    }
    p {
      margin-bottom: 0 !important;
    }
  }

  .t2-color-item.active {
    padding: 10px;
    border: 1px solid rgb(232, 232, 232);
    box-shadow: 0px 0px 5px 1px #d7d7d7;
    i {
      color: green;
      font-size: 25px;
      display: block;
    }
  }
  .t2-color-item img {
    width: 100%;
  }
}
.btn-icons-container {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 30px 50px;
  justify-content: center;
  gap: 50px;
}
.btn-icons-container {
  .btn-icon-item {
    padding: 0 1vw;
    width: 15%;
    box-shadow: 0px 0px 5px 5px rgb(246, 246, 246);
    transform: scale(1);
    transition: all 0.2s linear;
    cursor: pointer;
  }
  .btn-icon-item:hover {
    transform: scale(1.1);
  }
  .btn-icon-item img {
    width: 100%;
    padding: 20px;
  }
  .vertical-line {
    height: auto;
    width: 2px;
    background-color: black;
  }
}
.t2-banner-container {
  width: 100%;
  height: 100%;
  position: relative;
  .bottom-left-btns {
    position: absolute;
    bottom: 5%;
    left: 20%;
  }
  .bottom-left-btns img {
    transform: scale(1);
    transition: all 0.2s linear;
    cursor: pointer;
  }
  .bottom-left-btns img:hover {
    transform: scale(1.1);
  }
  .bottom-left-btns img:nth-child(1) {
    width: 8vw;
  }
  .bottom-left-btns img:nth-child(2),
  .bottom-left-btns img:nth-child(3) {
    width: 2vw;
  }
}
.footer {
  margin-top: 0 !important;
}
@media only screen and (max-width: 800px) {
  .t2-reservation-form {
    padding: 20px;
  }
  .submit-btn-container {
    width: 100%;
  }
  .t2-reservation-form {
    .t2-color-selection-container {
      width: 100%;
    }
    .form-text-header {
      color: white;
      font-size: 25px;
      margin-bottom: 20px;
    }
    .form-row {
      width: 100%;
      flex-direction: column;
      gap: 20px;
    }
    .row-bottom-text {
      width: 100%;
    }
  }
  .btn-icons-container {
    flex-direction: column;
    display: flex;
    padding: 50px;
    justify-content: center;
    align-items: center;
    .vertical-line {
      display: none;
    }
    .btn-icon-item {
      display: flex;
      align-items: center;
      flex-direction: row;
      justify-content: center;
      width: 100%;
    }
    .btn-icon-item img {
      max-height: 100px;
      width: auto;
    }
  }
}
/* Thank you page */
#thankyouModal.show {
  .heading {
    font-weight: bold;
    font-size: 30px;
  }
  .body {
    font-size: 15px;
    font-weight: 400;
  }
  .text-gray {
    color: rgb(149, 149, 149);
    font-weight: 300;
  }
  .success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;

    .check-icon {
      width: 80px;
      height: 80px;
      position: relative;
      border-radius: 50%;
      box-sizing: content-box;
      border: 4px solid #4caf50;

      &::before {
        top: 3px;
        left: -2px;
        width: 30px;
        transform-origin: 100% 50%;
        border-radius: 100px 0 0 100px;
      }

      &::after {
        top: 0;
        left: 30px;
        width: 60px;
        transform-origin: 0 50%;
        border-radius: 0 100px 100px 0;
        animation: rotate-circle 4.25s ease-in;
      }

      &::before,
      &::after {
        content: "";
        height: 100px;
        position: absolute;
        background: #ffffff;
        transform: rotate(-45deg);
      }

      .icon-line {
        height: 5px;
        background-color: #4caf50;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 10;

        &.line-tip {
          top: 46px;
          left: 14px;
          width: 25px;
          transform: rotate(45deg);
          animation: icon-line-tip 0.75s;
        }

        &.line-long {
          top: 38px;
          right: 8px;
          width: 47px;
          transform: rotate(-45deg);
          animation: icon-line-long 0.75s;
        }
      }

      .icon-circle {
        top: -4px;
        left: -4px;
        z-index: 10;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        position: absolute;
        box-sizing: content-box;
        border: 4px solid rgba(76, 175, 80, 0.5);
      }

      .icon-fix {
        top: 8px;
        width: 5px;
        left: 26px;
        z-index: 1;
        height: 85px;
        position: absolute;
        transform: rotate(-45deg);
        background-color: #ffffff;
      }
    }
  }

  @keyframes rotate-circle {
    0% {
      transform: rotate(-45deg);
    }
    5% {
      transform: rotate(-45deg);
    }
    12% {
      transform: rotate(-405deg);
    }
    100% {
      transform: rotate(-405deg);
    }
  }

  @keyframes icon-line-tip {
    0% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }

  @keyframes icon-line-long {
    0% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0px;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
  .modal-header {
    border-bottom: none;
    padding: 0;
    padding-top: 16px;
  }
  .modal-body {
    padding: 0 56px;
  }
  .modal-footer {
    border-top: none;
  }
}
