html { font-size: calc(1em + 1vw) }
@media screen and (min-width: 50em) {
  html {
    font-size: 2vw;
  }
}

html .swal2-popup{ font-size: calc(1em + 1vw) }
@media screen and (min-width: 50em) {
  html .swal2-popup{
    font-size: 1vw;
  }
}
 h4, .h4 {
    font-size: 22px;
}
 .modal-header, .modal-footer{padding: 19px;}

.error{color: red

}

.editorTt *{
   font-family: 'Poppins', sans-serif;
}

            .loader {
                border: 16px solid #f3f3f3!important; 
                border-top: 16px solid #00B3D8!important; 
                border-radius: 50%;
                width: 150px;
                height: 150px;
                animation: spin 1s linear infinite;
            }

            @keyframes spin {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
            .imgPos{ position: absolute; top:20%; left:20%; }
            .imgPos span{ height: 90px; width: 90px; background: #00B3D8!important; display: block; border-radius: 50% }
            .load{ position: absolute;left: 45%;top:40% }
       
a:hover {
    color: #006984;
}

:root {
  --theme-deafult: #00B3D8;
  --theme-secondary: #f73164; }


body{font-family: 'Poppins', sans-serif!important;background: #F5FAFD;  font-size: 0.5rem;}
.show-hide {
    position: absolute;
    top: 52px;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}.animate-chk label {
  line-height: 1.6;
  cursor: pointer; }
  .animate-chk label:last-child {
    margin-bottom: 0; }

.checkbox_animated {
  cursor: pointer;
  position: relative;
  margin: 0 1rem 0 0; }
  .checkbox_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
            transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0.225rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.375rem;
    border: 2px solid var(--theme-deafult);
    border-top-style: none;
    border-right-style: none; }
  .checkbox_animated:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    background: #fff;
    border: 2px solid #ecf3fa;
    cursor: pointer; }
  .checkbox_animated:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
            transform: rotate(-45deg) scale(1, 1); }

.radio_animated {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer; }
  .radio_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    content: "";
    position: absolute;
    top: 0;
    left: 0.125rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--theme-deafult);
    border-radius: 50%; }
  .radio_animated:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    border: 2px solid #ecf3fa;
    border-radius: 50%; }
  .radio_animated:checked:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); }

.checkbox label {
  display: inline-block;
  position: relative;
  padding-left:1rem;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px; }
  .checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    left: 0.5rem;
    margin-left: -16px;
    border: 1px solid #00B3D8;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
  .checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #242934; }

.checkbox input[type="checkbox"] {
  opacity: 0; }
  .checkbox input[type="checkbox"]:focus {
    outline-offset: -2px; }
    .checkbox input[type="checkbox"]:focus + label::before {
      outline-offset: -2px; }

.checkbox input[type="checkbox"]:checked + label::before {
  font-family: FontAwesome;
  content: "\f00c";
  text-align: center;
  line-height: 1.2; }

.checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65; }
  .checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #f4f4f4;
    cursor: not-allowed; }

.checkbox .checkbox-circle label::before {
  border-radius: 50%; }

.checkbox .checkbox-inline {
  margin-top: 0; }

.m-squar label::before {
  border-radius: 0; }

.m-squar .checkbox-circle label::before {
  border-radius: 50%; }

.m-squar .checkbox-inline {
  margin-top: 0; }

.checkbox-primary label::before {
  border-color: var(--theme-deafult); }

.checkbox-primary input[type="checkbox"]:checked + label::before {
  border-color: var(--theme-deafult);
  color: var(--theme-deafult); }

.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-primary label:before {
  background-color: var(--theme-deafult);
  border-color: var(--theme-deafult);
  color: #fff; }

.checkbox-solid-primary input[type="checkbox"]:checked + label::before {
  background-color: var(--theme-deafult);
  border-color: var(--theme-deafult);
  color: #fff; }

.checkbox-solid-primary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-primary input[type="radio"] + label::before {
  border-color: var(--theme-deafult); }

.radio-primary input[type="radio"] + label::after {
  background-color: var(--theme-deafult); }

.radio-primary input[type="radio"]:checked + label::before {
  border-color: var(--theme-deafult); }

.radio-primary input[type="radio"]:checked + label::after {
  background-color: var(--theme-deafult); }

.checkbox-secondary label::before {
  border-color: #f73164; }

.checkbox-secondary input[type="checkbox"]:checked + label::before {
  border-color: #f73164;
  color: #f73164; }

.checkbox-secondary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-secondary label:before {
  background-color: #f73164;
  border-color: #f73164;
  color: #fff; }

.checkbox-solid-secondary input[type="checkbox"]:checked + label::before {
  background-color: #f73164;
  border-color: #f73164;
  color: #fff; }

.checkbox-solid-secondary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-secondary input[type="radio"] + label::before {
  border-color: #f73164; }

.radio-secondary input[type="radio"] + label::after {
  background-color: #f73164; }

.radio-secondary input[type="radio"]:checked + label::before {
  border-color: #f73164; }

.radio-secondary input[type="radio"]:checked + label::after {
  background-color: #f73164; }

.checkbox-success label::before {
  border-color: #51bb25; }

.checkbox-success input[type="checkbox"]:checked + label::before {
  border-color: #51bb25;
  color: #51bb25; }

.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-success label:before {
  background-color: #51bb25;
  border-color: #51bb25;
  color: #fff; }

.checkbox-solid-success input[type="checkbox"]:checked + label::before {
  background-color: #51bb25;
  border-color: #51bb25;
  color: #fff; }

.checkbox-solid-success input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-success input[type="radio"] + label::before {
  border-color: #51bb25; }

.radio-success input[type="radio"] + label::after {
  background-color: #51bb25; }

.radio-success input[type="radio"]:checked + label::before {
  border-color: #51bb25; }

.radio-success input[type="radio"]:checked + label::after {
  background-color: #51bb25; }

.checkbox-danger label::before {
  border-color: #dc3545; }

.checkbox-danger input[type="checkbox"]:checked + label::before {
  border-color: #dc3545;
  color: #dc3545; }

.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-danger label:before {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff; }

.checkbox-solid-danger input[type="checkbox"]:checked + label::before {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff; }

.checkbox-solid-danger input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-danger input[type="radio"] + label::before {
  border-color: #dc3545; }

.radio-danger input[type="radio"] + label::after {
  background-color: #dc3545; }

.radio-danger input[type="radio"]:checked + label::before {
  border-color: #dc3545; }

.radio-danger input[type="radio"]:checked + label::after {
  background-color: #dc3545; }

.checkbox-info label::before {
  border-color: #a927f9; }

.checkbox-info input[type="checkbox"]:checked + label::before {
  border-color: #a927f9;
  color: #a927f9; }

.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-info label:before {
  background-color: #a927f9;
  border-color: #a927f9;
  color: #fff; }

.checkbox-solid-info input[type="checkbox"]:checked + label::before {
  background-color: #a927f9;
  border-color: #a927f9;
  color: #fff; }

.checkbox-solid-info input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-info input[type="radio"] + label::before {
  border-color: #a927f9; }

.radio-info input[type="radio"] + label::after {
  background-color: #a927f9; }

.radio-info input[type="radio"]:checked + label::before {
  border-color: #a927f9; }

.radio-info input[type="radio"]:checked + label::after {
  background-color: #a927f9; }

.checkbox-light label::before {
  border-color: #f4f4f4; }

.checkbox-light input[type="checkbox"]:checked + label::before {
  border-color: #f4f4f4;
  color: #f4f4f4; }

.checkbox-light input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-light label:before {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  color: #fff; }

.checkbox-solid-light input[type="checkbox"]:checked + label::before {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  color: #fff; }

.checkbox-solid-light input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-light input[type="radio"] + label::before {
  border-color: #f4f4f4; }

.radio-light input[type="radio"] + label::after {
  background-color: #f4f4f4; }

.radio-light input[type="radio"]:checked + label::before {
  border-color: #f4f4f4; }

.radio-light input[type="radio"]:checked + label::after {
  background-color: #f4f4f4; }

.checkbox-dark label::before {
  border-color: #2c323f; }

.checkbox-dark input[type="checkbox"]:checked + label::before {
  border-color: #2c323f;
  color: #2c323f; }

.checkbox-dark input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-dark label:before {
  background-color: #2c323f;
  border-color: #2c323f;
  color: #fff; }

.checkbox-solid-dark input[type="checkbox"]:checked + label::before {
  background-color: #2c323f;
  border-color: #2c323f;
  color: #fff; }

.checkbox-solid-dark input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-dark input[type="radio"] + label::before {
  border-color: #2c323f; }

.radio-dark input[type="radio"] + label::after {
  background-color: #2c323f; }

.radio-dark input[type="radio"]:checked + label::before {
  border-color: #2c323f; }

.radio-dark input[type="radio"]:checked + label::after {
  background-color: #2c323f; }

.checkbox-warning label::before {
  border-color: #f8d62b; }

.checkbox-warning input[type="checkbox"]:checked + label::before {
  border-color: #f8d62b;
  color: #f8d62b; }

.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-solid-warning label:before {
  background-color: #f8d62b;
  border-color: #f8d62b;
  color: #fff; }

.checkbox-solid-warning input[type="checkbox"]:checked + label::before {
  background-color: #f8d62b;
  border-color: #f8d62b;
  color: #fff; }

.checkbox-solid-warning input[type="checkbox"]:checked + label::after {
  color: #fff; }

.radio-warning input[type="radio"] + label::before {
  border-color: #f8d62b; }

.radio-warning input[type="radio"] + label::after {
  background-color: #f8d62b; }

.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f8d62b; }

.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f8d62b; }

.m-checkbox-inline .checkbox {
  display: inline-block; }

.m-checkbox-inline .radio {
  display: inline-block; }

.m-checkbox-inline label {
  margin-right: 20px; }

.radio label {
  display: inline-block;
  position: relative;
  padding-left: 1rem;
  cursor: pointer; }
  .radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    left: 0.5rem;
    margin-left: -0.4rem;
    border: 2px solid #898989;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out; }
  .radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 0.3rem;
    height: 0.3rem;
    left: 0.5rem;
    top: 0.2rem;
    margin-left: -0.2rem;
    border-radius: 50%;
    background-color: #898989;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }

.radio input[type="radio"] {
  opacity: 0; }
  .radio input[type="radio"]:focus + label::before {
    outline-offset: -2px; }
  .radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  .radio input[type="radio"]:disabled + label {
    opacity: 0.65; }
    .radio input[type="radio"]:disabled + label::before {
      cursor: not-allowed; }

.radio .radio-inline {
  margin-top: 0; }.row > div {
    position: relative;
}
.login-card .login-main h4 {
font-size: 1rem;
  line-height: 1rem;

    font-weight: bold;
    color: #006984;
    padding-bottom: 10px;
}.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 4px 1px rgb(0 206 249 / 30%), 0 0 0 1px #00b3d8;
    -webkit-box-shadow:0 0 4px 1px rgb(0 206 249 / 30%), 0 0 0 1px #00b3d8;
    /*box-shadow: 0 0 0 0.1rem rgba(0,179,216, 9%);*/
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: #00B3D8;
    border-color: #00B3D8;
}
.alert {
    position: relative;
    padding: 0.3rem!important;}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 6%);
    box-shadow: 0 0 0 0.1rem rgb(49 132 253 / 6%);
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 6%);
    box-shadow: 0 0 0 0.1rem rgb(49 132 253 / 6%);
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
 -webkit-box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 6%);
    box-shadow: 0 0 0 0.1rem rgb(49 132 253 / 6%);
}
::-webkit-input-placeholder {
  font-size: 0.5rem;color: #333!important;font-weight: 300;line-height: 1.5;
}
::-moz-placeholder { 
  font-size: 0.5rem;color: #333!important;font-weight: 300;line-height: 1.5;
}
:-ms-input-placeholder {
   font-size: 0.5rem;color: #333!important;font-weight: 300;line-height: 1.5;
}
:-moz-placeholder { 
  font-size: 0.5rem;color: #333!important;font-weight: 300;line-height: 1.5;
}
.login-main .col-form-label{font-size: 0.5rem;color: #333;font-weight: 500}
.signupBg{background: url(../images/signup_bg1.png)top no-repeat;height: 100%;background-size: 100% 100%;padding:5% 5% 5% 20%;}
.signupBg1{padding-top: 30%;}
.signupBg1 h1{font-size:1.6rem;font-weight: bold;color: #fff;line-height:2.1rem;}
.signupBg2 {
    padding-top: 0;
    position: absolute;
    bottom: 0;
}.form-check {
    display: block;
    min-height: 0.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.form-text.alert{margin-bottom: 0;}
.signupBg2 p{font-size: 14px;font-weight:normal;color: #fff}
.login-card{background-image: none}
.login-card .login-main{box-shadow: 0 0;width:100%;background: transparent;}
.login-card{display: block;}
.login-card .login-main{margin: inherit;}
.login-card .logo{display: inline-block;}
.regText{ padding: 0 40px 0px;}
.regText a{color: #006984;font-size:0.6rem;}
.login-card .login-main .theme-form h4{font-size:1.4rem;line-height:1.7rem;font-weight: bold;color: #006984;padding: 10px 0;}
.login-card .login-main .theme-form p{color: #333333;font-size: 0.5rem;}
.login-card .login-main .theme-form p a{color: #006984;font-weight: 500}
.anoHead{font-size: 0.6rem;color: #333;padding: 0px 0 20px;}
.form-control{border-color: #00B3D8;height:1.8rem;border-radius: 0.6rem;font-size: 0.5rem;color: #333;font-weight: 500;appearance: auto;}
.login-card .login-main .theme-form label {
   font-size: 0.5rem;color: #333;
   letter-spacing: normal;font-weight: 500;
}option:hover{background-color:yellow;}
.checkbox label{font-size: 0.5rem!important;line-height: 0.7rem}
.pstate{color:#00B3D8;font-size:20px;}
.comh4{font-size: 1rem!important;
    line-height: 1.4rem!important;font-weight: 600!important}
#verifymodal h4{font-size:0.9rem}
.steps-signup1{height: 100%}
.login-card {
    min-height: 100%;
  
   

    background-position: center;
    padding: 30px 12px;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0;
}* a {
    color: var(--theme-deafult);
    text-decoration: none;
    letter-spacing: 1px;
}
.login-card .login-main {

    padding:0 40px 40px;
    border-radius: 10px;
  
   

}
 .indicator{
  height: 4px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
 .indicator span{
  position: relative;
  height: 100%;
  width: 100%;
  background: lightgrey;
  border-radius: 5px;
}
.indicator span:nth-child(2){
  margin: 0 5px;
}
.indicator span:nth-child(3){
  margin: 0 5px 0 0;
}
 .indicator span.active:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.indicator span.weak:before{
  background-color: #ff4757;
}
.indicator span.medium:before{
  background-color: orange;
}
.indicator span.strong:before{
  background-color: #23ad5c;
} .pass-text{
  font-size: 15px;
  font-weight: 500;

  margin: 25px 0 5px;
}
 .pass-text.weak{
  color: #ff4757;
}
 .pass-text.medium{
  color: orange;
}
 .pass-text.strong{
  color: #23ad5c;
}
.btn-check:focus + .btn-primary, .btn-primary:focus, .btn:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(49 132 253 / 6%)!important;
    box-shadow: 0 0 0 0.2rem rgb(49 132 253 / 6%)!important;
}.form-check-input:checked {
    background-color: #00B3D8;
    border-color: #00B3D8;
}
.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(13 110 253 / 6%);
    box-shadow: 0 0 0 0.2rem rgb(13 110 253 / 6%);
}
.btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.5rem;
    font-weight: 400;
    border-radius: 15px;

    height: 1.8rem;line-height: 1.1rem;

}
.creat-btn i{padding-left: 20px;}
.creat-btn{margin-top: 30px;}
.mt-50{margin-top: 50px}
.needs-validation .show-hide {
    right: 25px;
}
.alert-succes.form-text strong{white-space: nowrap;font-weight: 600;}
.pincode-input-container .form-control{padding:5px; }
.show-hide {
    position: absolute;
        top: 2.5rem;}
    .show-hide span.show:before {
    content: "\f06e";
    font-family: "FontAwesome";
    font-weight: 900;
}

.show-hide span:before {
    content: "\f070";
}.show-hide {
    font-family: "FontAwesome";
    font-weight: 900;
}
.show-hide span {      font-size: 18px;color: #333}
.f-24{font-size: 24px;}
.mt-20{margin-top: 20px;}
.started-card h1{color: #00B3D8;font-size:0.7rem;font-weight: 500;position: absolute;width: 60%;bottom: 40px}
.started-card{border: 1px solid #00B3D8;border-radius: 15px;padding:40px 25px;box-shadow: 1px 10px 17px #d1d1d1;margin-top:40px;min-height: 10rem;overflow: hidden;}
.started-card h2{color: #006984;font-size: 1rem;font-weight: 500;padding-bottom: 80px;}
.started-card h2 img{float: right;width: 1.2rem;}
.row-flex {
    display: flex;
    flex-wrap: wrap;
}
.bgcas1 {
    height: 100%;
}
.getstarText{color: #006984;font-size: 36px;font-weight: bold;margin-top: 150px;text-align: center;line-height:40px}
.steps-signup{height: 100vh!important;min-height: 100%;padding-left: 20%;padding-right:10%;padding-top: 10%;background: #fff}
.steps-signup ul{padding-top: 50px}
.steps-signup ul a{color: #333;font-size:0.5rem}
.steps-signup ul img{margin-right: 10px;width: 0.9rem}
.steps-signup ul span.stepcount-run{background: #00B3D8;border-radius: 10px;;padding: 5px 10px;font-size: 12px;color: #fff;float: right;display: none;}
.steps-signup ul span.stepcount-tb{background: #fff;border-radius: 10px;;padding: 5px 10px;font-size: 12px;color: #00B3D8;float: right;border:1px solid #00B3D8;}
.steps-signup ul span.stepcount-done{background: #fff;border:1px solid #00B3D8;border-radius: 10px;;padding: 5px 10px;font-size: 12px;color: #00B3D8;float: right;display: none;}
.steps-signup ul li{padding: 15px 0 10px 1.6rem;margin: 10px 0}
.steps-signup ul li.active a{color: #00B3D8;}
.steps-signup ul li.active {border-left: 2px solid #00B3D8}

.steps-signup ul li.active .stepcount-tb{display: none;}
.steps-signup ul li.active .stepcount-run{display: block;}
.progress-dot{padding-left: 5px;padding-top: 5px;}
.progress-dot span{height: 0.3rem;width:0.3rem;border:1px solid #00B3D8;display: inline-block;border-radius: 50%;margin-right: 5px;}
.progress-dot span.fill-dot{height:0.3rem;width:0.3rem;border:1px solid #00B3D8;background:#00B3D8;display: inline-block;border-radius: 50%;margin-right: 5px;}
.profile-lab1 h2{font-size: 16px;color: #333;margin: 0;padding-top: 10px;}
.profile-lab1 p{color: #006984;font-size: 12px}
.profile-lab{padding-top: 100px;}
.profile-lab ul{padding-top: 0px;border-top: 1px solid #D5E2ED}
.stepcounter{color: #00B3D8;font-size: 15px;padding:0 0 20px 0;text-align: center;}
.innertheme-form .form-control{border: 1px solid #BDD4E6;height:1.8rem;border-radius: 8px;/*padding:18px 15px;  */  -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance:auto;}
.innertheme-form .col-form-label{padding-bottom:15px;color: #006984;font-size:0.7rem}
.innertheme-form {padding-top: 20px}
.login-card .logo{margin-bottom: 0}
.notic{padding: 20px 0}
.notic h3{font-size: 0.7rem;color: #006984}

.notic h1, .checksh h1{font-size: 1.5rem;}
.notic h2, .checksh h2{font-size: 1.2rem;}
.notic h3, .checksh h3{font-size: 0.9rem;}
.notic h4, .checksh h4{font-size: 0.7rem;}
.notic h5, .checksh h5{font-size: 0.5rem;}
.notic h6, .checksh h6{font-size: 0.4rem;}


.notic p{font-size: 0.5rem;color: #006984}
 .form-group {
    margin-bottom: 10px;
    position: relative;
}.btn-primary:hover, .btn-primary.checksh h6:focus, .btn-primary:active, .btn-primary.active {
    background-color: #006984 !important;
    border-color: #006984 !important;
}.checksh {
padding-top: 15px;
    white-space: normal;
    word-break: break-word;
}.checksh ul, .checksh ol  {
    list-style: none;
    padding: 0;

}
.checksh li span{white-space: normal!important}
.checksh li {
    padding-left: 1.3em;white-space: normal;
    word-break: break-word;
}.checksh li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
}
.colmainson{/*background: #fff;margin-top: 70px;padding: 15px;*/height: 100%;}
.colmainson h1{color: #00B3D8;font-size: 18px;}
.colmainson h1 i{height: 50px;width: 50px;border: 1px solid #00B3D8;border-radius: 50%;line-height: 50px;text-align: center;}
.btn-primary {
    color: #fff!important;
    background-color: #00B3D8;
    border-color: #00B3D8;
}.navbar-toggler-icon {
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E);
}.navbar-toggler:focus{box-shadow: 0 0}
.navbar-toggler{border:1px solid #333;position: relative;z-index: 99;padding: 5px;
    font-size: 12px;
    line-height: 1;}
.logomob{display: none;}
@media (min-width: 992px){
  .navbar-toggler{display: none;}
 .navbar-collapse {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}}
@media (max-width: 768px){
  .needs-validation .show-hide {
    right: 25px;
    top: 2.7rem;
}
	.steps-signup{height: auto!important}
  .regText{padding: 0 0 40px 0;}
  .login-card{padding-top: 30px}
  .steps-signup ul {
    padding-top: 0px;
}
  .steps-signup{padding: 0}
  .signup-logo{display: none;}
  .leadText{display: none;}
  .signupBg{display: none}

.logomob{display: block;}

}
@media screen and (max-width: 360px){
.chat_header {
    width: 270px!important;
}
}
.alert-succes.form-text {
    color: #048649;
    background-color: #e8f3ee;
   
}.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
}.form-text {
    display: block;
    margin-top: .25rem;
}.form-text h2 {
    font-size: 0.6rem;
    padding-top: 10px;color: #00B3D8;margin-bottom: 0;font-weight: 400
}
.clear{clear:both;}
.cpogress{padding-top: 60px;}
.pcoun {
    top: 120px!important;
    font-size: 16px!important;
    left: 0!important;
    right: 0!important;
    margin: auto;color: #707070!important
}

.c100:hover > span.pcoun {
    
  top: 140px!important;
  
}
.c100.big {
    font-size: 200px!important;
}.c100{margin: auto!important;float: none!important}
.acdone .progress-dot{display: none;}
.splab{background-color:  #006984;font-size:0.7rem;padding-bottom: 15px;color: #fff;border-radius: 8px;padding: 15px;text-align: center;margin-bottom: 15px}
.stpgrp{color: #006984;font-size:0.6rem}
.splab1{padding-bottom: 15px;
    color: #006984;
    font-size: 0.7rem}
.has-search{position: relative;}
.has-search i {
    position: absolute;
    right: 20px;
    top: 0.7rem;
    font-size: 18px;
}


ul li{
  list-style: none;
}
.fabs {
  bottom: 0;
  position: fixed;
  margin: 1em;
  right: 0;
  z-index: 998;
  
}

.fab {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  color: #00B3D8;
  margin: 25px auto 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  position: relative;
  z-index: 998;
  overflow: hidden;
  background: #fff;border: 1px solid #00B3D8
}

.fab > i {
  font-size: 2em;
  line-height: 55px;
  -webkit-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.fab:not(:last-child) {
  width: 0;
  height: 0;
  margin: 20px auto 0;
  opacity: 0;
  visibility: hidden;
  line-height: 40px;
}

.fab:not(:last-child) > i {
  font-size: 1.4em;
  line-height: 40px;
}

.fab:not(:last-child).is-visible {
  width: 40px;
  height: 40px;
  margin: 15px auto 10;
  opacity: 1;
  visibility: visible;
}

.fab:nth-last-child(1) {
  -webkit-transition-delay: 25ms;
  transition-delay: 25ms;
}

.fab:not(:last-child):nth-last-child(2) {
  -webkit-transition-delay: 20ms;
  transition-delay: 20ms;
}

.fab:not(:last-child):nth-last-child(3) {
  -webkit-transition-delay: 40ms;
  transition-delay: 40ms;
}

.fab:not(:last-child):nth-last-child(4) {
  -webkit-transition-delay: 60ms;
  transition-delay: 60ms;
}

.fab:not(:last-child):nth-last-child(5) {
  -webkit-transition-delay: 80ms;
  transition-delay: 80ms;
}

.fab(:last-child):active,
.fab(:last-child):focus,
.fab(:last-child):hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}
/*Chatbox*/

.chat {
  position: fixed;
  right: 0px;
  bottom: 0;
  width: 25%;
    font-size: 0.5rem;line-height: 1.5;
  max-height: 100%;
  background: #fff;overflow: auto;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: none;
  box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
  border-radius: 0px;
  -webkit-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;z-index: 999
}

.chat_fullscreen {
    position: fixed;
    right: 0px;
    bottom: 0px;
    top: 0px;
  }
.chat_header {
      /* margin: 10px; */
    font-size: 13px;
  
    font-weight: 500;
    color: #00B3D8;
    height: 1.5rem;
    background: #fff;
    /*border-top-left-radius: 10px;
    border-top-right-radius: 10px;*/
    padding-top: 8px;position: fixed;width: 25%;z-index: 9;
}
.chat_header2 {
      /* margin: 10px; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.chat_header .span {
  float:right;
}
.chat_fullscreen_loader .zmdi{padding:0  5px} 
.chat_fullscreen_loader {
  display: none;
    float: right;
    cursor: pointer;
    /* margin: 10px; */
    font-size: 20px;
  
    /* padding: 20px; */
    margin: -1px 10px;
}

.chat.is-visible {
display: block;
  /*-webkit-animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
  animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);*/
}
.is-hide{
  opacity: 0
}

.chat_option {
  float: left;
  font-size: 0.6rem;
  list-style: none;
  position: relative;
  height: 100%;
  width: 100%;
  text-align: relative;
  margin-right: 10px;
      letter-spacing: 0.5px;
      font-weight: 400;padding: 8px 15px
}


.chat_option img {
    border-radius: 50%;
    width: 55px;
    float: left;
    margin: -30px 20px 10px 20px;
    border: 4px solid rgba(0, 0, 0, 0.21);
}

.change_img img{
    width: 35px;
    margin: 0px 20px 0px 20px;
}
.chat_option .agent {
  font-size: 12px;
    font-weight: 300;
}
.chat_option .online{
      opacity: 0.4;
    font-size: 11px;
    font-weight: 300;
}
.chat_color {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 10px;
  float: left;
}


.chat_body {
  background: #fff;
  width: 100%;

  display: inline-block;

    overflow-y: auto;padding:1.5rem 15px 25px;border-radius: 10px;

}
#chat_body{
    height: 450px;
}
.chat_login p,.chat_body li, p, a{
    -webkit-animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
  animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
}
.chat_body p {
  padding: 20px;
  color: #888
}
.chat_body a {
  width: 10%;
  text-align: center;
  border: none;
  box-shadow: none;
  line-height: 40px;
  font-size: 15px;
}

.zmdi-close:before {
    content: '\f136'!important;
}

.chat_field {
  position: relative;
  margin: 5px 0 5px 0;
  width: 50%;

  font-size: 12px;
  line-height: 30px;
  font-weight: 500;
  color: #4b4b4b;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  border: none;
  outline: none;
  display: inline-block;
}

.chat_field.chat_message {
  height: 30px;
  resize: none;
      font-size: 13px;
    font-weight: 400;
}
.chat_category{
  text-align: left;
}

.chat_category{
  margin: 20px;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px;
}

.chat_category ul li{
    width: 80%;
    height: 30px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    line-height: 30px;
    color: #888;
    text-align: center;
}

.chat_category li:hover{
    background: #83c76d;
    color: #fff;
}
.chat_category li.active{
    background: #83c76d;
    color: #fff;
}

.tags{
 margin: 20px;
    bottom: 0px;
    display: block;
    width: 120%
}
.tags li{
    padding: 5px 10px;
    border-radius: 40px;
    border: 1px solid rgb(3, 117, 208);
    margin: 5px;
    display: inline-block;
    color: rgb(3, 117, 208);
    cursor: pointer;

}
.fab_field {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;

}
.fab_field2 {
    bottom: 0px;
    position: absolute;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
        z-index: 999;
  }

.fab_field a {
  display: inline-block;
  text-align: center;
}

#fab_camera {
  float: left;
  background: rgba(0, 0, 0, 0);
}

#fab_send {
  float: right;
  background: rgba(0, 0, 0, 0);
}

.fab_field .fab {
  width: 35px;
  height: 35px;
  box-shadow: none;
  margin: 5px;
}

.fab_field .fab>i {
  font-size: 1.6em;
  line-height: 35px;
  color: #bbb;
}
.fab_field .fab>i:hover {
  color: #42a5f5;
}
.chat_conversion {

}

.chat_converse {
  position: relative;
    background: #fff;
    margin: 6px 0 0px 0;
    height: 300px;
    min-height: 0;
    font-size: 12px;
    line-height: 18px;
    overflow-y: auto;
    width: 100%;
    float: right;
    padding-bottom: 100px;
}
.chat_converse2{
      height: 100%;
    max-height: 800px
}
.chat_list {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.chat_list .chat_list_item {
  opacity: 0;
  visibility: hidden;
}

.chat .chat_converse .chat_msg_item {
  position: relative;
  margin: 8px 0 15px 0;
  padding: 8px 10px;
  max-width: 60%;
  display: block;
  word-wrap: break-word;
  border-radius: 3px;
  -webkit-animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
  animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
  clear: both;
  z-index: 999;
}
.status {
    margin: 45px -50px 0 0;
    float: right;
    font-size: 11px;
    opacity: 0.3;
}
.status2 {
    margin: -10px 20px 0 0;
    float: right;
    display: block;
    font-size: 11px;
    opacity: 0.3;
}
.chat .chat_converse .chat_msg_item .chat_avatar {
  position: absolute;
  top: 0;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin .chat_avatar {
  left: -52px;
  background: rgba(0, 0, 0, 0.03);
}

.chat .chat_converse .chat_msg_item.chat_msg_item_user .chat_avatar {
  right: -52px;
  background: rgba(0, 0, 0, 0.6);
}

.chat .chat_converse .chat_msg_item .chat_avatar, .chat_avatar img{
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin {
  margin-left: 60px;
  float: left;
  background: rgba(0, 0, 0, 0.03);
  color: #666;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_user {
  margin-right: 20px;
  float: right;
  background: #42a5f5;
  color: #eceff1;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -12px;
  z-index: 998;
  border: 6px solid transparent;
  border-right-color: rgba(255, 255, 255, .4);
}

.chat_form .get-notified label{
    color: #077ad6;
    font-weight: 600;
    font-size: 11px;
}

input {
  position: relative;
  width: 90%;

  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: #4b4b4b;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  outline: none;
  background: #fff;
  display: inline-block;
  resize: none;
  padding: 5px;
  border-radius: 3px;
}
.chat_form .get-notified input {
  margin: 2px 0 0 0;
  border: 1px solid #83c76d;
}
.chat_form .get-notified i {
    background: #83c76d;
    width: 30px;
    height: 32px;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    margin: 2px 0 0 -30px;
    position: absolute;
    border-radius: 3px;
}
.chat_form .message_form {
  margin: 10px 0 0 0;
}
.chat_form .message_form input{
  margin: 5px 0 5px 0;
  border: 1px solid #e0e0e0;
}
.chat_form .message_form textarea{
  margin: 5px 0 5px 0;
  border: 1px solid #e0e0e0;
  position: relative;
  width: 90%;
 
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: #4b4b4b;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  outline: none;
  background: #fff;
  display: inline-block;
  resize: none;
  padding: 5px;
  border-radius: 3px;
}
.chat_form .message_form button{
    margin: 5px 0 5px 0;
    border: 1px solid #e0e0e0;
    position: relative;
    width: 95%;
    
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    outline: none;
    background: #fff;
    display: inline-block;
    resize: none;
    padding: 5px;
    border-radius: 3px;
    background: #83c76d;
    cursor: pointer;
}
strong.chat_time {
  padding: 0 1px 1px 0;
  font-weight: 500;
  font-size: 8px;
  display: block;
}

/*Chatbox scrollbar*/

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  margin: 2px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}
/*Element state*/

.is-active {
/*  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;*/
}
.is-active.zmdi-help-outline {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  
}
.zmdi-close{  -webkit-transform: rotate(3180deg);
  transform: rotate(180deg);}

.is-float {
  box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

.is-loading {
  display: block;
  -webkit-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
  animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
}
/*Animation*/

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/* SMARTPHONES PORTRAIT */

@media only screen and (min-width: 300px) {
  .chat {
    width: 300px;
  }
}
/* SMARTPHONES LANDSCAPE */

@media only screen and (min-width: 480px) {
  .chat {
    width: 300px;
  }
  .chat_field {
    width: 65%;
  }
}
/* TABLETS PORTRAIT */
@media only screen and (max-width: 768px) {
  .steps-signup ul li {
    padding: 15px 0 10px 2rem;
    margin: 0;
}
}
@media only screen and (min-width: 768px) {
  .chat {
    width: 300px;
  }
  .chat_field {
    width: 65%;
  }
}
/* TABLET LANDSCAPE / DESKTOP */

@media only screen and (min-width: 1024px) {
  .chat {
    width: 25%;
  }
  .chat_field {
    width: 65%;
  }
}
/*Color Options*/



.blue .fab {
  background: #42a5f5;
  color: #fff;
}



.blue .chat {
  background: #42a5f5;
  color: #999;
}


/* Ripple */

.ink {
  display: block;
  position: absolute;
  background: rgba(38, 50, 56, 0.4);
  border-radius: 100%;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  webkit-transform: scale(0);
  -webkit-transform: scale(0);
          transform: scale(0);
}
/*animation effect*/

.ink.animate {
  -webkit-animation: ripple 0.5s ease-in-out;
          animation: ripple 0.5s ease-in-out;
}

@-webkit-keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  
  100% {
    opacity: 0;
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    webkit-transform: scale(5);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
}

@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  
  100% {
    opacity: 0;
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    webkit-transform: scale(5);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
}
/*::-webkit-input-placeholder { 
  color: #bbb;
}
:-ms-input-placeholder {
  color: #bbb;
}
::-moz-placeholder { 
  color: #bbb;
}
:-moz-placeholder { 
  color: #bbb;
}
*/

.pt-50{padding-top: 50px}
.btn-edit{    padding: 5px 6px;
    font-size: 10px;
    font-weight: 400;
    border-radius: 15px;}
  .alert  .btn-edit{  margin-top: 5px;}
  .table{background: #fff}
  .table h1{
    padding: 15px;
    color: #006984;
    font-size: 0.7rem;margin: 0
}.table thead th{background: #F5FAFD;font-size:0.5rem;color: #006984;padding: 15px;font-weight: 500;letter-spacing: 0.25px}
.table tbody td{font-size:0.5rem;color: #333333;padding: 15px;font-weight: 500;}
button.close{
      background: transparent;
    border: 0;
    font-size: 38px;
    line-height: 20px;
}

.modal-footer .btn {
    padding: 9px 15px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1366px) {

body.some .started-card h1{font-size: 12px;}
.started-card h1{font-size: 18px;}
.started-card{padding: 40px 7px;}
}
@media screen and (max-width: 1300px) {

.login-card .login-main .theme-form h4 {
    font-size: 24px;
    font-weight: bold;
    color: #006984;
    padding: 10px 0;
    line-height: 28px;
}
.getstarText{font-size: 24px;line-height: 29px;}
}
@media screen and (min-width: 1400px) {

}
@media (min-width:1900px) {

	/* .modal-lg, .modal-xl {
		max-width: 950px;
	} */

  #ryft_modal .modal-lg, #ryft_modal .modal-xl {
      max-width: 50%;
  }
	
	}
@media screen and (min-width: 1600px) {

}
.signumain{padding-top: 0!important}
.colnumBorder {
    border-right: 1px solid #00B3D8;min-height: 200px
}
.bootbox .modal-body{padding: 15px;}
.bootbox button.close {
    background: transparent;
    border: 0;
    font-size: 38px;
    line-height: 20px;
    position: absolute;
    right: 13px;
    top: 24px;
}select {

  outline: none;}
#tabint1multiselect{height: 200px;overflow: auto;}
select {
  
  appearance: none;

  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;

  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}
.pr-0{padding-right: 0}.pl-0{padding-left: 0}
.maproute{position: relative;}
.maproute .bgNumSe {
    background: #00B3D8;
    border-radius: 7px;
    padding: 5px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    width: 220px;
    top: 0px;
    text-align: center;
    font-weight: 600;

}
.alert .btn{    height: auto;    line-height: normal;}
.maproute .bgNumSe{   
 padding: 5px;
    color: #fff;
    font-size: 14px;

}

.signupBg {
    height: 100vh;
    min-height: 100%;
}



.smartNum{ width:270px; position: absolute; top:40px; right:18px; z-index: 2 }
.numFil{ position: relative; }
.ui-front{ background: #fff; padding-left:12px; width:300px;}

.cardPre{ box-shadow: 0px 0px 6px #d1d1d1; padding:10px; font-weight: 500; }
.cartStat{ text-align: right; float: right; display: inline-block; }
.cardPre .form-group{ margin-bottom: 4px; }
.siteclr{ color: #4c4e92;  font-size: 14px; font-weight: normal; }
.cardPre i{ font-size: 16px }
.vis{ margin-right: -18px; }
.cardPre h3{ background: #b52cc7; padding: 10px ; text-align: center; color: #fff; font-size: 18px; border-radius: 5px; margin: -10px; }
.cardPre-body{ padding-top: 20px }
.cardPre-body h4{ font-size: 30px;
    text-align: center;
    padding:0 0 10px; }

 .toolTip1 i{ font-size: 18px; padding:1px 5px}
    .toolTip{ font-size: 18px; padding-left: 5px;}
       #mytool1{
        display: none;
    }.checksh li {
    padding-left: 1.3em;
    color: #006984;
}
    .toolTip1:hover #mytool1{
        display: inline-block;
    }
    #mytool1{ position: absolute;
    width: 225px;
    bottom: 45px;
    left: -86px;
    background: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px; border: 1px solid #00b3d8;

    word-break: break-word;
    white-space: normal; color: #006984!important;
    font-size: 13px!important; 
   /* text-transform: capitalize!important; */
    letter-spacing: 0!important;
    z-index: 1029;
  }
    #mytool1:after{ content: ''; height: 20px; margin: auto; width: 20px; position: absolute;left: 0;right: 0; bottom: -20px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #68757b }
   .toolTip1{ position: relative}

   .wrap_text{   
    word-break: break-word;
    white-space: normal;
   }
   #mytool1.rightFl{ right: 0;left: auto; }
#mytool1.rightFl:after{ content: ''; height: 20px; margin: auto; width: 20px; position: absolute; left:auto;right: 0; bottom: -20px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #68757b }
  #mytool1.leftFl{ left: 0;right: auto; }
#mytool1.leftFl:after{ content: ''; height: 20px; margin: auto; width: 20px; position: absolute; left:0;right:auto;right: auto; bottom: -20px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #68757b }
.userpic{ background-color: #0391b4 }
  #mytool1.bottomFl{ top: 40px;    left: -88px; bottom: auto; z-index: 1 }
#mytool1.bottomFl:after{    content: '';
    height: auto;
    margin: auto;
    width: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #68757b;
    border-top: 0;bottom: auto;}
 #mytool1.bottomrightFl{ right: 0;left: auto;top: 40px; bottom: auto;  z-index: 1}
#mytool1.bottomrightFl:after{     content: '';
    height: 20px;
    margin: auto;
    width: 20px;
    position: absolute;
    left: auto;
    right: 4px;
    top: -20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #68757b;
    border-top: 0;bottom: auto; }


 #mytool1.bottomleftFl{ left: 0;right: auto;top: 40px; bottom: auto;  z-index: 1}
#mytool1.bottomleftFl:after{     content: '';
    height: 20px;
    margin: auto;
    width: 20px;
    position: absolute;
    right: auto;
    left: 4px;
    top: -20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #68757b;
    border-top: 0;bottom: auto; }

    .editBox{ position: relative; }
    .editBox .fa{ position: absolute; right: 15px; top:12px; }
    .editBox:hover .fa{ display: none; }
.site-clr{ float: left;width: 20px; }
.inFa{ margin-left: 25px; display: block; }

    .loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #0391b4;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}.imgPos span {
    height: 90px;
    width: 90px;
    background: #d1d1d1;
    display: block;
    border-radius: 50%;
}.imgPos {
    position: absolute;
    top: 20%;
    left: 20%;
}
#partitioned{    background-size: 41px 2px!important}
#numbererror .error{display:block;color:red;}
.inbon li{ padding: 5px 0!important }
.collic h3{ font-size: 18px; color: #006984;margin-bottom: 15px; font-weight: 600; }
.collic .colp{ font-size: 16px; color: #333; margin-bottom: 10px; }
.collic { padding: 10px;position: relative; }
.collicimg{ padding: 10px 0 20px; position: relative; }

.bdrbtm1{border-bottom: 1px solid #d1d1d1;border-right: 1px solid #d1d1d1; }

.colandh .row > .bdrbtm1:nth-child(3), 
.colandh .row > .bdrbtm1:nth-child(6), .colandh .row > .bdrbtm1:nth-child(9)    {
    border-right-color: #ffffff;
}.cat-sec .bdrbtm1{
    border-bottom-color: #ffffff;   border-right-color: #ffffff;
}
.collic01 h4{ font-size: 16px; color: #333; border-bottom: 1px solid #d1d1d1; padding-bottom: 10px; }
.collic01 h3{    font-size: 18px;    color: #0f1412; font-weight: normal; border-bottom: 1px solid #d1d1d1; padding-bottom: 10px;}
.collic01  p{font-size: 16px; font-weight: normal;}
.liceorder .badge{ font-size: 14px; }
.collic01 .collicimg{ border: 1px solid #d1d1d1; height: 100%; padding-top: 10% }
.reportinOne h3{ border-bottom: 1px solid #fff; padding-bottom: 10px; margin-bottom: 10px!important; font-size: 20px; }
.reportinOne .icon{ float: left;width: 80px; text-align: center; }
.reportinOne .content{ margin-left: 100px; }
.reportinOne .btn-primary{ background: #0aadd5; border-color: #0aadd5 }
.reportinOne .input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #b7bec5;
    text-align: center;
    border: 1px solid #988d8d;
    border-right:  1px solid #988d8d!important; border-right: 0;
    border-radius: .25rem !important;
}

.hidden {
    display : none;
}

.show {
    display : block;
}
.pincode-input-text, .form-control.pincode-input-text {
    width: 35px;
    float: left;
    text-align: center;
}.btn-outline-primary {
    border-color: #006984;
    color: #006984;
}.btn-outline-primary:hover {
    background-color: #006984 !important;
    border-color: #006984 !important;
}
.btn-outline-primary i.fa-chevron-right, .btn-primary i.fa-chevron-right{
    padding-left: 15px;
}
.btn-outline-primary i.fa-chevron-left, .btn-primary i.fa-chevron-left{
    padding-right: 15px; padding-left: 0;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100%!important;
}.alert-success {
    color: #00B3D8;
    background-color: #e8f3ee;
    border-color: #badbcc;
}.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
/**=====================
    18. Switch  CSS Start
==========================**/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }
  .switch input {
    display: none; }
    .switch input:checked + .switch-state {
      background-color: var(--theme-deafult); }
      .switch input:checked + .switch-state:before {
        -webkit-transform: translateX(26px);
                transform: translateX(26px); }
    .switch input:focus + .switch-state {
      -webkit-box-shadow: 0 0 1px var(--theme-deafult);
              box-shadow: 0 0 1px var(--theme-deafult); }

.switch-state {
  border-radius: 20px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc9c9;
  -webkit-transition: .4s;
  transition: .4s; }
  .switch-state:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px; }

.icon-state .switch-state:after {
  content: "\efb8";
  font-family: IcoFont;
  left: 10px;
  position: absolute;
  top: 10px;
  color: #2c323f;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0.3; }

.icon-state input:checked + .switch-state:after {
  content: "\efad";
  left: 36px;
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s; }

.switch-lg .switch {
  width: 75px;
  height: 40px; }
  .switch-lg .switch .switch-state:before {
    height: 30px;
    width: 30px;
    left: 7px;
    bottom: 5px;
    top: 4px; }

.switch-lg.icon-state .switch .switch-state:after {
  left: 12px;
  font-size: 18px; }

.switch-lg.icon-state .switch input:checked + .switch-state:after {
  left: 47px; }

.switch-lg.icon-state .switch input:checked + .switch-state:before {
  -webkit-transform: translateX(32px);
          transform: translateX(32px); }

.switch-sm.icon-state .switch .switch-state:after {
  top: 4px;
  left: 4px;
  font-size: 8px; }

.switch-sm.icon-state .switch input:checked + .switch-state:after {
  left: 13px;
  top: 4px; }

.switch-sm .switch {
  width: 25px;
  height: 16px;
  margin-top: 10px;
  margin-bottom: 0px; }
  .switch-sm .switch .switch-state:before {
    height: 8px;
    width: 8px;
    left: 4px;
    bottom: 4px; }

.switch-sm input:checked + .switch-state:before {
  left: -13px; }

.switch-outline .switch-state {
  background-color: #fff;
  border: 1px solid var(--theme-deafult);
  -webkit-transition: .4s;
  transition: .4s; }
  .switch-outline .switch-state:before {
    background-color: #f4f4f4;
    bottom: 3px;
    color: #fff; }

.switch-outline .switch input {
  display: none; }
  .switch-outline .switch input:checked + .switch-state {
    background-color: transparent;
    border: 1px solid var(--theme-deafult); }
    .switch-outline .switch input:checked + .switch-state:before {
      background-color: var(--theme-deafult);
      bottom: 3px;
      -webkit-transform: translateX(26px);
              transform: translateX(26px); }
    .switch-outline .switch input:checked + .switch-state:after {
      color: #fff; }

.switch-outline .switch-state.bg-primary {
  border: 1px solid var(--theme-deafult);
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-primary {
  background-color: transparent !important;
  border: 1px solid var(--theme-deafult); }
  .switch-outline .switch input:checked + .switch-state.bg-primary:before {
    background-color: var(--theme-deafult); }

.switch-outline .switch-state.bg-dark {
  border: 1px solid #2c323f;
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-dark {
  background-color: transparent !important;
  border: 1px solid #2c323f; }
  .switch-outline .switch input:checked + .switch-state.bg-dark:before {
    background-color: #2c323f; }

.switch-outline .switch-state.bg-warning {
  border: 1px solid #f8d62b;
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-warning {
  background-color: transparent !important;
  border: 1px solid #f8d62b; }
  .switch-outline .switch input:checked + .switch-state.bg-warning:before {
    background-color: #f8d62b; }

.switch-outline .switch-state.bg-success {
  border: 1px solid #51bb25;
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-success {
  background-color: transparent !important;
  border: 1px solid #51bb25; }
  .switch-outline .switch input:checked + .switch-state.bg-success:before {
    background-color: #51bb25; }

.switch-outline .switch-state.bg-info {
  border: 1px solid #a927f9;
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-info {
  background-color: transparent !important;
  border: 1px solid #a927f9; }
  .switch-outline .switch input:checked + .switch-state.bg-info:before {
    background-color: #a927f9; }

.switch-outline .switch-state.bg-danger {
  border: 1px solid #dc3545;
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-danger {
  background-color: transparent !important;
  border: 1px solid #dc3545; }
  .switch-outline .switch input:checked + .switch-state.bg-danger:before {
    background-color: #dc3545; }

.switch-outline .switch-state.bg-primary {
  border: 1px solid var(--theme-deafult);
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-primary {
  background-color: transparent !important;
  border: 1px solid var(--theme-deafult); }
  .switch-outline .switch input:checked + .switch-state.bg-primary:before {
    background-color: var(--theme-deafult); }

.switch-outline .switch-state.bg-secondary {
  border: 1px solid var(--theme-secondary);
  background-color: transparent !important; }

.switch-outline .switch input:checked + .switch-state.bg-secondary {
  background-color: transparent !important;
  border: 1px solid var(--theme-secondary); }
  .switch-outline .switch input:checked + .switch-state.bg-secondary:before {
    background-color: var(--theme-secondary); }

.switch-showcase {
  margin-bottom: -8px; }
  .switch-showcase .media {
    line-height: 1; }
  .switch-showcase .form-check .form-check-input {
    float: right; }

.form-switch .form-check-input:checked {
  background-color: var(--theme-deafult);
  border-color: var(--theme-deafult); }

/**=====================
     18. Switch  CSS Ends
==========================**/.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}.edit_detail i{padding: 0}
.imgscript img{width: 100%}
@media screen and (max-width: 768px){
  .chat_header{width: 270px}
body.some .expand9, .expand9  {
    width: 100%!important;
}
}
@media screen and (max-width: 767px){
.form-text h2 {
    font-size: 12px;
    padding: 0 10px;
    line-height: 21px;
}
.started-card{padding: 40px 5px;}
.login-card .login-main{padding: 0}

}
.cardControl{height: auto!important}
.expand9{ width: 75% }
body.some .expand9{ width: 50% }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #6b6e77 !important;
    color: white;
}
.dep_page .btn{margin-top: 20px;}
.newlab{color: #333!important;padding-bottom: 7px;margin-top: 20px;}
.col-form-label1{color: #00B3D8!important;font-size: 16px!important;font-weight: 500!important;padding-bottom: 0!important;margin-bottom: 0!important;padding-left: 18px;}
.setuserpay li{color: #00B3D8!important;font-weight: 600;padding: 5px 18px 5px 35px;}
.signup-logo{text-align: center;}
.zmdi-window-maximize { display:none!important }
.input-group .btn{
    border-radius: 0px 0.6rem 0.6rem 0px
}
.input-group .form-control{
    border-radius: 0.6rem 0px 0px 0.6rem
}

.brr-0{border-radius:0.6rem 0 0 0.6rem!important }
.brl-0{border-radius:0 0.6rem 0.6rem 0!important}

.InputElement{font-size: 0.6rem!important;height: 2rem!important;line-height: height: 2rem!important;}

.payment_method{ padding: 10px 0; position: relative; }
.payment_method input{ position: absolute }
.imgsidebar{position: absolute;left: 15px;}
.steps-signup ul li{position: relative;}
.checkside{    color: limegreen;
    font-size: 24px;
    float: right;
    top: 25%;
    position: absolute;
    right: -19px;
    border: 0;}