@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --theme-color: #37ad6d;
  --lato-font: 'Lato', sans-serif;
  --white-color: #ffffff;
  --theme-second-color:#637e85;
  --gray-color: #e6e7e9;
  --title:#414143;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }

  *:before, *:after {
    box-sizing: border-box;
  }

  body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #f0f1f1;
    height: 100%;
  }

  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
  }

  h1, .h1 {
    font-family: inherit;
    font-size: 2.5em;
  }

  h2, .h2 {
    font-family: inherit;
    font-size: 1.875em;
  }

  h3, .h3 {
    font-family: inherit;
    /* font-size: 1.375em; */
    font-size: 1.275em;
  }

  h4, .h4 {
    font-family: inherit;
    font-size: 1em;
  }

  h5, .h5 {
    font-family: inherit;
    font-size: 1em;
  }

  p, ul, ol, pre, table, blockquote {
    margin-top: 0;
    margin-bottom: 0;
  }

  ul ul, ol ol, ul ol, ol ul {
    margin-top: 0;
    margin-bottom: 0,
  }

  hr, .hr {
    border: 0.0625em solid;
    margin: -0.0625em 0;
  }

  a {
    text-decoration: none;
    outline: none;
    color: #6BAD6B;
    transition: color 0.2s linear;
    -webkit-transition: color 0.2s linear;
  }

  a:hover {
    color: #000;
    text-decoration: none;
  }
  img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    border: none;
  }

  input, select, textarea, button {
    font-family: var(--lato-font);
    font-size: 1em;
    color: #000;
    font-weight: 400;
    outline: none;
  }

  p {
    color: #000000;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 1em;
  }

  iframe {
    max-width: 100%;
    border: none;
  }

  .fl {
    float: left;
  }

  .fr {
    float: right;
  }

  .clr, .cl, .clear {
    clear: both;
  }

  .clearfix:after {
    clear: both;
    display: block;
    visibility: hidden;
    content: "";
  }

  input:focus, textarea:focus, select:focus, button:focus {
    outline: none;
  }

  textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
    border: none;
    background-color: transparent;
    padding: 0 1em;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    color: #939598;
    font-size: 1em;
    outline: none;
    font-weight: 400;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #414042;
    height: 3em;
    line-height: 3em;
  }
.box-content ::placeholder{
   font-style: italic;
}
  ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */

    font-size: 1.25em;
    line-height: 43px;
    color: rgba(147, 149, 152, 0.9);
    font-weight: 400;
    /* font-style: italic; */
    font-family: 'Roboto', sans-serif;
    opacity: 1;
    /* Firefox */
  }

  input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #939598 !important;
  }

  textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus,
  input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
    background-color: transparent;
    outline: none;
  }

  select {
    border: none;
    background: #ffffff;
    padding: 0 1em;
    height: 3em;
    box-shadow: none;
    font-size: 1em;
  }

  input[type="image"], input[type="submit"], input[type="button"], button {
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125em;
    padding: 0 1em;
    height: 3em;
    line-height: normal;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    font-weight: 400;
    text-transform: inherit;
    appearance: normal;
    -webkit-appearance: none;
    outline: none;
    text-align: center;
    position: relative;
  }

  textarea {
    resize: none;
    min-height: 8.84em;
    padding: 0.800em 1.563em;
  }

  .alignleft {
    text-align: left
  }

  .alignright {
    text-align: right
  }

  .aligncenter {
    margin: 0 auto;
    text-align: center;
  }

  input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type=number] {
    -moz-appearance: textfield;
  }

  .container {
    margin: 0 auto;
    padding: 0 3.125em;
    /* max-width: 95.500em; */
    max-width: 1628px;
    width: 100%;
  }

  /* login page */

  .banner {
    position: relative;
  }
  .banner:before {
    content: "";
    display: block;
    background: url("/asset/common/images/banner.jpg");
    background-size: 100%;
    max-height: 30em;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
   .pb-4, .pt-4, .py-4{
    padding: 0 !important;
}
.box-content {
  height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-details {
  padding: 1.2em 2em;
  margin: 0 auto 3em auto;
  max-width: 25em;
  width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #414042;
}
.heading{
  font-size: 1.5em;
  line-height: 43px;
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 0.5em;
}
.sub-heading{
  font-size: 1.35em;
  line-height: 1.5;
  color: #414042;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 1em;
  text-align: center;
  padding-top: 1em;

}

input[type="submit"].green-btn{
  border-radius: 12px;
  background-color: #37ad6d;
  color: #fff;
  padding: 0.75em 2em;
  display: block;
  width: 100%;
  height: auto;
}
input[type="submit"].green-btn:hover{
  background-color: #414042;
}
input[type="button"].black-btn{
  border-radius: 12px;
  background-color: #414042;
  color: #fff;
  padding: 0.75em 2em;
  display: block;
  width: 100%;
  height: auto;
}
input[type="button"].black-btn:hover{
  background-color: #37ad6d;
}
.or-text:before,.or-text:after{
  content: "";
  background: #414042;
  height: 1px;
  width: 70px;
  display: inline-block;
}
.or-text span{
  padding:0 0.75em;
}
.or-text{
  font-size: 1.5em;
  line-height:1.2;
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group {
  margin: 0 0 1.5em 0;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus{
  background-color: transparent;
  outline: none;
  border: 1px solid #414042;
  box-shadow: none;
}
.bottom-footer {
  background-color: #37ad6d;;
  padding: 1em 0;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.bottom-footer-inner{
  position: absolute;
}
.form-control[readonly] {
  background-color: #ffffff;
  opacity: 1;
}
.error {
  color: red;
  font-size: 1.2em;
  padding-top: 0.625em;
}
.invalid-feedback, .error{
  width: 100%;
  display: block;
}
.invalid-feedback {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: static;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  padding: .75rem 1.25rem;
  margin: 0 0 1.5em;
  border: 1px solid transparent;
  border-radius: .25rem;
  font-style: normal;
  font-size: 1rem;
}
.invalid-feedback strong {
  font-weight: 400;
  padding:0;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-top: 10px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.box-content form{
  width: 100%;
}
.forgotten a{
  color: #414042;
  font-size: 1.1em;
  text-align: center;
  display: block;
  text-decoration: underline;
}

/* #myPage {
  margin-left: 20.125em;
} */
.common-box .main-flex {
  display: flex;
  position: relative;
  height: 100%;
}
.sidemenu-data img {
  width: 2em;
  height: auto;
}
.sidemenu-data img, .close-data {
  display: none;
}
.mobile_head, .close-data {
  display: none;
}
.left-part {
  background: #fff;
  width: 22.125em;
  height: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16.5em;
  z-index: 1030;
  overflow: hidden;
  z-index: 9;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.close-data {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 9;
}
.left-part-content {
  margin: 0 auto;
  padding: 0;
  max-width: 150em;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 1em 0.75em;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.logo {
  width: 3.5em;
}

.navigation-data {
  margin-top: 1.5em;
}
.navigation-data ul li {
  list-style: none;
  text-align: left;
}
.navigation-data a.active, .navigation-data a:hover {
  color: #fff;
  padding: 0.3em 0.75em;
  border-radius: 12px;
  background-color: #37ad6d;
}
.navigation-data a {
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
  padding: 0.3em 0.75em;
  text-transform: capitalize;
}
.navigation-data a:before {
  content: "";
  background-size: 1.2em;
  background-repeat: no-repeat;
  background-position: center;
  /* width: 1.2em;
  height: 1.2em; */
  display: block;
  margin-right: 0.65em;
}

.navigation-data .home a:before {
  content: "\f015";
  font-family: FontAwesome;
}
.navigation-data .application a:before {
  content: "\f0c9";
  font-family: FontAwesome;
}
.navigation-data .profile a:before {
  content: "\f007";
  font-family: FontAwesome;
}
.navigation-data .logout a:before {
  content: "\f08b";
  font-family: FontAwesome;
}

/*.navigation-data li.home a:before {
  background-image: url("/asset/common/images/home.png");
}
.navigation-data li.home a.active:before, .navigation-data li.home a:hover:before {
  background-image: url("/asset/common/images/home-active.png");
}
.navigation-data li.application a:before {
  background-image: url("/asset/common/images/myapplication.png");
}
.navigation-data li.application a.active:before, .navigation-data li.application a:hover:before {
  background-image: url("/asset/common/images/myapplication-active.png");
}*/
#myPage {
 padding-left: 16.5em;
  position: relative;
}
.header-white{
  background-color: #fff;
  padding: 1em;
  height: 4em;
}

.app-table{
  font-family: 'Roboto', sans-serif;
  border-collapse: collapse;
  width: 98%;
  margin: 0 auto 2em;
}

.app-table td, .app-table th {
  border: none;
  padding: 8px;
  /* border-bottom: 1px solid #414042; */
  border-bottom: 1px solid lightgray;
}
.app-table td{
  color: #414042;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  padding-left: 0;
  padding-right: 0;
}
.app-table th {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: left;
  background-color: transparent;
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  padding-left: 0;
  padding-right: 0;
}
.login-right-part{
  width: 100%;
  padding: 2em;
}
.top-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f2f2;
  padding: 0.75em 1em;
  /* border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
}
.top-header h3{
  font-size: 1.55em;
  line-height: 1.5;
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
.application-table{
  border-radius: 12px;
  background-color: #fff;
  /* border: 1px solid #414042; */
  padding-bottom: 0.5em;

}
.top-header a{
  border-radius: 12px;
  background-color: #37ad6d;
  color: #fff;
  padding: 0.4em 3em;
}

.box-profile-left {
  background: transparent;
  width: 15%;
}
.box-profile-right {
  display: flex;
  flex-direction: column;
  /* width: 83%; */
  width: 100%;
  border-radius: 12px;
}
.box-data{
  background: #fff;
  padding: 1em;
  border-radius: 12px;
  position: relative;
}
.box-data h3{
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 1.375em;
}
.box-progress{
  margin-bottom: 2em;
}
.box-profile {
  display: flex;
  justify-content: space-between;
}
.tab-content{
  border-radius: 12px;
  background-color: #ffffff;
  padding: 1em;
}
.tab-content h3{
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1em;
}
.ui-tabs-active a {
  background: #ffffff;
  border-radius: 8px;
}
.profile-flex{
  border-radius: 4px;
  background-color: transparent;
  color: #fff;
  padding: 0.5em 0.5em;
  margin-top: 0.5em;
}
.profile-flex a{
  color: #a7a9ac;
  font-weight: 600;
  font-size: 1em;
}
.progress {
  margin:15px auto 15px;
  padding:0;
  width:100%;
  height:30px;
  overflow:hidden;
  background:#bbbdc0;
  border-radius:6px;
}
.bar {
	position:relative;
  float:left;
  /* min-width:1%; */
  height:100%;
  background:#37ad6d;
}
.percent {
	position:absolute;
  top:60%;
  left:50%;
  transform:translate(-50%,-50%);
  margin:0;
  font-family: 'Roboto', sans-serif;
  font-size:1.5em;
  color:white;
  padding: 0;
  font-weight: 600;
}
.box-data h4{
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  /* font-size: 1.35em; */
  font-size: 1.2em;
}

.checkbox-data {
  position: relative;
  display: inline-block;
}
input[type='checkbox'] {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  width: 0.938em;
  height: 0.938em;
  margin: 0;
  margin-right: 0.063em;
  display: block;
  cursor: pointer;
  background:#414042;;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
input[type='checkbox']:checked + span::after {
  content: '\2713';
  color: #fff;
  font-weight: bold;
}
span.checkbox-custom {
  text-align: center;
  line-height: 0.938em;
  height: 0.938em;
  width: 0.938em;
  cursor: pointer;
  font-size: 1.8em;
  -webkit-box-shadow: inset 0 1px 1px #414042, 0 1px 0 var#414042;
  -moz-box-shadow: inset 0 1px 1px #414042, 0 1px 0 #414042;;
  box-shadow: inset 0 1px 1px #414042, 0 1px 0 #414042;
  background: #414042;
  border-radius: 5px;
  display: block;
}
.comlain-verify {
  width: 10%;
}
.checkbox-values ,.radio-values{
  display: flex;
  align-items: center;
  padding: 1em;
}
.checkbox-values .checkbox-name {
  margin-left: 1em;
}
.company-info {
  margin: 0;
  color: #414042;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}
.checkbox-inline,.radio-inline{
  display: inline-flex;
  margin-right: 1.5em;
}
.questions{
  margin-bottom: 1em;
}
.input-data{
  width: 30%;
  padding: 1em 1em;
}
.text-area-input{
  width: 80%;
}
.input-data input,.input-data textarea{
  border-radius: 12px;
  border: 1px solid #939598;
  padding:0.5em 1em;
}
.gray-btn a{
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  border-radius: 12px;
  background-color: #939598;
  padding:0.35em 2.5em;
  display: inline-flex;
  align-items: center;
  margin-right: 1em;
}
.green-btn a{
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  border-radius: 12px;
  background-color: #37ad6d;
  padding:0.35em 2.5em;
  display: inline-flex;
  align-items: center;
}
.buttons{
  position: absolute;
  right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 1.5em;
}
.profile-flex.active{
  background:  #939598;
}
.profile-flex.active a{
  color: #fff;
}
.box-quesrtions{
  padding:2.5em;
  margin-bottom: 2em;
}

[type="radio"]{
  opacity:0;
}
[type="radio"] + label{
  position:relative;
  padding-left:30px;
  cursor:pointer;
  display:inline-block;
  color:#414042;
  line-height:25px;
  /* font-size: 1.25em; */
  font-size: 1.15em;
}

[type="radio"] + label::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:25px;
  height:25px;
  border-radius: 100%;
  border:1px solid #414042;
  background:#fff;

}

[type="radio"]:checked + label::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #414042;
  transform: scale(1);
  opacity: 1;
  transition: all .3s ease;
}

[type="radio"]:not(:checked) + label::after{
  content:"";
  position:absolute;
  left:4px;
  top:4px;
  width:14px;
  height:14px;
  border-radius:100%;
  background:#fff;
  transform:scale(0);
  opacity:0;
}
.input-boxes .input-data {
  width: 30%;
  padding: 0.5em 1em;
}
.input-boxes{
  padding-top: 1em;
}

/* file upload */

.upload-data {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-self: center;
  width: 400px;
}


.file-upload-wrapper {
  color: #4daf7c;
  height: 60px;
  position: relative;
  width: 100%;
}

.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px 15px;
  display: block;
  width: calc(100% - 105px);
  pointer-events: none;
  z-index: 20;
  color: #939598;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #939598;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.file-upload-wrapper:before {
  content: 'Upload';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: auto;
  line-height: 1.2;
  background: #37ad6c;
  color: #fff;
  font-weight: 400;
  z-index: 25;
  font-size: 1em;
  padding: 1em 1.4em;
  text-transform: capitalize;
  pointer-events: none;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
}
.file-upload-field:hover {
  background-color: red;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}
.upload-data{
  width: 40%;
  position: relative;
  margin:1em 1em;
}
.location-box{
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.location-left{
  background: #fff;
  padding: 1em;
  border-radius: 12px;
  width: 49%;
  height: 100%;
}
.location-head{
  font-size: 1.375em;
  line-height: 1.2;
  color: #414042;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
.location-desc{
  color: #414042;
  font-weight: 300;
  font-size: 1.25em;
  margin: 0;
  padding: 0;
}
.location-right{
  display: inline-flex;
  /* align-items: center; */
  background: #fff;
  padding: 1em;
  border-radius: 12px;
  width: 49%;
  justify-content: space-between;
}
.location-img img{
  width: 4.5em;
}

/* start application page */
.banner-start-app img{
  max-height: 30em;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.app-text{
  padding: 5em 20em;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  background: #fff;
}
.app-text-left{
  width: 50%;
}
.app-text-right{
  width: 50%;
  text-align: center;
  padding-top: 5em;
}
.app-text .app-title{
  color: #231f20;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1em;
  font-size: 1.375em;
}
.app-text p{
  font-size: 36px;
  color: #231f20;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.5;
}
.start-app-btn {
  border-radius: 8px;
  background-color: #58595b;
  color: #fff;
  padding: 0.8em 2em;
  font-family: 'Lato', sans-serif;
  text-align: center;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  border:1px solid transparent;
}
.start-app-btn:hover{
  background: transparent;
  border:1px solid #58595b;
  color:#58595b;
}
.nonlogin-header{
  background: #fff;
  padding: 0.5em 0;
}
.profile-page .company-info{
  margin-bottom: 1em;
  font-size: 1.675em;
  font-weight: 400;
}
.profile-page .box-data h4,.payment-page .box-data h4{
  margin-left: 1em;
}
.profile-page .input-data{
  width: 100%;
}
.box-data{
  padding: 2em 1em;
}
.profile-page .green-btn button{
  border-radius: 12px;
  background-color: #37ad6d;
  color: #fff;
  padding: 0.75em 2em;
  display: inline-block;
  height: auto;
  line-height: 1.2em;
  color:#fff;
}
.profile-page .green-btn button:hover{
  background-color: #414042;
}
.profile-page .green-btn{
  text-align: center;
  margin-top: 1em;
}

.green-btn input[type="submit"]{
  color: #ffffff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  border-radius: 12px;
  background-color: #37ad6d;
  padding: 0.4em 2.5em;
  display: inline-flex;
  align-items: center;
  margin-right: 1em;
  height: auto;
}

.phase-completed-right {
    float : right;
    color: #37ad6d;
    font-weight: 400;
}

li.profile-flex.active .phase-completed-right {
    float : right;
    color: #fff;
    font-weight: 400;
}
.box-app-right{
  width: 83%;
}


#documents_dropzone {
    border-radius: 10px !important;
    border: 1px solid #939598 !important;
}
#documents_dropzone .dz-details,#documents_dropzone .dz-progress {
    display: none !important;
}

.payment-page .company-info{
  margin-bottom: 1em;
  font-size: 1.675em;
  font-weight: 400;
}

.payment-page .box-data h2{
  margin-left: 0.6em;
    color: #414042;
    margin-top: 0.25em;
    margin-bottom: 0.5em;
}
#payment-errors.error{
  /* color: #721c24; */
  color: red;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: static;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  padding: .75rem 1.25rem;
  margin: 0 0 1.5em;
  border: 1px solid transparent;
  border-radius: .25rem;
  font-style: normal;
  font-size:1rem;
  font-weight: 400;
}
.field{
  border-radius: 12px;
  border: 1px solid #939598;
  padding: 0.9em 1em;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  color: #939598;
  font-size: 1em;
  outline: none;
  font-weight: 400;
  border-radius: 12px;
  background-color: #ffffff;
  height: 3em;
  line-height: 3em;
}
.ElementsApp input {
  height: 2em !important;
}
.payment-page iframe{
  height: 2.4em !important;
}

.cmn-inner{
  flex:1;
}
.flex-data{
  display: flex;
}
.bottom-btn-admin{
  display:flex;
  justify-content: flex-end;
  text-align:center;
}

.input-data select{
  border-radius: 12px;
  border: 1px solid #939598;
  padding: 0em 1em 0;
  width: 100%;
  color:#939598;
 margin: 0.5em 0;
}
#frmAddApplication .checkbox-values,#frmAddApplication .radio-values {
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
}
input[type=radio], input[type=checkbox]{
  width: auto ;
}
#frmAddApplication .error{
  padding-top: 0;
}

.dz-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
}


/* todo changes front */

::placeholder {
  font-size: 1em;
}
.dropzone .dz-preview .dz-remove {
  text-transform: capitalize;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  color: #414042;
}
#documents_dropzone .dz-details{
  display: block !important;
  opacity:1;
  position: static;
  padding:1em !important;
}
#documents_dropzone .dz-preview .dz-details .dz-size{
  display: none !important;
}
#documents_dropzone .dz-preview .dz-details{
  opacity:1;
}
.common-box.profile-page .main-flex .login-right-part .top-header{
  min-width: unset;
}
#documents_dropzone {
  display: flex;
  flex-wrap: wrap;
}
#documents_dropzone .dz-default.dz-message{
  width: 100%;
}
#documents_dropzone .dz-preview.dz-image-preview .dz-image{
  margin:0 auto;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  height: 100%;
  width: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  color: #37ad6d;
}


/* notification popup design */

.toast.toast-success{
  display: flex;
  align-items: center;
}
#toast-container>div .toast-close-button{
  min-height: 20px;
  height: auto;
}
#toast-container>div {
  padding: 15px 15px 20px 50px
}


div.jqi{
  padding:2em;
}
div.jqi .jqiclose {
position: absolute;
top: 0;
right: 0;
width: 25px;
cursor: default;
color: #bbbbbb;
font-size: 2.5em;
font-weight: bold;
}
div.jqi .jqistate {
  background-color: #fff;
}
div.jqi .jqititle {
  padding: 5px 10px;
  font-size: 2.2em;
  line-height: 1;
  border-bottom: none;
  text-align: center;
  color: #212529;
  font-weight: 400;
  padding: 0;
}
div.jqi .jqimessage {
  padding: 1.35em 0;
  text-align: center;
  font-size: 1.9em;
  line-height: 1.35;
  color: #404042;
  overflow: auto;
}
div.jqi .jqibuttons {
  text-align: center;
  padding: 0 0 1em 0;
  border-top: none;
  background: #fff;
}
div.jqi .jqibuttons button {
  background: transparent;
  border-radius: 5px;
  margin-right: 1em;
  font-size: 1.5em;
  border: 1px solid transparent;
  color: #37ad6d;
  border: 1px solid #37ad6d;
  width: auto;
  height: 2em;
  padding: 0 2em;
}
div.jqi .jqibuttons button.jqidefaultbutton {
  color: #ffffff !important;
  background: #37ad6d !important;
  border-radius: 5px;
  margin-right: 1em;
  font-size: 1.5em;
  border: 1px solid transparent;
}


textarea {
    line-height: 1.75em !important;
}

.navigation-data.admin .location a:before {
  content: "\f041";
  font-family: FontAwesome;
}


#tooltip
{
    text-align: center;
    color: #fff;
    background: #111;
    position: absolute;
    z-index: 100;
    padding: 15px;
}

#tooltip:after /* triangle decoration */
{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #111;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}

#tooltip.top:after
{
    border-top-color: transparent;
    border-bottom: 10px solid #111;
    top: -20px;
    bottom: auto;
}

#tooltip.left:after
{
    left: 10px;
    margin: 0;
}

#tooltip.right:after
{
    right: 10px;
    left: auto;
    margin: 0;
}
@font-face {
  font-family: 'League Gothic';
  src: url('/asset/front/fonts/league-gothic/League Gothic.ttf');
}
@font-face {
  font-family: 'League Gothic Regular';
  src: url('/asset/front/fonts/league-gothic/LeagueGothic-Regular.otf');
}
#btnApplyDiscount {
    padding: 0.5em 1em;
    height: 3em;
    line-height: 3em;
    margin-left: 1em;
}
