/* Verify Sales Rep */
.page-section.verify-sales-rep {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  background-color: #000;
}

.page-section.verify-sales-rep strong {
  text-transform: none !important;
  text-decoration: none !important;
}

.page-section.verify-sales-rep::before,
.page-section.verify-sales-rep::after {
  z-index: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-section.verify-sales-rep::before {
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;

  width: auto;
  height: auto;

  background: url('../../img/verify-sales-rep.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  filter: blur(4px);
}
@media (max-width: 568px) {
  .page-section.verify-sales-rep::before {
    background: url('../../img/verify-sales-rep-mobile.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
}

.page-section.verify-sales-rep::after {
  background: #000;
  opacity: .6;
}

.page-section.verify-sales-rep .section-content {
  z-index: 1;
  position: relative;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 50px;
}

.page-section.verify-sales-rep .section-header,
.page-section.verify-sales-rep .section-body {
  flex: 1;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.page-section.verify-sales-rep .section-body .results {
  max-height: 0;
  opacity: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: max-height 0.2s, opacity 0.5s;
  -o-transition: max-height 0.2s, opacity 0.5s;
  -webkit-transition: max-height 0.2s, opacity 0.5s;
}
.page-section.verify-sales-rep .section-body .results.expanded {
  max-height: 480px;
  opacity: 1;
}

.page-section.verify-sales-rep .section-header {
  margin: 0;
}

.page-section.verify-sales-rep .section-header .verify-icon-container img {
  display: block;
  width: 100%;
  max-width: 150px;
}

.page-section.verify-sales-rep .section-header h4 {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.page-section.verify-sales-rep .section-header p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.page-section.verify-sales-rep .section-body .input-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  text-align: left;
}

.page-section.verify-sales-rep .section-body .input-container .phone-input {
  display: flex;
  align-items: center;
  justify-content: stretch;

  border: 1px solid #ced4da;
  border-radius: 4px;
  overflow: hidden;
}
.page-section.verify-sales-rep .section-body .input-container .input-prepend {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
  width: 61px;
  background: #EEE;

  color: #333;
  font-size: 14px;
  font-weight: 700;
}
.page-section.verify-sales-rep .section-body .input-container .form-control {
  display: block;
  height: auto;
  margin: 0;
  padding: 20px;

  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.page-section.verify-sales-rep .section-body .input-container .btn {
  position: absolute;
  top: 13px;
  right: 13px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 38px;
  height: 38px;
  border-radius: 100%;
}
.page-section.verify-sales-rep .section-body .input-container .form-label {
  display: block;
  margin-top: 10px;
  color: #FFF;
}

/* Empty results card */
.empty-result-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.empty-result-card strong {
  display: block;
  margin-bottom: 15px;

  color: #333;
  font-size: 18px;
  line-height: 1;
}

.empty-result-card span {
  display: block;
  color: #333;
  font-size: 14px;
}

/* Sales Person card */
.sales-person-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/4;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;

  border-radius: 8px;
  background: #111;
}

.sales-person-card .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.sales-person-card .icon-verify {
  position: absolute;
  z-index: 1;

  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  padding: 10px;
  background: #FFF;
  border-radius: 100%;
}

.sales-person-card .card-content {
  z-index: 1;
  position: relative;
  width: 100%;

  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  text-align: center;
}

.sales-person-card .card-content strong {
  display: block;

  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.sales-person-card .card-content span {
  display: block;

  color: #999;
  font-size: 14px;
  font-weight: 500;
}

/* Loader */
.loader {
  opacity: 0;
  max-height: 0;
  width: 50px;

  transition: opacity 0.5s, max-height 0.2s;
  -o-transition: opacity 0.5s, max-height 0.2s;
  -webkit-transition: opacity 0.5s, max-height 0.2s;
}

.loader.loading {
  opacity: 1;
  max-height: 50px;

  aspect-ratio: 1;
  --_c: no-repeat radial-gradient(farthest-side, #FFF 92%, #0000);
  background:
    var(--_c) top,
    var(--_c) left,
    var(--_c) right,
    var(--_c) bottom;
  background-size: 12px 12px;
  animation: l7 1s infinite;
}

@keyframes l7 {
  to {
    transform: rotate(.5turn)
  }
}