* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.carousel-container {
    width: calc(100vw - 17px);
    overflow: hidden;
    background-color: #474747;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}
.carousel {
    display: flex;
    gap: 30px;
    min-width: 200%;
}
.carousel img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.imageReg {
    display: none;
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 1300px;
    }
    .imageReg {
        display: inline;
    }
}
.select {
    color: #000 !important;
}
.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.form-check {
    position: relative;
    display: block;
    margin-bottom: .5rem;
    margin-left: 20px;
}




  header {
    width: 100%;
    background: white;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
    z-index: 1000;
  }
  
  header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .error{
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #f00;
    color: #f00;
  }

  .register-error{
    color: #f00;
  }
  
  .result{
    border-radius: 5px;
    padding: 0.5em;
    width: 100%;
    line-height: 23px;
    letter-spacing: 2px;
  }
  
  .success{
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #fff;
    color: #000;
  }

  .h-btn{
    background-color: transparent;
    padding: 0.3em 1em;
    border-radius: 2px;
    border-width: 1px;
    transition: all ease .5s;
  }
  
  .h-btn-primary{
    border: 1px solid #fff;
    color: #fff;
  }
  
  .h-btn-primary:hover{
    border-color: var(--white);
    color: var(--white);
    background-color: rgb(53, 192, 35);
  }