* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    background-color: #fff;
}
.cursor-pointer {
    cursor: pointer;
}
.position-relative {
    position: relative;
}
a, a:hover, button, button:hover {
   transition:0.3;
} 
.ml-main a {
    text-decoration: none;
}
.ml-main {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;   
    width: 100%;
    height: 100%;   
    overflow-x: hidden; 
}
.ml-site-logo {
    width:140px;
    width:100px;
}
.title-subtitle {
    font-size: 14px;
    color: #6F7176;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.ml-main-header {
    position: absolute;
    z-index: 999;
    width: 100%;
}
.ml-main-header-nav .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 15px;
    position: relative;
    transition: 0.3s linear;
    background-color:#231f20;
    z-index: 9999;
}
.ml-main-header-nav .navbar ul {
    list-style: none;
}
.ml-main-header-nav .navbar ul a {
    text-decoration: none;
}
.ml-main-header-nav .navbar .navbar-toggler, 
.ml-main-header-nav .navbar .nav-link, 
.ml-main-header-nav .navbar .utils-search {
    color: #FFFFFFB3;
}
.ml-main-header-nav .navbar .navbar-utils > * {
    cursor: pointer;
}
.ml-main-header-nav .navbar .btn-search {
    font-size: 22px;
    background: transparent;
    outline: none;
    border: none;
    color: inherit;
    cursor: pointer;
    color: #fff;
}
.ml-main-header-nav .navbar-nav {
    display: flex;
    list-style: none;
}
.ml-main-header-nav .navbar-nav .nav-link {
    padding: 5px;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 400;
    display: block;
    transition: 150ms ease;
}
.ml-main-header-nav .navbar-nav .dropdown .nav-link {
    padding: 10px 15px;
}
.ml-main-header-nav .navbar-nav .nav-link:hover {
    color: #fff!important;
    /* text-shadow: 0.5px 0.5px 0.5px #fff; */
 }
 .ml-main-header-nav .navbar-nav .nav-item {
    margin: 0 10px;
    position: relative; 
}
 .ml-main-header-nav .navbar-nav .dropdown .nav-item {
    margin: 0 0px;
}
.ml-main-header-nav .navbar-nav > .nav-item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #f5f5f5; 
    bottom: 0px;
    transition: 400ms ease;
    transform: scaleX(1.5);
    opacity: 0;
    width: calc(100% - 10px);
    left: 5px;
}
.ml-main-header-nav .navbar-nav > .nav-item:hover:after {
    transform: scaleX(1);
    opacity: 1;
}
.ml-main-header-nav .navbar-toggler {
    padding: 0.1rem 0.45rem;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    outline: none;
    border: 1px solid #636363;
    border: none;
    border-radius: 3px;
    transition: 0.15s linear;
    display: none;
    margin-left: 0;
    margin-right: 10px;
}
.ml-main-header-nav .navbar-toggler:hover, 
.ml-main-header-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
}
.ml-main-header-nav .nav-item .dropdown {
    width: 210px;
    display: block;
    position: absolute;
    top: 35px;
    transition: 300ms;
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    background: #231f20;
    border-radius: 0px;
    z-index: 999;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.15);
    margin-left:-10px;
}
.ml-main-header-nav .nav-item .dropdown .nav-link {
    color: #FFFFFFB3!important;
}
.ml-main-header-nav .nav-item .dropdown .nav-link:hover {
    background: #2c2c2c;
    color: #fff !important;
}
.ml-main-header-nav .nav-item .dropdown .dropdown {
    top: 0px;
    left: calc(100% + 10px); 
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15); 
}
.ml-main-header-nav .nav-item .dropdown .dropdown:before {
    top: 10px;
    left: -10px;
    border: 5px solid transparent; 
    border-right-color: #000;
}
.ml-main-header-nav .nav-item .dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px; 
    border: 5px solid transparent;
    border-bottom-color: #000;
    display: none;
}
.ml-main-header-nav .nav-item .dropdown .nav-item:not(:last-child) {
    margin-bottom: 0px;
}
.ml-main-header-nav .nav-item .dropdown > .nav-item:hover > .nav-link {
    color: #0081ff;
}
.ml-main-header-nav .nav-item.nav-menu-li-2 > .dropdown > li > .dropdown,
.ml-main-header-nav .nav-item.nav-menu-li-6 > .dropdown {
    width: 255px;
}
.ml-main-header-nav .nav-item.nav-menu-li-3 > .dropdown {
    width: 220px;
}
.ml-main-header-nav .nav-item > .dropdown > li:not(:first-child) > .dropdown {
    top: -20px;
}
.ml-main-header-nav .nav-item.nav-menu-li-7 > .dropdown {
    margin-left: -140px;
}
.ml-main-header-nav .nav-item:hover > a::before {
    transform: rotate(90deg);
}
.ml-main-header-nav .nav-close {
    margin-left: auto;
    margin-top: 10px;
    display: none;
}
.ml-main-header-nav .nav-close .btn-nav-close {
    border: 0;
    outline: 0;
    background: #f30404;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ml-main-header-nav .nav-close .btn-nav-close .close-btn {
    transform: rotate(45deg);
}
.ml-main-header-nav .nav-close .btn-nav-close:hover, 
.ml-main-header-nav .nav-close .btn-nav-close:focus {
    background: #363636;
    color: #fff;
}
.ml-main-header-nav .nav-item.icon > a:before {
    content: "";
    position: absolute;
    right: -10px;
    top: calc(50% + 0px);
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: inherit;
    transition: 0.15s linear;
    opacity:0;
}
.ml-main-header-nav .nav-item.icon:hover > a::before {
    transform: rotate(90deg);
}


.ml-great-work-img-left {
    position: absolute;
    top: 0px;   
    left: 0;
    z-index: 99999;
    width: 280px;
}
.ml-great-work-img-right {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 9999;
 }
.ml-login-side-box {
    position: absolute;
    width: 50%;    
    background-color: #000;
    color: #fff;
    top: 0;
    right: 0;
    min-height: 100vh;
    z-index: 99;
    /* background-image: url(../images/ml-sidebar-bg-img.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 22%;
    box-shadow: 10px 180px 90px 50px #000 inset;
}
.ml-login-side-box:before {
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    width:100%;
    height:100%;
    /* background: #212529c9; */
    background: #000000bf;
    z-index:-1;
}
.ml-login-side-wraper {
    width: 100%;
    padding: 44px;
}
.ml-login-side-box .title-sidebar { 
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 35px;
}
.ml-login-side-box  .ml-ls-item {
    background-color: rgba(47, 47, 47, 1);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 15px;
}
.ml-login-side-box  .ml-ls-item  .ml-ls-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.ml-login-side-box  .ml-ls-item  .ml-ls-head img {
   width: 48px;
   height: 48px;
   margin-right: 24px;
 }
 .ml-login-side-box  .ml-ls-item  .ml-ls-head span {
   font-size: 20px;
   line-height: 35px;
   font-weight: 700;
   display: inline-block;
 }
 .ml-login-side-box  .ml-ls-item .ml-side-ul {   
    padding: 0;
    margin: 0;
}
.ml-login-side-box  .ml-ls-item .ml-side-ul .ml-side-li {
    list-style: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    background-image: url(../images/ml-tick-icon.svg);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 3px;
    padding-left: 28px;
}
.ml-login-side-box  .ml-ls-item .ml-side-ul .ml-side-li:last-child {
    margin-bottom: 0px;
}

.ml-login-content-box {
    display: flex;
    /* height: 100%; */
    min-height: calc( 100vh - 200px);
    align-items: center;
    justify-content: center;
    padding-top: 0px;
}
.ml-login-wraper{
   width: 100%;
   max-width: 445px;
   margin-left: auto;
   margin-right: auto;
   padding: 15px;
}
.title-page {
  color: #060326;
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}
.ml-input-field {
   margin-bottom: 15px;
   border: none;
   outline: none;
   border-bottom: 1px solid #C9C9C9;
   height: 48px;
   line-height: 48px;
   display: block;
   width: 100%;
   font-size: 16px;
   color: #231F20;
   font-size: 16px;
   font-weight: 600;
}
.ml-input-field:focus {
    border-bottom: 1px solid #333;
}
.ml-input-field::placeholder {
    color:#999999;
    font-weight: 400;
    font-size: 16px;
}
.ml-password-hide-show {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    background-image: url(../images/ml-eye-close.png);
    background-repeat: no-repeat;
    z-index: 999;
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 3px;
    background-position: center;
}
.ml-password-hide-show.active {
    background-image: url(../images/ml-eye-open.png);
}
.ml-forget-password {
    font-weight: 700;
    font-size: 16px;
    color: #231F20;
    text-align: right;
    text-decoration: none;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    padding: 0px 0 5px 0;
}
.ml-password-hide-show {

}
.ml-btn-primary {
   height: 64px;
   border-radius: 8px;
   text-align: center;
   background-color:#231F20;
   color: #fff;
   transition: 0.3s;
   display: inline-block;
   line-height: 64px;
   text-decoration: none;
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 16px;
}
.ml-btn-primary:disabled, 
.ml-btn-primary:disabled:hover, 
.ml-btn-primary.disabled,
.ml-btn-primary.disabled:hover {
    background-color: #6F7176;
    color: #fff;

}
input[type=checkbox] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin-right: 10px;
    margin-top: 2px;
}
.ml-btn-primary:hover {
    background-color: #000;
    transition: 0.3s;
}
.ml-dont-have-ac {
   text-align: center;
   color: #6F7176;
   padding: 10px;
   margin-top: 5px;
}
.ml-dont-have-ac a {
    color: #231F20;
    font-weight: 700;
    text-decoration: none;
}
.ml-signin-or {
    text-align: center;
    display: block;
    margin: 10px 0 25px 0;
    position: relative;
}
.ml-signin-or span {
    color:#999999;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
}
.ml-signin-or span:before {
    content: "";
    width: calc(50% - 20px);
    height: 1px;
    background-color: #999999;
    right: auto;
    left: 0;
    top: 12px;
    position: absolute;
}
.ml-signin-or span:after {
    content: "";
    width: calc(50% - 20px);
    height: 1px;
    background-color: #999999;
    right: 0;
    left: auto;
    top: 12px;
    position: absolute;
}
.ml-btn-outline-primary {
    color:#231F20;
    border: 2px solid #231F20;
    border-radius: 8px;
    background-color: #fff;
    height: 56px;
    line-height: 56px;
    display: block;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
}
.ml-enter-otp {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}
.ml-enter-otp .ml-input-field {
    width: 100%;
    display: flex;
    border-bottom-width: 2px;
    text-align: center;
    font-size: 18px;
    border-radius: 0px;
}
.ml-from-step-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 30px;

  max-width: 414px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.ml-from-step-box .ml-fs-levels {
  width: 25px;
  height: 25px;
  border: 1px solid #6F7176;
  border-radius: 25px;
  position: relative;
  background: #fff;
}
.ml-from-step-box .ml-fs-levels:after {
    content: "";
    position: absolute; 
    width: 60px;
    left: 30px;
    top: 12px;
    height: 2px;
    border-top: 4px dotted #999;
    z-index: -2; 
    display: block;

}
.ml-from-step-box .ml-fs-levels:last-child:after {
   display: none;
}
.ml-from-step-box .ml-fs-levels.ml-fsl-done {
    background-image: url(../images/ml-step-done.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border-color: #06B217;
}
.ml-from-step-box .ml-fs-levels.ml-fsl-current  {
   border-color: #06B217;
}
.ml-from-step-box .ml-fs-levels.ml-fsl-current:before {
    background-color: #06B217;
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    left: 5px;
    top: 5px;
    display: block;
    z-index: 999;
    border-radius: 50%;   
 }

.ml-from-step-box .ml-fs-levels.ml-fsl-next  {

}
.ml-slect-plan {
  background-image: url(../images/ml-selec-plan-bg.png);
  background-repeat: no-repeat;
  background-position-x: -15px;
  background-position-y: center;
  padding: 0px 0px 15px 15px;
  position: relative;
  margin-left: -40px;
  margin-right: -30px;
}
.ml-slect-plan label {
   padding: 20px;
   cursor: pointer;
   border: 1px solid #999999;
   border-radius: 16px;
   display: block;
}
.ml-slect-timeinput {
    display: flex;
    align-items: center; 
}
.ml-slect-plan input[type=radio] {
   width: 22px;
   height: 22px;
}
.ml-slect-plan .ml-slect-time {
   color: #6F7176;
   margin-left: 10px;
   font-weight: 600;
}
.ml-slect-price-box {
    padding-left: 30px;
}
.ml-slect-plan .ml-slect-price {
    margin-top: 5px;
    margin-bottom: 10px;
}
.ml-slect-plan .ml-slect-price .ml-slect-inr {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}
.ml-slect-plan .ml-slect-price .ml-slect-amount {
    color: #000;
    font-weight: 600;
    font-size: 26px;
}
.ml-slect-plan .ml-slect-price .ml-slect-email {
    color: #6F7176;
    font-size: 14px;
}
.ml-slect-plan .ml-slect-fetures {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 2px;
    background-image: url(../images/ml-slect-plan-check.png);
    background-repeat: no-repeat;
    background-position-x: 0px;
    background-position-y: center;
    padding-left: 28px;
}
.ml-slect-plan.active .ml-slect-fetures {   
    background-image: url(../images/ml-slect-plan-check-active.png);
}
.ml-slect-plan .ml-plan-recom{
    background-color: #16911A;
    color: #fff;
    height: 44px;
    width: 144px;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 0px 16px 0px 16px;
    position: absolute;
    right: 0px;
    top: 0;
}
.ml-slect-plan.active {
    background-image: url(../images/ml-selec-plan-bg-active.png);
}
.ml-slect-plan.active label {
    border-color: #16911A;
    background-color: #16911A1A;
}
.ml-slect-plan br {
    display: none;
}

.ml-download-form {
    display: flex;
    justify-content: space-between;
    background-color: #F5F5F5;
    padding: 16px;
    border-radius: 3px;
    margin-bottom: 30px;
}
.ml-download-form span {
    color: #797979;
    font-size: 14px;
}
.ml-upload-box {
   display: block;
   border: 3px dashed #999;
   text-align: center;
   padding: 0;
   border-radius: 16px;   
}
.ml-upload-box label{
    display: block;    
    padding: 20px 20px 0 20px;
    cursor: pointer;
 }
.ml-upload-box img {
    
}
.ml-upload-box p {
    color: #000;
    margin-bottom: 0;
    margin-top: 10px;
}
.ml-upload-box span {
    color: #999999;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.ml-upload-box input {
    opacity: 0;
}
.ml-label-checkbox {
    font-size: 14px;
    line-height: 18px;
    color: #231F20;
}

footer {
    background-color: #F5F5F5;
    padding: 15px 0 15px 0;
}
footer .lnp-footer-text, footer .lnp-footer-links {
    color: #6F7176;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s;
}
footer .lnp-footer-text {
    padding-top: 4px;
}
footer .lnp-footer-links:hover {
    color:#231F20;
    transition: 0.3s;
}
label.error {
    font-size: 13px;
    position: relative;
    top: -8px;
}
.error {
    color: #ff1629;
    border-color: #ff1629;
}
#sign_up_form .ml-input-field {
   margin-bottom: 10px!important;
}
#sign_up_form .form-group.mb-3 {
   margin-bottom: 0px!important;
}
.ml-forget-password:hover,
.ml-forget-password:focus, 
.ml-dont-have-ac a:hover,
.ml-dont-have-ac a:focus {
  color:#e21d38;
}
.ml-btn-outline-primary:hover,
.ml-btn-outline-primary:focus {
    background-color: #231F20;
    border: 2px solid #231F20;
    color:#fff;
}
