
.cstm-steper.stepper.stepper-pills .stepper-item .stepper-label .stepper-title {
    font-size: 12px;
}

.cstm-steper.stepper.stepper-pills .stepper-item {
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 30px;
    padding-right: 30px;
    /* width: 24.3%; */
}

.cstm-steper.stepper.stepper-pills .stepper-item::before {
    background-color: #B5B5C3;
    width: 100%;
    height: 4px;
    border-bottom: 10px;
    content: "";
    position: absolute;
    bottom: 0;
    border-radius: 10px;
    left: 0;
}

.cstm-steper.stepper.stepper-pills .stepper-item.completed::before {
    background-color: #20A1DE;
}
.stepper.stepper-pills .stepper-item.current .stepper-icon {
    background-color:#1b84ff;
}




.license-form-outer .form-control {
    border: 1px solid #D9D9D9;
    font-size: 12px;
    background-color: #fff;
    border-radius: 10px;
}

.license-form-outer textarea.form-control {
    height: 150px;
    resize: none;
}

.cstm-radio {
    display: inline-block;
    margin-right: 30px;
}


.form-check-label {
    color: #696a6b;
    font-weight: 500;
    font-size: 14px;
}

.form-check-input {
    border-color: #B5B5C3 !important;
}
.form-check-input[type=checkbox] {
    border-radius: .45em;
}
.form-check-input {
    --bs-form-check-bg: transparent;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: -.125rem;
    vertical-align: top;
    appearance: none;
    background-color: #00000000;
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #dbdfe9;
    print-color-adjust: exact;
}
.form-check .form-check-input {
    float: left;
    margin-left: -2.25rem;
}


.calender-header {
    margin: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  .event-calenter .header-display {
    display: flex;
    align-items: center;
  }
  
  .event-calenter .header-display p {
    color: #49addb;
    margin: 5px;
    font-size: 1.2rem;
    word-spacing: 0.5rem;
  }
  
  .event-calenter  pre {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
  }
  .event-calenter  .week{
    color:#3f3f3f ;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .event-calenter  .days,
  .event-calenter  .week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: auto;
    padding: 0 20px;
    justify-content: space-between;
  }
  .event-calenter  .week div,
  .event-calenter  .days div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 2.5em;
    border-radius: 100%;
    font-size: 14px;
  }
  .event-calenter  .days div:hover {
    background: #49addb;
    cursor: pointer;
  }
  .event-calenter   .week div {
    opacity: 0.5;
  }
  .event-calenter .current-date {
    background-color:#1be290;
    color: #fff;
  }
 .display-selected {
    margin-bottom: 10px;
    padding: 20px 20px;
    text-align: left;
  }
  .event-calenter{
    background-color: #effaff;
    border: 1px solid #eee;
    border-radius: 10px;
  }

  
/***** Global Slide *****/
.slide-right, .slide-left {
  width: 100%;
}



/***** Slide Right *****/
.slide-right {
  animation: 2s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}

/***** Slide Left *****/
.slide-left {
  animation: 2s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}

/***** FadeIn Underline *****/
.line {
  width: 100%;
  margin: auto;
}
.fade-in {
  animation: fadeIn ease 4s;
}
@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}



/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  overflow: hidden;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #20A1DE;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}


.timeline{
  counter-reset: test 0;
  position: relative;
  width: 100%;
  text-align: center;
}

.timeline li{
  list-style: none;
  min-width: 100px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  float: left;
  padding:0 10px;
  width: 23%;
}

.timeline.box-3 li{
  width: 33%;
}
.timeline.box-5 li{
  width: 19%;
}


.timeline li:before{
  counter-increment: test;
  content: counter(test);
  width: 50px;
  height: 50px;
  border: 3px solid #eee;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 50px;
  margin: 0 auto 10px auto;
  background: #fff;
  color: #000;
  transition: all ease-in-out .3s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.timeline li:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color:#eee;
  top: 25px;
  left: -50%;
  z-index: 0;
  transition: all ease-in-out .3s;
}

.timeline li:first-child:after{
  content: none;
}
.timeline li.active-tl{
  color: #555555;
}
.timeline li.active-tl:before{
  background: #4caf50;
  color: #F1F1F1;
}

.timeline li.active-tl:after{
  background: #4caf50;
}

  @media screen and (max-width:992px){
    .event-calenter  .week div, .event-calenter  .days div {
      height: 2rem;
      width: 2em;
   
  } 
  }