/**************************************
             GENERIC FORM
 *************************************/
.form-container,
.form-container-select,
.form-container-date,
.form-container-time,
.form-container-email
{
  width: 100%;
  border: 0;
  position:relative;
  height: auto;
  text-align: left;
  padding-bottom: 10px;
  margin: 0;
  overflow: hidden;
}

.form-container label,
.form-container-select label,
.form-container-time label,
.form-container-email label {
  position: absolute;
  background: none;
  font-size: 11px;
  color: #8b8b8b;
  top: 3px;
  left: auto;
  right: 6px;
  transition: all ease-in-out 0.3s;
  font-weight: normal;
  text-transform: uppercase;
  z-index: 1;
}

.form-container-time label,
.form-container-date label {
  position: absolute;
  background: none;
  font-size: 11px;
  color: #8b8b8b;
  top: 3px;
  left: auto;
  right: 55px;
  transition: all ease-in-out 0.3s;
  font-weight: normal;
  text-transform: uppercase;
  z-index: 1;
}

.form-container label span,
.form-container-select label span,
.form-container-date label span,
.form-container-time label span,
.form-container-email label span {
  color: var(--yellow-color) !important;
  margin-left: 3px !important;
}

input, select, textarea {
  -webkit-appearance: none;
  position: relative !important;
}

input:read-only,
textarea:read-only {
  opacity: 0.8;
}
select{
  cursor: pointer;
}

textarea {
  min-height: 200px;
}


.form {
  font-family: Ubuntu-Bold, serif;
  width: 100%;
  margin: 0;
  background-color: var(--bg-field-color);
  border: 0;
  padding: 10px;
  border-radius: 3px;
  font-size: 12pt;
  color: var(--text-color);
  transition: all ease-in-out 0.2s;
  -webkit-appearance: none;
  height: 50px;;
}


.form::placeholder{
  font-family: Ubuntu-Regular, serif !important;
  font-size: 14px;
  font-style: italic;
  color: var(--text-grey-color) !important;
}

.form-title-separator {
  font-family: Ubuntu-Bold, serif !important;
  font-size: 11pt !important;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 0;
  border: 0;
  padding: 10px 0;
}



.form-container-date i,
.form-container-time i,
.form-container-email i {
  z-index: 3;
}


.form-container-select
{
  cursor: pointer;
}

.form-container-select .arrow
{
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
  display: inline-block;
  z-index: 1;
}


.register .form-container .selectBox,
.selectBox {
  position: absolute;
  width: 100%;
  background-color: var(--bg-first-color);
  z-index: 99;
  box-shadow: 0 6px 11px -4px rgba(0, 0, 0, 0.88);
  padding-bottom: 25px;
  border-radius: 3px;
  cursor: pointer;
}

.selectBox .listItemContainer {
  max-height: 180px;
  overflow-y: auto;
  padding-bottom: 10px;
}

.selectBox .countContainer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  text-align: right;
  border-radius: 0 0 3px 3px;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: flex-end;
  padding: 10px 5px;
  color: #fff;
}

.selectBox .countContainer span{
  display: inline-block;
  color: #fff;
  font-size: 9px;
  padding: 3px 5px;
}

.selectBox .selectItem {
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 40px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Ubuntu-Regular',serif;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color)
}

.selectBox .selectItem:last-of-type {
  border-bottom: 0;
}

.selectBox .selectItem i {
  text-align: center;
  position: relative;
  top: auto;
  transform: none;
  right: auto;
  padding: 0 5px;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.selectBox .selectItem span {
  padding-left: 10px;
}

.selectBox .selectItem:hover {
  background-color: var(--bg-second-color);
}


.error-form
{
  font-family: Ubuntu-Bold, serif;
  min-width: 100%;
  font-size: 10px;
  bottom: 0;
  color: #fff;
  background-color: #c9b809;
  border-radius: 0 0 3px 3px;
  position: relative;
  display: inline-flex;
  top: -3px;
  padding: 8px;
  z-index: 5;
}

.error-form-light {
  font-family: Ubuntu-Bold, serif;
  font-size: 10px;
  bottom: 0;
  color: #c9b809;
  position: relative;
  display: inline-flex;
  padding: 8px;
  z-index: 0;
}

.selected
{
  padding: 0;
  font-size: 9px;
  color: #969696;
  position: absolute;
  top: 4px;
  left: 4px;
}

.action-container {
  position: relative;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.action-container.action-container-one-child {
  justify-content: flex-end;
}



.form-small { min-height: 100px;}
.form-medium { min-height: 300px;}
.form-large { min-height: 500px;}

.form-message-container {
  color: #fff;
  padding: 0 0 40px;
}

.form-message-container span{
  font-size: 19px;
  display: block;
}

.form-message-container span:last-of-type{
  font-size: 22px;
  padding-top: 8px;
  font-family: Ubuntu-bold,serif;
}

/**************************************
             FORM CONNECTION
 *************************************/

.register .form-container
{
  width: 100%;
  border: 0;
  position:relative;
  height: auto;
  text-align: left;
  padding-bottom: 10px;
  margin: 0;
}

.register input
{
  -webkit-appearance: none;

}


.register .form-title-separator {
  font-family: Ubuntu-Bold, serif !important;
  font-size: 11pt !important;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  padding: 30px 0;
}

.register textarea:focus,
.register input:focus
{
  outline: none;
}

.register input:read-only {
   filter: grayscale(1);
}

.register .form
{
  font-family: Ubuntu-Bold, serif;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border: 0;
  padding: 10px;
  border-radius: 3px;
  font-size: 12pt;
  color: #333;
  transition: all ease-in-out 0.2s;
  -webkit-appearance: none;
  height: 50px;
}

.register .action-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.register .action-container.action-container-one-child {
  justify-content: flex-end;
}

.register .error-form
{
  margin: 0;
  color: #fff;
  font-weight: bold;
  background-color: #c9b809;
  border-radius: 0 0 3px 3px;
  position: relative;
  display: inline-flex;
  top: -3px;
  padding: 8px;
  z-index: 0;
}




.register .form-container-date label
{
  position: absolute;
  background: none;
  font-size: 11px;
  color: #8b8b8b;
  top: 3px;
  left: auto;
  right: 55px;
  transition: all ease-in-out 0.3s;
  font-weight: normal;
}

.register .selected
{
  padding: 0;
  font-size: 9px;
  color: #969696;
  position: absolute;
  top: 4px;
  left: 4px;
}

.label-right-space {
  right: 50px !important;
}

/***************************************************
                ERROR ET STATUS
***************************************************/
.validation-password-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 3px 3px 20px;
}

.validation-password-container span{
  margin: 3px;
  font-size: 10px;
  text-transform: uppercase;
  position: relative;
  color: #fff
}

.validation-password-container span{
  margin: 3px;
  font-size: 10px;
  text-transform: uppercase;
  position: relative;
  color: #fff
}

.validation-password-container span span{
  position: absolute;
  height: 5px;
  width: 41px;
  bottom: -20px;
  left: 50%;
  background-color: #ccc;
  border-radius: 20px;
  transform: translateX(-50%);
}

.validation-password-container span b{
  font-size: 16px;
  font-family: 'bebas neue',sans-serif;
  font-weight: 600;
  color: #fff
}

.noValue {
  color: #ccc;
  font-size: 10px !important;
}

.acceptValue {
  color: #55d03f;
  font-size: 10px !important;
}

.errorValue {
  color: #e34343;
  font-size: 10px !important;
}

/***************************************************
                NOTIFICATION
***************************************************/
.notification-infos {
  background-color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  margin: 3px;
  padding: 10px;
}

.notification-infos .step-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px;
}

.notification-infos .step-numbers {
  background-color: #e6e6e6;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-right: 5px;
}

@media screen and (max-height: 900px) {
  .register .action-container {
    position: relative !important;
    padding: 20px 0 !important;
  }
}

@media screen and (max-width: 1044px) {
  .register .action-container {
    position: relative !important;
    padding: 20px 0 !important;
  }

  .form {font-size: 9pt;}
  .form-title-separator {font-size: 9pt !important;}
}


@media screen and (max-width: 600px) {
  .register .action-container {
    position: relative !important;
    padding: 20px 0 !important;
  }


  .validation-password-container span {
    font-size: 7px;
  }

  .validation-password-container span b {
    font-size: 12px;
  }

  .form {
    height: 40px;
  }

  .form-container label,
  .form-container-select label,
  .form-container-time label,
  .form-container-email label {
    font-size: 8px;
  }

  .form-container-time label,
  .form-container-date label {
    font-size: 8px;
  }

}


