/* --------------------------- */
/* NEW LOGIN FORM STYLES - WB */
/* --------------------------- */


/* VARIABLES DE COLOR */

body[data-theme="prestamos"] {
    --primary-color: #0070D9;
    --secondary-color: #0BB2E5;
    --secondary-light: #DBF6FF;
    --gradient: linear-gradient(145deg, rgba(0, 198, 251, 1) 25%, rgba(0, 91, 234, 1) 100%);
}

body[data-theme="ventas"] {
    --primary-color: #02aa56;
    --secondary-color: #39d688;
    --secondary-light: #39d68820;
    --gradient: linear-gradient(145deg, #49BA64 25%, #35c957 100%);
}

/* HELPER CLASES */
.not-padding {
    padding: 0 !important;
}

.login-container {
    display: flex;
    flex-direction: row;
    min-height: 100%;
    /* max-width: 1600px; */
    overflow: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hide-container {
    display: none !important;
}

/* HERO */

.main-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    /* background-image: url('../img/bck-blue.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; */
    background-color: #FEE1E1;
}

.img-bck{
    position: fixed;
}

.bck-1{
    top: 25px;
    left: 250px;
    width: 250px;

}
.bck-2{
    bottom: -150px;
    right: 350px;
    width: 450px;
}

.agendarBtn{
    background-color: #AD0404;
    color: #fff;
    border: none;
    border-radius: 5px;
    height: 30px;
    width: 100%;
    font-size: 0.9em;
}

.agendarBtn:hover{
    background-color: #9d0505 !important;
}

.container {
    background-color: #fff;
    /* padding: 0 0 5px 0; */
    width: 60%;
    /* border: 1px solid red; */
    border-radius: 5px;
    box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
    padding: 10px;
}

.registro-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
}

.registro-logo img {
    max-width: 250px;
}

.fContainer {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#tblCitas{
    /* width: 100%; */
    /* display: block; */
}

table.dataTable {
    /* width: 100%; */
  }

/* #tblCitas_wrapper{
    width: 100% !important;
} */

.form-inline{
    justify-content: center !important;
    width: 100% !important;
}

.table-section{
    width: 100%;
    max-width: 100%;
/*     overflow: hidden;
    overflow-x: scroll; */
}

/* .inp-container {
    width: calc(100% - 500px);
} */

.btn-search{
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-btn{
    width: 100%;
    height: 40px;
    outline: none !important;
    border: none !important;
    border-radius: 10px;
    background-color: #AD0404;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover{
    background-color: #9d0505 !important;
}

.login-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 198, 251);
    background: var(--gradient);
    padding: 40px 50px;
}

.login-hero .wrapper {
    display: flex;
    flex-direction: column;
    max-width: 660px;
}

.login-hero .heading h1,
.heading h1 {
    color: #fff;
    font-family: "Lato";
    font-weight: 800 !important;
    max-width: 420px;
}

.heading h1.dark-text {
    color: #454662 !important;
}

.login-hero .image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-hero .image img {
    max-width: 460px;
    transform: scale(1.1) translateY(-16px);
}

.features-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
}

.features-wrapper .feature {
    display: flex;
    flex-direction: column;
    width: 30%;
    color: #fff;
    font-size: 16px;
    font-family: "Lato";
    font-weight: 600;
}

.features-wrapper .feature img {
    max-width: 55px;
    margin-bottom: 22px;
}

img.inventario-icon {
    width: 46px;
}

/* FORM */
#login-form {
    max-width: 400px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header .title {
    font-size: 30px !important;
    font-family: "Lato";
    color: #454662;
    font-weight: 800;
}

.form-header .logo {
    margin-bottom: 40px !important;
}

.form-container {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* button.custom-btn, */
a.custom-btn,
button.custom-btn-secondary,
a.custom-btn-secondary {
    width: 100% !important;
    border-radius: 3px !important;
    background-color: var(--primary-color);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-color: #00000001 !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #fff !important;
    transition: all .2s ease;
}

button.custom-btn:hover,
a.custom-btn:hover {
    background-color: var(--secondary-color);
}

button.custom-btn-secondary,
a.custom-btn-secondary {
    width: auto !important;
    background-color: var(--secondary-light);
    color: var(--primary-color) !important;
    padding-left: 20px;
    padding-right: 20px;
}

button.custom-btn-secondary:hover,
a.custom-btn-secondary:hover {
    color: #fff !important;
    background: var(--primary-color);
}

/* Form inputs */
#login-form .custom-btn {
    margin-top: 40px;
}

#login-form input[type="text"] {
    margin-bottom: 40px;
}

/* Login */
#login-form input[type="text"],
#login-form input[type="password"],
/* Register */
#register-form input[type="text"],
#register-form input[type="password"],
#register-form input[type="tel"],
#register-form input[type="email"] {
    text-align: left !important;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999999;
    padding: 22px 15px;
    position: relative;
}

#register-form input[type="text"],
#register-form input[type="password"],
#register-form input[type="tel"],
#register-form select,
#register-form input[type="email"] {
    margin-bottom: 10px;
}

/* Form validations calss */
#login-form .form-group.error input[type="text"],
#login-form .form-group.error input[type="password"] {
    border-color: #FF3838 !important;
}

#login-form .form-group.error input[type="text"].form-control.valid,
#login-form .form-group.error input[type="password"].form-control.valid {
    border-color: #999999 !important;
}

/* #login-form input[type="text"]::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    color: #999999;
    position: absolute;
} */

.input-icon {
    z-index: 1000;
    position: absolute;
    left: 93%;
    top: 40%;
    font-size: 18px;
    background: #fff;
    color: #999999;
}

#login-form .keep-session-help-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-link,
.new-account p {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.new-account p {
    color: #454662 !important;
}

.new-account {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
}

.credits {
    margin-top: 10px !important;
}

.credits a,
.credits div {
    color: var(--primary-color) !important;
}


/* REGISTER FORM STYLES */
.main-wrapper {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

/* Formulario */
.form-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.form-cont .form {
    max-width: 380px;
}

.hero-new-account {
    margin: 20px;
    border-radius: 16px;
    background-color: var(--secondary-light);
    width: 50%;
}

#register-form #stepsTabContent label b {
    font-weight: 600 !important;
    color: #454662;
}

#business_type {
    display: flex;
    justify-content: space-between;
}

#business_type .rad-with-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    border: 1px solid #E0E0E0;
    /* cursor: pointer; */
    padding: 8px 15px;
    font-size: 14px;
}

#business_type .rad-with-details label {
    margin-bottom: 0px !important;
    margin-right: 10px !important;
    cursor: pointer;
}

#business_type input:checked~.rad-with-details {
    background-color: var(--secondary-color) !important;
}

#business_type .rad-with-details .more-info i {
    font-size: 15px !important;
    margin-right: 17px;
    color: var(--primary-color) !important;
}

#business_type .inline-el {
    margin: 0;
    width: 48%;
}

#stepsTabs {
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    margin-bottom: 30px;
    padding: 5px !important;
    border-radius: 80px;
}

#step1-tab,
#step2-tab {
    padding: 7px 15px;
    display: inline-block;
    border-radius: 60px;
    border: none;
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
    width: 100%;
}

li.nav-item {
    width: 49.5%;
}

li.nav-item>a.nav-link.active {
    color: #fff !important;
    background: var(--primary-color);
}

.nav-tabs .nav-item .nav-link:before {
    display: none;
}

.form-title {
    font-weight: 700;
    color: #454662;
    margin: 40px 0 20px 0;
    font-size: 25px;
    text-align: center;
}

.form-check .form-check-label {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.login-check {
    margin: 0 !important;
}

/* VIDEO */
.video-btn {
    color: #454662;
    border: none;
    transition: all .2s ease;
    display: inline-block;
}

.video-btn:hover {
    transform: translateY(-10px) scale(1.05);
}

.hero-new-account {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
}

.hero-new-account::before,
.hero-new-account::after {
    content: url("../images/login/money-sign.png");
    position: absolute;
    z-index: 100;
    animation: rotation 20s linear infinite backwards;
}

.hero-new-account::before {
    top: 7%;
    left: -3.5%;
}

.hero-new-account::after {
    bottom: 13%;
    right: 9.5%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.info-holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 460px;
    height: 100%;
}

.video-description {
    text-align: left;
}

button.custom-btn:disabled {
    filter: grayscale(100%) !important;
}

/* .registro-logo img {
    max-width: 200px;
} */

/* MEDIAQUIERIES - RESPONSIVE */

/* ---------------- */
/* ---- TABLET ---- */
/* ---------------- */

@media (max-width: 991px) {

    .login-hero,
    .hero-new-account {
        display: none;
    }

    .form-container {
        min-width: 100% !important;
        padding: 0 25px;
    }

    /* Register */
    .form-cont {
        width: 100%;
    }

    .form-cont .form {
        max-width: 580px;
    }

    #mList {
        display: none !important;
    }

    .main-wrapper {
        justify-content: center;
    }

    .form-cont .form {
        width: 90% !important;
    }
}

@media screen and (max-width: 811px) {
/*     table tr th:nth-child(4) {
        display: none;
    } */
    
}
@media screen and (max-width: 730px) {
/*     table tr th:nth-child(3) {
        display: none;
    } */

    .container{
        width: 80%;
    }
    
}

/* ---------------- */
/* ---- MOBILE ---- */
/* ---------------- */

@media (max-width: 475px) {
    .registro-logo img {
        max-width: 200px;
    }
}
@media (max-width: 450px) {
    .container{
        width: 90%;
    }
}

@media (max-width: 375px) {}

@media (max-width: 320px) {}