.login_main_wrap {
    width: 100%;
    margin: 2px;
    height: 93vh;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgb(0 68 128 / 25%);
}
.login-block .auth-box .confirm h3 {
    color: #01a9ac;
    font-size: 34px;
}

.login-block .auth-box i.icofont-check-circled {
    font-size: 42px;
}

.login-block.offline-404 .auth-box {
    max-width: 650px;
}

.login-block.offline-404 .auth-box h1 {
    color: #2c3e50;
    font-size: 160px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 3px -2px 4px rgba(128, 128, 128, 0.57);
}

.login-block.with-header {
    min-height: calc(100vh - 56px);
}

.login-block .auth-box .confirm h3 {
    color: #01a9ac;
    font-size: 34px;
}

.login-block .auth-box i.icofont-check-circled {
    font-size: 42px;
}

.login-block.offline-404 .auth-box {
    max-width: 650px;
}

.login-block.offline-404 .auth-box h1 {
    color: #2c3e50;
    font-size: 160px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 3px -2px 4px rgba(128, 128, 128, 0.57);
}
.billing {
    color: #030d4e;
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
    .fix-menu{
        height: 83vh!important;
    }
    .login_main_wrap {
        height: auto!important;
        margin-top: 30%;
    }
    .signup-card {
        position: inherit;
    }
    .auth-box {
        margin: 0;
    }
    .login h3 {
        margin-top: 0;
        margin-bottom: 0;
    }
    .login .m-b-20 {
        margin-bottom: 10px;
    }
    .login .m-t-30 {
        margin-top: 10px;
    }
    .similar-job .media {
        display: inline-block;
    }
    .similar-job .media .media-body {
        margin-top: 20px;
    }
    .cal-event .inverse-card p:after {
        width: 100%;
    }
    .login-card.auth-body,
    .signin-card.auth-body,
    .signup-card.auth-body {
        width: 100%;
    }
    .recent-candidate-card .recent-contain {
        margin-left: 10px;
    }
    .author-details .header-right {
        text-align: left;
        margin-top: 20px;
    }
    .post-new-contain textarea:focus {
        border: none;
    }
    .wizard.vertical>.content,
    .wizard.vertical>.steps {
        width: 100%;
    }
    .wizard {
        overflow: visible;
    }
    .comment-input .input-group {
        display: block;
    }
    .comment-input .input-group i {
        text-align: center;
        width: 100%;
    }
    .comment-input .input-group input {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .second-div{
        display:none;
    }
}

.pcoded[layout-type="dark"] .auth-box .form-control,
body.dark .auth-box .form-control {
    background-color: #fff;
}



.theme-loader {
    height: 100%;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    top: 0;
}

.theme-loader .ball-scale {
    left: 50%;
    top: 50%;
    position: absolute;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
}

.theme-loader .ball-scale .contain {
    height: 100%;
    width: 100%;
}

.theme-loader .ball-scale .contain .ring {
    display: none;
}

.theme-loader .ball-scale .contain .ring:first-child {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding: 10px;
    border: 3px solid transparent;
    border-left-color: #01a9ac;
    border-right-color: #01a9ac;
    -webkit-animation: round-rotate 1.5s ease-in-out infinite;
    animation: round-rotate 1.5s ease-in-out infinite;
}

.theme-loader .ball-scale .contain .ring:first-child .frame {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #0ac282;
    border-right-color: #0ac282;
    -webkit-animation: round-rotate 1.5s ease-in-out infinite;
    animation: round-rotate 1.5s ease-in-out infinite;
}



/*-------------Slider Part------------*/
.slider{
  width: 102%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.slides{
  width: 500%;
  height: 100%;
  display: flex;
}

.slides input{
  display: none;
}

.slide{
  width: 20%;
  transition: 2s;
}

.slide img{
  width: 100%;
  height: 100%;
}

/*css for manual slide navigation*/

.navigation-manual{
  position: absolute;
  width: 850px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: #40D3DC;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}

#radio3:checked ~ .first{
  margin-left: -40%;
}

#radio4:checked ~ .first{
  margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto{
  position: absolute;
  display: flex;
  width: 850px;
  justify-content: center;
  margin-top: 65.5%;
}

.navigation-auto div{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: #40D3DC;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: #40D3DC;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background: #40D3DC;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background: #40D3DC;
}

/*-------------END Slider Part------------*/
/*---------login-----------*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }
    *,
    ::after,
    ::before {
    box-sizing: inherit;
    }
    body.fix-menu {
    width: 98%;
    height: 95vh;
    margin: 2px;
    padding: 0;
    }
    .sub{
      cursor: pointer;
      margin-bottom: 10px;
    }
    .success-msg{
      color: #155724;
      background-color: #d4edda;
      border-color: #c3e6cb;
      position: relative;
      padding: 0.75rem 1.25rem;
      margin-bottom: 1rem;
      border: 1px solid transparent;
      border-radius: 0.25rem;
  }
  .error-msg{
      color: #721c24;
      background-color: #f8d7da;
      border-color: #f5c6cb;
      position: relative;
      padding: 0.75rem 1.25rem;
      margin-bottom: 1rem;
      border: 1px solid transparent;
      border-radius: 0.25rem;
  }
  .modal-dialog {
      width: 300px;
      margin-left: 100px;
      margin-top: 100px;
  }
    .container-flude{
        margin: 0 20px;
        margin-top: 20px;
    }
    .login-block{
        margin-left: 15px;
    }
    @media only screen and (max-width: 900px) {
      .container-flude {
        /*margin: 0!important;*/
      }
      .login-block{
           margin-left: 0!important;
       }
      .modal-dialog {
        margin-left: 35px!important;
      }
    }
    .btn-primary {
    color: #fff;
    border: none;
    background: linear-gradient(180deg, #069ab7, #2b2a2b);
    box-shadow: 1px 3px 5px 0 #000;
    font-weight: bold;
}
.btn-secondary{
    background: linear-gradient(45deg, black, #d7d7d7);
    border: none;
    box-shadow: 1px 3px 5px 0 #000;
}
.form-control{box-shadow: 0px 2px 4px 0px #618ba2;}
.field-icon {
  float: right;
  margin-right: 10px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
.fa{
  cursor: pointer;
}