
 



/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: 'Muli', sans-serif;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
 
  .select-selected {
    background-color: #fff;
  }

  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
    color:green;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    padding: 13px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
  }
  
  /*style items (options):*/
  .select-items {
  position: absolute;
  background-color: #ea4335;
  top: 100%;
  background: #fff;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: scroll;
  z-index: 99;
}
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color:#ea4335;
    color:#fff;
  }
  #licenseState {
      max-height:250px;
       overflow:scroll; 
  }

  /* The container */
.checkbox-label {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
  /* Hide the browser's default checkbox */
  .checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}
  
  /* On mouse-over, add a grey background color */
  .checkbox-label:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
.checkbox-label input:checked ~ .checkmark {
    background-color: #3377c0;
}
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-label input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
  .same-as-selected:active {
      color:#fff;

  }
  .same-as-selected:checked {
      color:#fff;
  }
  .same-as-selected:focus {
      color:#fff;
  }
  .alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 13px;
}
.logo {
    width:140px !important;
    margin-left:100px;
}

.steps ul li {
  font-family: muli;
    text-transform: uppercase;
    font-size: 15px;
   
    line-height: 1.5;
    padding: 10px;
}

.content-wrapper{
  width: 100%;
}

.container-right, .container-left {
  margin-top:60px;
  margin-bottom: 100px;
  float:left;
  margin-left:10%;
  position: relative;
}
.container-left{
  width: 80%; 
  background: #fff;
  box-shadow: 0px 3px 9.5px 0.5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 3px 9.5px 0.5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 3px 9.5px 0.5px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 3px 9.5px 0.5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 3px 9.5px 0.5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px; 
}
.container-right{
  width: 35%; 
}

.form-select, .form-date, .form-group{
  float:left;
}
.mar-left-4{
  margin-left:4%;
}
.col-md-6{
  width: 48%;
}
.col-md-12{
  width: 100%;
}

.form-row{
  float:left;
}
@media (max-width:1650px) {
    .container-left {
      width:80%;
      margin-left:10%;
    }
}

@media (max-width:1250px) {
  .container-left {
    width:80%;
    margin-left:10%;
  }
}

@media only screen and (max-width: 770px){
    .container-left {
        width:95%;
        margin-left:2%;
    }

    .signup-form {
        padding: 32px 40px 40px 40px;
    }
}

@media only screen and (max-width: 480px) {

    .col-mob-12{
        width:100%;
    }
}


.messageSuc {
    text-align: center;
    font-size:20px;
}


