*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

body {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background-color: #ecf0f3;
    color: #a0a5a8;
}

header{
    display: block;
    position: relative;
    height: 84px;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
    background: white;
    padding: 5px 40px 5px 40px;
    border-bottom: 1px solid bisque;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    float: right;
    height: 100%;
    width: 25%;
    color: white;
}


.logo{
    float: left;
    background:url("../img/logo.webp");
    background-position: 50% 40%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 20%;
}

/* LOGIN FORM */

/* Login */

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.container-bg{
  width: 50%;
  min-height: 100vh;
  position: relative;
  float: left;
  background:url('../img/login.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.container-login{
  width: 50%;
  min-height: 100vh;
  position: relative;
  float: right;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.wrap-login100 {
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 80px 30px 80px;
}

.login100-pic {
  width: 316px;
}

.login100-pic img {
  max-width: 100%;
}

.login100-form {
  width: 290px;
}

.register100-form {
  width: 450px;
}

.login100-form-title {
  font-family: Poppins-Bold;
  font-size: 32px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: block;
  padding-bottom: 24px;
}

.login100-form-title::after{
  content:"teste";
  font-size: 2px;
  margin: 5px;
  background-color: #066591;
  color: #066591;
  width: 100%;
  height: 1%;
  display: flex;
}

.wrap-input100 {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  outline: none;
  border: none;
  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 20px;
  padding: 0 20px 0 18px;
  margin:3px;
}

.login-input{
  padding: 0 20px 0px 80px ;
}
 
  .container-login100-form-btn .login{
    padding-top: 5px!important;
  }

  .container-login100-form-btn p{
    font-size: 12px;
  }
  
  .login100-form-btn {
    font-family: Montserrat-Bold;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 60%;
    height: 50px;
    border-radius: 25px;
    background: rgb(14, 6, 88);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: 20px;
  }
  
  .login100-form-btn:hover {
    background: #4f5d75;
  }
  
  
  @media (max-width: 992px) {
    .wrap-login100 {
      padding: 177px 90px 33px 85px;
    }
  
    .login100-pic {
      width: 35%;
    }
  
    .login100-form {
      width: 50%;
    }

    .register100-form{
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .wrap-login100 {
      padding: 100px 80px 33px 80px;
    }
  
    .login100-pic {
      display: none;
    }
  
    .login100-form {
      width: 100%;
    }

    .register100-form{
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .wrap-login100 {
      padding: 100px 15px 33px 15px;
    }
  }
  
  .focus-input100 {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
  }
  
  @-webkit-keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 70px 25px;
      opacity: 0;
    }
  }
  
  @keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 70px 25px;
      opacity: 0;
    }
  }
  
  .symbol-input100 {
    font-size: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666666;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .input100:focus + .focus-input100 + .symbol-input100 {
    color: #2958af;
    padding-left: 28px;
  }
   /* -----------------REQUEST FORM CSS--------------- */

.multi_step_form {
  background: #f6f9fb;
  display: block;
  overflow: hidden;
}
.multi_step_form .msform {
  text-align: center;
  position: relative;
  padding-top: 50px;
  min-height: 820px;
  /* max-width: 810px; */
  margin: 0 auto;
  background: #ffffff;
  z-index: 1;
  overflow: scroll;
  overflow-x: hidden;
}
.multi_step_form .msform .tittle {
  text-align: center;
  padding-bottom: 15px;
}
.multi_step_form .msform .tittle h2 {
  font: 500 24px/35px "Montserrat", sans-serif;
  color: #021988;
}
.multi_step_form .msform .tittle p {
  font: 400 16px/28px "Montserrat", sans-serif;
  color: #5f6771;
}
.multi_step_form .msform {
  border: 0;
  padding: 20px 80px 0;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
}
.multi_step_form .msform fieldset:not(:first-of-type) {
  display: none;
}
.multi_step_form .msform h3 {
  font: 500 18px/35px "Montserrat", sans-serif;
  color: #021988;
}
.multi_step_form .msform h6 {
  font: 400 15px/28px "Montserrat", sans-serif;
  color: #5f6771;
  padding-bottom: 30px;
}

.multi_step_form .msform .row{
  margin-top:20px;
  text-align: left;
}

.multi_step_form .msform label {
  color: #211F40;
  font-size: 14px;
  line-height: 1.8em;
}

.multi_step_form .msform input{
  color: #211F40;
  font-size: 14px;
  line-height: 1.8em;
}

.multi_step_form .msform input::-webkit-input-placeholder {
  color: #211F40;
  font-size: 14px;
  line-height: 1.8em;
}


.multi_step_form .msform .intl-tel-input {
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}
.multi_step_form .msform .intl-tel-input .flag-container .selected-flag {
  padding: 0 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 65px;
}
.multi_step_form .msform .intl-tel-input .flag-container .selected-flag .iti-arrow {
  border: 0;
}
.multi_step_form .msform .intl-tel-input .flag-container .selected-flag .iti-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  font: normal normal normal 24px/7px Ionicons;
  color: #5f6771;
}
.multi_step_form .msform #phone {
  padding-left: 80px;
}
.multi_step_form .msform .form-group {
  padding: 0 10px;
}
.multi_step_form .msform .fg_2,
.multi_step_form .msform .fg_3 {
  padding-top: 10px;
  display: block;
  overflow: hidden;
}
.multi_step_form .msform .fg_3 {
  padding-bottom: 70px;
}
.multi_step_form .msform .form-control,
.multi_step_form .msform .product_select {
  border-radius: 3px;
  border: 1px solid #d8e1e7;
  padding: 0 20px;
  height: auto;
  font: 400 15px/48px "Montserrat", sans-serif;
  color: #5f6771;
  box-shadow: none;
  outline: none;
  width: 100%;
}
.multi_step_form .msform .form-control.placeholder,
.multi_step_form .msform .product_select.placeholder {
  color: #5f6771;
}
.multi_step_form .msform .form-control:-moz-placeholder,
.multi_step_form .msform .product_select:-moz-placeholder {
  color: #5f6771;
}
.multi_step_form .msform .form-control::-moz-placeholder,
.multi_step_form .msform .product_select::-moz-placeholder {
  color: #5f6771;
}
.multi_step_form .msform .form-control::-webkit-input-placeholder,
.multi_step_form .msform .product_select::-webkit-input-placeholder {
  color: #5f6771;
}
.multi_step_form .msform .form-control:hover, .multi_step_form .msform .form-control:focus,
.multi_step_form .msform .product_select:hover,
.multi_step_form .msform .product_select:focus {
  border-color: #021988;
}
.multi_step_form .msform .form-control:focus.placeholder,
.multi_step_form .msform .product_select:focus.placeholder {
  color: transparent;
}
.multi_step_form .msform .form-control:focus:-moz-placeholder,
.multi_step_form .msform .product_select:focus:-moz-placeholder {
  color: transparent;
}
.multi_step_form .msform .form-control:focus::-moz-placeholder,
.multi_step_form .msform .product_select:focus::-moz-placeholder {
  color: transparent;
}
.multi_step_form .msform .form-control:focus::-webkit-input-placeholder,
.multi_step_form .msform .product_select:focus::-webkit-input-placeholder {
  color: transparent;
}
.multi_step_form .msform .product_select:after {
  display: none;
}
.multi_step_form .msform .product_select:before {
  
  position: absolute;
  top: 0;
  right: 20px;
  font: normal normal normal 24px/48px Ionicons;
  color: #5f6771;
}
.multi_step_form .msform .product_select .list {
  width: 100%;
}
.multi_step_form .msform .done_text {
  padding-top: 40px;
}
.multi_step_form .msform .done_text .don_icon {
  height: 36px;
  width: 36px;
  line-height: 36px;
  font-size: 22px;
  margin-bottom: 10px;
  background: #021988;
  display: inline-block;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
}
.multi_step_form .msform .done_text h6 {
  line-height: 23px;
}
.multi_step_form .msform .code_group {
  margin-bottom: 60px;
}
.multi_step_form .msform .code_group .form-control {
  border: 0;
  border-bottom: 1px solid #a1a7ac;
  border-radius: 0;
  display: inline-block;
  width: 30px;
  font-size: 30px;
  color: #5f6771;
  padding: 0;
  margin-right: 7px;
  text-align: center;
  line-height: 1;
}
.multi_step_form .msform .passport {
  margin-top: -10px;
  padding-bottom: 30px;
  position: relative;
}
.multi_step_form .msform .passport .don_icon {
  height: 36px;
  width: 36px;
  line-height: 36px;
  font-size: 22px;
  position: absolute;
  top: 4px;
  right: 0;
  background: #021988;
  display: inline-block;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
}
.multi_step_form .msform .passport h4 {
  font: 500 15px/23px "Montserrat", sans-serif;
  color: #5f6771;
  padding: 0;
}
.multi_step_form .msform .input-group {
  padding-bottom: 40px;
}
.multi_step_form .msform .input-group .custom-file {
  width: 100%;
  height: auto;
}
.multi_step_form .msform .input-group .custom-file .custom-file-label {
  width: 168px;
  border-radius: 5px;
  cursor: pointer;
  font: 700 14px/40px "Montserrat", sans-serif;
  border: 1px solid #99a2a8;
  text-align: center;
  transition: all 300ms linear 0s;
  color: #5f6771;
}
.multi_step_form .msform .input-group .custom-file .custom-file-label i {
  font-size: 20px;
  padding-right: 10px;
}
.multi_step_form .msform .input-group .custom-file .custom-file-label:hover, .multi_step_form .msform .input-group .custom-file .custom-file-label:focus {
  background: #021988;
  border-color: #021988;
  color: #fff;
}
.multi_step_form .msform .input-group .custom-file input {
  display: none;
}
.multi_step_form .msform .file_added {
  text-align: left;
  padding-left: 190px;
  padding-bottom: 60px;
}
.multi_step_form .msform .file_added li {
  font: 400 15px/28px "Montserrat", sans-serif;
  color: #5f6771;
}
.multi_step_form .msform .file_added li a {
  color: #021988;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
.multi_step_form .msform .file_added li a i {
  font-size: 22px;
  padding-right: 8px;
  position: absolute;
  left: 0;
  transform: rotate(20deg);
}
.multi_step_form .msform #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
}
.multi_step_form .msform #progressbar li {
  list-style-type: none;
  color: #99a2a8;
  font-size: 9px;
  width: calc(100% / 3);
  float: left;
  position: relative;
  font: 500 13px/1 "Montserrat", sans-serif;
}

.multi_step_form .msform #progressbar li:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 17px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  background: #eaf0f4;
  border-radius: 50%;
  margin: 0 auto 10px auto;
}
.multi_step_form .msform #progressbar li:after {
  content: "";
  width: 100%;
  height: 10px;
  background: #eaf0f4;
  position: absolute;
  left: -50%;
  top: 21px;
  z-index: -1;
}
.multi_step_form .msform #progressbar li:last-child:after {
  width: 150%;
}
.multi_step_form .msform #progressbar li.active {
  color: #021988;
}
.multi_step_form .msform #progressbar li.active:before, .multi_step_form .msform #progressbar li.active:after {
  background: #021988;
  color: #D3B574;
}
.multi_step_form .msform .action-button {
  background: #021988;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  min-width: 130px;
  font: 700 14px/40px "Montserrat", sans-serif;
  border: 1px solid #021988;
  margin: 40px 5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px 5px;
}
.multi_step_form .msform .action-button:hover, .multi_step_form .msform .action-button:focus {
  background: #405867;
  border-color: #405867;
}
.multi_step_form .msform .previous_button {
  background: transparent;
  color: #99a2a8;
  border-color: #99a2a8;
  margin-top:40px;
}
.multi_step_form .msform .previous_button:hover, .multi_step_form .msform .previous_button:focus {
  background: #405867;
  border-color: #405867;
  color: #fff;
}


.result-message {
  line-height: 22px;
  font-size: 16px;
}

.result-message a {
  color: rgb(89, 111, 214);
  font-weight: 600;
  text-decoration: none;
}

.hidden {
  display: none;
}

#card-error {
  color: rgb(105, 115, 134);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}

#card-element {
  border-radius: 4px 4px 0 0 ;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  width: 100%;
  background: white;
}

#payment-request-button {
  margin-bottom: 32px;
}


/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

hr.dashed {
  border-top: 2px dotted #021988;
}

.icon{
  border-radius:200px; height:200px; width:200px; background: #F8FAF5; margin:0 auto
}

i {
  color: #9ABC66;
  font-size: 100px;
  line-height: 200px;
  margin-left:-15px;
  justify-content: center;
  display: flex;
}
.card {
  background: white;
  padding: 60px;
  border-radius: 4px;
  box-shadow: 0 2px 3px #C8D0D8;
  display: inline-block;
  margin: 0 auto;
  align-items: center;
  width: 35%;
  margin-top: 50px;
}

button a{
  color: white;
  text-decoration: none;
  font: 500 15px/23px "Montserrat", sans-serif;
}

button a:hover{
  color: white;
  text-decoration: none;
}

.description-sucess{
  text-align: center;
  font: 500 15px/23px "Montserrat", sans-serif;
}

/* SEARCH FORM -------- */

.box-main{
  height: 100%;
  width: 100%;
  top:30px;
  position: relative;
  display: flex;
  justify-content: center;
  font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.box-details{
  position: absolute;
  display: flex;
  width: 65%;
  /* top:90px; */
  /* left: 15%; */
  border-radius: 20px;
  background: #f9fafc;
  border:2px solid #4f5d75;
  margin: 10px;
  }

.btn-box{
  width: 10%;
}

.header-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 20%;
}

.header{
  color: white;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  width: 100%;
  height: 7%;
  display: flex;
  padding:10px 0 0 10px;
  align-items: center;
  justify-content: center;
  background: #f9fafc;
  border-bottom: 1px solid #e4e5e7;
  color: #656565;   
}

.header h3{
  font-size: 25px;
}

.form-layout{
  width: 100%;
  display: flex;
  height: auto;
  background-color: white;
}
.company-form{
  display: grid;
  width: 100%;
  height: auto;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  grid-column-gap: 30px;
  grid-template-columns: auto auto;
  padding:20px 45px 45px 45px;
  box-shadow:12px 12px 16px 0 rgba(29, 23, 68, 0.25),-8px -8px 12px 0 rgba(255, 255, 255, 0.3);
  color: #01022e;
  font-size: 15px;
  background-color: white;
}

.no-shadow{
box-shadow: none;
}

.company-form input{
  border: 1px solid #bfcbd9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #494949;
  font-size: 14px;
  -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  line-height: 1;
  height: 36px;
  padding-top: 5px;
  padding-left: 10px;
  border-radius: 4px;
}

.company-form input:focus{
  /* border: 2px solid rgb(9, 177, 219); */
  border-radius: 4px;
  outline: none;
}

.company-form select {
border: 1px solid #bfcbd9;
-webkit-box-shadow: none;
box-shadow: none;
color: #494949;
font-size: 14px;
-webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
transition: border-color .2s cubic-bezier(.645,.045,.355,1);
line-height: 1;
height: 36px;
padding-top: 5px;
padding-left: 10px;
border-radius: 4px;
}

.input-long{
 width: 100%;
 background-color: transparent;
}

.input-medium{
 width:80%;
 background-color: transparent;
}

.wrapper-label{
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

.wrapper-label span{
  padding-bottom: 5px;
  font-size: 13px;
}


#second_row{
  grid-row: 2/3;
  grid-column: 1/3;
}

#third_row{
  grid-row: 3/4;
  grid-column: 1/3;
}

#four_row{
  grid-column: 1/3;
}

.container-login100-form-btn{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  grid-column: 1/3;
  grid-row: 8/9;
  flex-wrap: wrap;
}

.registo-form-btn {
  text-transform: uppercase;
  outline-offset: 0;
  letter-spacing: 2px;
  border: 1px solid transparent;
  transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out;
  color: #fff;
  background-color: #03a9f4;
  width: 17%;
  height: 50px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 10px;
}

.login100-form-btn:hover{
  background-color: #4f5d75;
}

.guest-btn{
  background-color: white;
  border:none;
}

.nav-header{
  background-color: white;
    color: #021988;
    border: none;
    text-decoration: auto;
}

/* ---- Search Form ----- */


.search {
  position: absolute;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  top: 0;
  bottom:0;
  right: 5%;
  width: 40px;
  height: 40px;
  background: rgb(24, 39, 77);
  border-radius: 50%;
  transition: all 1s;
  z-index: 1;
  box-shadow: 0 0 25px 0 rgba(255, 254, 254, 0.973);
  opacity: 1;
  
}
.search:hover {
    cursor: pointer;
}


.log-user{
  left: 94%;
  top: 25%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 50%;
  width: 5%;
}



.search-form{
position: relative;
display: flex;
top: 80px;
left: 85px;
width: 400px;
height: 50px;
overflow: hidden;
box-sizing: border-box;
border-radius: 35px;
}

.search-form input{
background-color: transparent;
position: absolute;
width: 390px;
height: 42px;
top: 4px;
left:3px;
padding-left: 15px;
font-family: 'Varela Round', sans-serif;
font-size: 20px;
box-sizing: border-box;
border-radius: 35px;
color:rgb(5, 5, 82);
animation: fill 2s ease forwards 1.8s;
}

.search-form input:focus{
outline: transparent;
}

#search-icon{
position: absolute;
left: 89%;
}

#search-svg {
stroke-dasharray: 1215;
stroke-dashoffset: 1215;
animation: dash 3s ease forwards;
}


.search:hover{
  background-color: lightblue;
}

/* RESULTADOS DA PESQUISA */

.search-result{
position: relative;
background-color:transparent;
height: 500px;
overflow:scroll;
width: 90%;
top: 100px;
left: 90px;
border-radius: 20px;
box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
animation: fadein 1s ease-out forwards;
}

.search-table{
position: relative;
width: 100%;
display: table;
border-collapse: collapse;
}

.table-header{
background-color: rgb(250, 245, 245);
color: rgb(17, 26, 49);
font-weight: bold;
border-bottom: 2px solid rgb(42, 105, 177);
border-radius: 10px;
font-family: 'Varela Round', sans-serif;
font-size: 14px;
}

tr{
background-color: white;
justify-content: space-evenly;
align-items: center;
height: 60px;
border-bottom: 1px solid rgb(177, 175, 174);
} 

tr:hover{
background-color:rgb(194, 212, 223);
}

tr:nth-child(odd) {
background-color: rgb(247, 247, 247);
}

tr td{
  color: black;
}

tr td button{
  border:none;
  background-color: transparent;
}

.collumn1{
padding-left: 15px;
}

/* .collumn3{
width: 150px;
} */

.collumn8{
align-items: center;
justify-content: space-between;
}

.icon-action{
  cursor: pointer;
  background-color: transparent;
  font-size: 1.6em;
  color: rgb(42, 105, 177);
}

.icon-action:active{
  border:none;
}

.icon-action:hover{
  color: darkblue;
  
}

/*--CLIENT MODAL--*/

.clientmodal label{
  color: #211F40;
  font-size: 14px;
  line-height: 1.8em;
  padding-top:10px;
}

.btn-clientmodal{
  background: #021988 !important;
  color: white !important;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  min-width: 130px;
  font: 700 14px/40px "Montserrat", sans-serif;
  border: 1px solid #021988 !important;
  margin: 40px 5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px 5px;
}



@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) {
  .container-bg{
    width: 0%;
  }
  .container-login{
    width: 100%;
  }
  .wrap-login100{
    padding-top: 10px;
  }
  .logo{
    width: 50%;
  }

  .multi_step_form .msform{
    padding: 20px 10px;
  }

  .card{
    width: 90%;
  }

  form {
    width: 80vw;
  }

  #form-test{
    height: 50px;
  }
}

