@charset "UTF-8";

body {
  font-family: 'Kanit', sans-serif !important;
}

img {
  width: 100%;
}

.bg1 {
  margin: 0;
  padding: 0;
  /* Set the background image and adjust properties */
  background-image: url("../../../images/website/bg01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.logo {
  max-width: 100px;
}

.h1, .h2 {
  color: #0077c1 !important;
  font-weight: bold !important;
}

.btn-primary {
  background-color: #0077c1 !important;
}

.rental-card {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.link-none {
  text-decoration: none;
  color:#fff;
}

.link-as {
  text-decoration: none;
  color: #0077c1;
}

.nav-link {
  font-weight: 300 !important;
  color: #6c757d !important;
  border-bottom: 3px solid transparent !important;
}

.nav-link:hover {
  color: #0077c1 !important;
  border-bottom: 3px solid #0077c1 !important;
}

.outline-secondary {
  border:1px solid #dee2e6;
  border-radius: var(--bs-border-radius);
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .form-select {
  padding: .75rem 2.25rem .75rem .75rem !important;
} */

/* .form-control {
  padding: 0.75rem 0.75rem !important;
} */

.form-check-input:checked {
  background-color: #0077c1 !important;
  border-color: #0077c1 !important;
}

.fs-r {
  font-size : calc(1rem + .25vw) !important;
}

@media screen and (max-width : 991px) {
  .border-summary {
    border-bottom: 1px solid #aeaeae;
  }
}

@media screen and (max-width : 480px) {
  .step-wizard-item{
    min-width: 110px !important;
  }
}

@media screen and (max-width : 350px) {
  .step-wizard-item{
    min-width: 80px !important;
  }
}

@media screen and (min-width : 992px) {
  .border-summary {
    border-right: 1px solid #aeaeae;
  }
  .step-wizard-item{
    min-width: 250px !important;
  }
}

footer {
  color: #fff !important;
}

footer .firsthead {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}
footer .secondhead {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
footer .text {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

footer a:hover {
  opacity: 0.5;
}


.step-wizard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-wizard-list{
  color: #0077c1;
  list-style-type: none;
  display: flex;
  position: relative;
  z-index: 10;
}

.step-wizard-item{
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive:1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 150px;
  position: relative;
}

.step-wizard-item + .step-wizard-item:after{
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  background: #0077c1;
  width: 100%;
  height: 4px;
  transform: translateX(-50%);
  z-index: -10;
}

.current-item ~ .step-wizard-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  background: #aeaeae;
  width: 100%;
  height: 4px;
  transform: translateX(-50%);
  z-index: -9;
}

.progress-count{
  height: 40px;
  width:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index:10;
  color: #fff;
}
.progress-count:after{
  content: "";
  height: 40px;
  width: 40px;
  background: #0077c1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -10;
}

.progress-label{
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
  display: none;
}

.current-item ~ .step-wizard-item .progress-count:after{
  background-color: #aeaeae;
}

.current-item ~ .step-wizard-item .progress-label{
  color:#aeaeae;
  opacity: 0.5;
}
.current-item .progress-count:after{
  background: #0077c1;
}
.current-item .progress-count{
  color: #fff;
}
