@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap");

:root {
  --errPopW: 400px;
}

body {
  background: url(../img/bg.jpg) center 0 no-repeat;
  background-size: cover;
}

.modal-backdrop {
  z-index: 0 !important;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .banner {
  width: 100%;
  background: url(../img/bg-banner.png) center 0 no-repeat;
  background-size: 100% 100%;
}

.slider .banner img {
  width: 100%;
}

form {
  position: relative;
}

form>input::placeholder {
  color: #867e7e;
}

.bgform {
  background: url(../img/bg-form.png) center 0 no-repeat;
  background-size: 100% 100%;
  padding: 0px 5px;
}

#addon-wrapping i {
  color: #cfb5b5;
}

.form-select {
  color: #867e7e;
  border-radius: 6px;
}

.formheading {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.mainformbtn {
  min-height: 45px;
  background: linear-gradient(180deg, #ffed1f 0%, #f89f09 100%) !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
}

.swal2-confirm {
  background: linear-gradient(180deg, #ffed1f 0%, #f89f09 100%) !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
}

.swal2-modal {
  background: rgb(255, 255, 255) !important;
  background: linear-gradient(90deg, rgba(149, 143, 249, 1) 0%, rgba(44, 72, 228, 1) 100%) !important;
}

.swal2-title,
.swal2-html-container {
  color: #fff !important;
}

.mainformbtn:hover {
  filter: brightness(1.1);
  color: rgb(78, 77, 77);
}

.impo {
  color: red;
  text-align: center;
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  top: 2%;
  right: -13px;
}

.impo2 {
  top: 14% !important;
}

.impo3 {
  top: 26% !important;
}

.impo4 {
  top: 52% !important;
}

.impo5 {
  top: 72% !important;
}

.carousel-indicators {
  bottom: -50px;
}

.upload-container {
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.upload-container #file-input {
  display: none;
}

.upload-container label {
  padding: 10px;
  background-color: #867e7e;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.upload-container label:hover {
  background-color: #a39e9e;
}

.upload-container #file-name {
  max-width: 50%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modalPop {
  width: 100vw;
  height: 100vh;
  background: #000000a4;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.hidden {
  display: none;
}

.errMain {
  position: relative;
  background: url(../img/error.png) center 0 no-repeat;
  background-size: contain;
  width: var(--errPopW);
  height: calc(var(--errPopW) * 3 / 4);
}

.errMain #submit-error {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.mainformbtn {
  min-height: 45px;
  background: linear-gradient(180deg, #ffed1f 0%, #f89f09 100%);
  font-weight: bold;
  font-size: 1.1rem;
}

.historybtn {
  position: fixed;
  top: 10%;
  right: 0;

}

.mainformbtn:hover {
  filter: brightness(1.1);
  color: rgb(78, 77, 77);
}

.errMain .errText {
  position: absolute;
  bottom: 23%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .formheading {
    font-size: 18px;
  }

  .logo img {
    max-width: 65%;
  }

  .bgform {
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --errPopW: 80vw;
  }

  .wrapper {
    padding: 30px 7px 50px;
  }

  .bgform {
    margin: 0px auto;
  }

  .errMain .errText {
    font-size: 15px;
    width: 100%;
  }

  .errMain #submit-error {
    width: 50%;
    font-size: 14px;
  }
}