.booking-success {
  display: flex;
  position: fixed;
  top:0;
  width: 100%;
  min-height: 100vh;
  z-index: 999999;
  opacity: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  align-items: center;
  pointer-events: all;
  transition: 0.4s;
}

.booking-success .notification-wrapper{
  width: 65%;
  margin: auto;
  position: relative;
  background-color: var(--light-brown);
  overflow: hidden;
  border-radius: 8px;
}

.booking-success .title-wrapper{
  text-align: center;
  padding-top: 40px;
  width: 90%;
  margin: auto;
}

.booking-success .title-wrapper .main-title{
  font-size: 32px;
  text-transform: uppercase;
  margin-top: 24px;
  line-height: 45px;
}

.booking-success-hidden {
  width: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: -5;
  transition: 0.4s;
}

.booking-success .vector{
  width: 100%;
  height: 224px;
}

.booking-success .description-wrapper{
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  text-align: center;
}

.booking-success .description-wrapper p{
  width: 68%;
  margin: auto;
}

.close-button{
  position: absolute;
  right: 28px;
  top: 28px;
  cursor: pointer;
}

@media (min-width: 0px) {
  .booking-success .notification-wrapper{
    width: 100%;
  }


}

@media (min-width: 992px) {
  .booking-success .notification-wrapper{
    width: 65%;
  }
}

@media (max-width: 1400px) {
  .booking-success .description-wrapper p{
    width: 70%;
   }

   .booking-success .vector{
     width: 110%;
   }
}

@media (max-width: 1200px) {
  .booking-success .vector{
    width: 120%;
  }

  .booking-success .description-wrapper p{
    width: 85%;
  }
}

@media (max-width: 992px) {
  .booking-success .title-wrapper .main-title{
    font-size: 28px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .booking-success .title-wrapper .main-title{
    font-size: 24px;
    line-height: 30px;
  }

  .booking-success .vector{
    width: 130%;
  }

  .booking-success .title-wrapper img{
    width: 50px;
  }
}

@media (max-width: 600px) {
  .booking-success .vector{
    height: 200px;
  }
}

@media (max-width: 338px) {
  .booking-success .description-wrapper p{
    width: 90%;
  }
  .booking-success .title-wrapper .main-title{
    font-size: 20px;
    line-height: 10px;
  }
  .booking-success .vector{
    width: 140%;
  }
  .booking-success .vector{
    height: 180px;
  }
}
