
option {
    font-size: 14px;
}

body::-webkit-scrollbar {
  display: none;
}

input.not-interact, textarea.not-interact {
  border: none;
  font-size: 16px;
  font-weight: 300;
  color: #1D2349;
  width: 100%;
  cursor: default;
  resize: none;
}

input.not-interact:focus-visible {
  border: none;
}

input.not-interact-title {
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #1D2349;
  min-width: 75%;
  cursor: default;
}

.unaligned-input {
  padding-left: 1rem;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.hide {
  display: None;
}

.mobile-dark-background {
    background-color: #0045a5;
    width:100%;
    min-height: 100vh;
    height: fit-content;
}

.mobile-light-background {
    background-color: white;
    width:100%;
    min-height: 100vh;
    height: fit-content;
}

.white-text {
    color:white;
}

.dark-text {
    color:#1D2349;
}

.dark-input, .dark-input:focus {
    background-color: #012860;
    color:white;
    font-weight: 300;
    border-width:0;
}

light-input, light-input:focus {
    border-width:1px;
    background-color: transparent;
    font-weight: 300;
    color:#1D2349;
}

.dark-input::placeholder{
    color:white;
    opacity: 0.8;
}

.responsive-btn {
  width: 100%;
}

.main-btn-dokit, .main-inline-btn-dokit {
    color: white;
    background-color: #0045a5;
    width: 100%;
}

.btn.main-btn-dokit:hover, .btn.main-inline-btn-dokit:hover {
  color: white;
  background-color: #0050c0;
  width: 100%;
}

.main-dark-btn-dokit, .main-dark-inline-btn-dokit {
    color: white !important;
    background-color: #1D2349 !important;
    width: 100%;
    box-shadow: .3rem .3rem .6rem 0 rgba(0,0,0,.32);
}

.main-light-btn-dokit:hover, .main-light-btn-dokit:hover {
    color: white;
    background-color: #1D2349;
}

.modal-dialog {
  color:#1D2349;
}

.modal-footer>.add-modal-button {
  color: white;
  background-color: #016D01;
  font-weight: 500;
  border: none;
}

.small-img {
  display: block;
}

.large-img {
  display: none;
}

@media (min-width: 576px) {
    .mobile-dark-background, .mobile-light-background {
      background-color: transparent;
      height: fit-content;
      /* min-height: 100vh; */
    }

    .white-text {
      color:#1D2349;
    }

    .dark-input {
      border-width:1px;
      background-color: transparent;
      font-weight: 300;
      color:#1D2349;
    }

    .dark-input::placeholder{
      color:#1D2349;
      font-weight: 300;
    }

    .dark-input:focus {
      background-color: transparent;
      font-weight: 400;
      color:#1D2349;
    }

    .responsive-btn {
      max-width: fit-content;
    }

    .main-inline-btn-dokit {
      background-color: #0045a5;
      border-color:transparent;
      box-shadow: none;
      max-width: fit-content;
      color:white;
      margin-left: 1em;
    }

    .main-btn-dokit {
      background-color: #0045a5;
      border-color:transparent;
      box-shadow: none;
      max-width: fit-content;
      color:white;
    }

    .main-dark-inline-btn-dokit, .main-dark-btn-dokit{
      max-width: fit-content;
      float: inline-end;
    }

    .side-col {
      margin-left: 2em;
    }

    .modal-dialog, .modal-content {
      max-width:94vw;
      min-width: fit-content;
    }

    .unaligned-input {
      margin-top: 1rem;
      padding-top: 1rem;
    }

    option {
      font-size: 1em;
  }

  .large-img {
    display: block;
  }

  .small-img {
    display:none;
  }

 }

@media (min-width: 900px) {
  .modal-dialog, .modal-content {
    max-width: 800px;
  }
}

 .stepper-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }

  .step-name {
    font-weight: 500;
  }

/* stepper */
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #e5e5e5;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #e5e5e5;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 6px;
  }

  .step-counter.inactive {
    background-color: #e5e5e5;
    color: white;
    width: 40px;
    height: 40px;
  }
  
  .step-counter.active {
    font-weight: bold;
    background-color: #1D2349;
    color: white;
    opacity: 1;
    width: 40px;
    height: 40px;
  }
  
  .stepper-item.completed .step-counter {
    background-color: #84e1c9;
    color: #1D2349;
    font-weight: 800;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #84e1c9;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }




 .footer {
    width: 100%;
    height:fit-content;
    color: white;
    background-color: #1D2349;
    position:static;
 }

 .date-input {
    min-width: 75px;
    max-width: 100px;
 }

 .date-container {
  max-width: 350px;
 }

.hidden-inputs {
  width: 100%;
}

