@charset "utf-8";
@import url("reset.css");
@import url("xxxl-grid.css");

/*------------------------------------------------------------------
VARIABLES
-------------------------------------------------------------------*/

 :root {
    --primario: #0072A8;
    --secundario: #006A93;
    --tercero: #005373;
    --cuarto: #004567;
    --primario01: #14BBFB;
    --primario02: #03B9FF;
}


/* ----------------------------------------------------------------
Bootstrap Adjustments
-----------------------------------------------------------------*/


/*
@media (min-width: 1440px) {
    .container {
        width: auto;
        max-width: 1350px;
    }
}

 */


/* ----------------------------------------------------------------
Basic
-----------------------------------------------------------------*/

iframe {
    width: 100%;
    border: 0 !important;
    overflow: hidden !important;
}

html,
body {
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
}


/* ----------------------------------------------------------------
LOGIN
-----------------------------------------------------------------*/

.bg-login {
    border-radius: 15px;
    background: #ffff;
    box-shadow: 20px 5px 30px #bebebe;
    padding: 50px;
    margin-top: 80px;
}


/* ----------------------------------------------------------------
BACKGROUNDS
-----------------------------------------------------------------*/

.bg-gray {
    background-color: #F9FBFE;
}

.bg-gray2 {
    background-color: #a0a1a4;
}

.bg-blue {
    background-color: var(--primario) !important;
    color: #fff;
}

.bg-black {
    background-color: #000;
}


/* ----------------------------------------------------------------
BOTONES
-----------------------------------------------------------------*/

.btn-primario {
    color: #fff;
    background-color: var(--primario);
    border-color: var(--primario);
}

.btn-primario:hover {
    color: #fff;
    background-color: var(--secundario);
    border-color: var(--secundario);
}

.btn-secundario {
    color: #fff;
    background-color: var(--tercero);
    border-color: var(--tercero);
}

.btn-secundario:hover {
    color: #fff;
    background-color: var(--secundario);
    border-color: var(--secundario);
}

.btn-cancelar {
    color: rgb(125, 123, 123);
    background-color: #dddee1;
    border-color: #dddee1;
    font-weight: 500;
}

.btn-cancelar:hover {
    color: #fff;
    background-color: #606162;
    border-color: #606162;
    font-weight: 500;
}


/* ----------------------------------------------------------------
TABLE
-----------------------------------------------------------------*/

.bg-table {
    border-radius: 15px;
    background: #ffff;
    box-shadow: 20px 5px 30px #bebebe;
    padding: 50px;
}

.form-check-input:checked {
    background-color: var(--tercero);
    border-color: var(--tercero);
}

.btn-outline-primary {
    color: var(--cuarto);
    border-color: var(--cuarto);
}

.btn-outline-primary:hover {
    background-color: var(--cuarto);
    border-color: var(--cuarto);
}


/* ----------------------------------------------------------------
TEXT COLOR
-----------------------------------------------------------------*/

.text-blue {
    color: var(--tercero);
}

.text-blue-2 {
    color: var(--primario);
}

.text-red {
    color: #DF6049;
}

.text-green {
    color: #7ed472;
}

.text-gray {
    color: #7E7D7D;
    ;
}


/* ----------------------------------------------------------------
ICON SIZE
-----------------------------------------------------------------*/

.icon-size {
    font-size: 20px;
    color: var(--cuarto);
}

.icon-size:hover {
    color: var(--primario01);
    cursor: pointer;
}

.icon-size-2 {
    font-size: 20px;
    color: #fff;
}

.icon-size-3 {
    font-size: 30px;
    margin-left: 5px;
    color: #fff;
}

.icon-size-4 {
    font-size: 30px;
    color: var(--cuarto);
}

.icon-size-5 {
    font-size: 30px;
    color: #000;
}


/* ----------------------------------------------------------------
BACKGROUNDS CSS
-----------------------------------------------------------------*/

.bg-generico {
    border-radius: 15px;
    background: #ffff;
    box-shadow: 20px 5px 30px #bebebe;
    padding: 50px;
}

.bg-generico2 {
    border-radius: 15px;
    background: #ffff;
    box-shadow: 20px 5px 30px #bebebe;
    padding: 30px 20px;
}

.bg-predictiva {
    border-radius: 15px;
    background: #ffff;
    box-shadow: 20px 5px 30px #bebebe;
    padding: 0px 0px 5px 0px;
}

.bg-meta {
    background-color: #7ed472;
    color: #fff;
    font-weight: bold;
}

.bg-meta2 {
    background-color: #dfca96;
    color: #fff;
    font-weight: bold;
}

.bg-meta3 {
    background-color: #DF6049;
    color: #fff;
    font-weight: bold;
}

.linea {
    background-color: var(--primario);
    padding: 2px;
    margin-right: 70%;
}

.linea2 {
    background-color: var(--primario);
    padding: 2px;
}

.linea3 {
    background-color: var(--primario);
    padding: 2px;
    margin-right: 80%;
}

.estatus-promesa {
    padding: 0px 5px;
    color: #fff;
    font-weight: bold;
}

/* .vencida {
    background-color: #DF6049;
    padding: 0px 5px;
    color: #fff;
    font-weight: bold;
}

.vigente {
    background-color: #dfca96;
    padding: 0px 5px;
    color: #fff;
    font-weight: bold;
}

.vigenteG {
    background-color: #7ed472;
    padding: 0px 5px;
    color: #fff;
    font-weight: bold;
} */

.cursor {
    cursor: pointer;
}


/*CIRCLE*/

.circle {
    border-color: #000;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 200px;
    height: 200px;
    transition: 0.8s;
}

.circle:hover {
    border-color: #000;
    border-width: 18px;
    border-style: solid;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 200px;
    height: 200px;
    transition: 0.8s;
}

.circle .contenido {
    width: 100%;
}


/*ICON*/

.password-icon {
    float: right;
    position: relative;
    margin: -25px 10px 0 0;
    cursor: pointer;
}

.bg-icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
    color: var(--cuarto);
    font-size: 30px;
}

.bg-icon-delete {
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
    color: #DF6049;
    font-size: 30px;
}

.bg-icon:hover {
    background-color: var(--primario);
    border-radius: 50%;
    padding: 3px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.bg-icon-delete:hover {
    background-color: #DF6049;
    border-radius: 50%;
    padding: 3px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/*NAVBAR*/

.main-menu:hover,
nav.main-menu.expanded {
    width: 250px;
    overflow: visible;
}

.main-menu {
    background: #000;
    border-right: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 40px;
    overflow: hidden;
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1, 1);
    z-index: 1000;
}

.main-menu>ul {
    margin: 7px 0;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li>a {
    position: relative;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    color: #999;
    font-family: arial;
    font-size: 14px;
    text-decoration: none;
    -webkit-transform: translateZ(0) scale(1, 1);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.main-menu .nav-icon {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

.main-menu .nav-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 190px;
    font-family: 'Titillium Web', sans-serif;
}

.main-menu>ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.no-touch .scrollable.hover {
    overflow-y: hidden;
}

.no-touch .scrollable.hover:hover {
    overflow-y: auto;
    overflow: visible;
}

a:hover,
a:focus {
    text-decoration: none;
}

nav {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

nav ul,
nav li {
    outline: 0;
    margin: 0;
    padding: 0;
}

.main-menu li:hover>a,
nav.main-menu li.active>a,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,
.dashboard-page nav.dashboard-menu ul li.active a {
    color: #fff;
    background-color: #000000;
}

.area {
    float: left;
    background: #e2e2e2;
    width: 100%;
    height: 100%;
}

.progress1 {
    background-color: #84a35c;
}

.progress2 {
    background-color: #dfca96;
}

.progress3 {
    background-color: #000;
}

.progress4 {
    background-color: #bc2929;
}

.size-img {
    width: 40%;
    border-radius: 50%;
}


/* MODAL MOVIBLE*/

#dragable_modal {
    position: relative;
}

#dragable_modal .modal-dialog {
    position: fixed;
    max-width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background: var(--white);
    margin: 0;
}

#dragable_modal .modal-content {
    height: 400px;
    overflow: hidden;
    resize: both;
    width: 500px;
}

#dragable_modal .modal-body {
    height: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

#dragable_modal .modal-header {
    background: var(--dark);
    color: var(--white);
    border-bottom: 0px;
    padding: 0px;
}

#dragable_modal .modal-header h3 {
    color: var(--white);
    font-size: 18px;
}

#dragable_modal .close_btn {
    top: -2px;
    margin: 0px !important;
    opacity: 1;
    width: 30px;
    height: 30px;
    padding: 0px;
    color: #fff;
}

.custom_tab_on_editor {
    background: var(--orange);
    padding: 0px;
    margin: 0px;
}

.custom_tab_on_editor .nav-item {
    margin-bottom: 0px;
}

.custom_tab_on_editor .nav-item .nav-link {
    min-width: 100px;
    text-align: center;
    border: 0px solid transparent;
    border-radius: 0px;
    padding: 10px;
    color: var(--white)
}

.custom_tab_on_editor .nav-item .nav-link:hover {
    color: #ffffff;
    border-width: 0px;
    background: #ffb586;
    border-bottom: 0px solid transparent;
}

.custom_tab_on_editor .nav-item.show .nav-link,
.custom_tab_on_editor .nav-link.active {
    color: #ffffff;
    border-width: 0px;
    background: #ffb586;
    border-bottom: 0px solid transparent;
    position: relative;
}

.dragable_touch {
    cursor: move;
}

.custom_tab_on_editor .nav-item.show .nav-link:before,
.custom_tab_on_editor .nav-link.active:before {
    content: '';
    border-bottom: 10px solid var(--white);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}


/* ----------------------------------------------------------------
MARGINS
-----------------------------------------------------------------*/

.mt-6 {
    margin-top: 30px;
}


/* ----------------------------------------------------------------
CONTENIDO METAS
-----------------------------------------------------------------*/

.contenido p:before {
    content: "META: 100";
    color: #7E7D7D;
}

.contenido p:hover:before {
    content: "META DIARIA: 100";
    cursor: pointer;
}

.contenido2 p:before {
    content: "META: 300";
    color: #7E7D7D;
}

.contenido2 p:hover:before {
    content: "META DIARIA: 12";
    cursor: pointer;
}

.contenido3 p:before {
    content: "META: $200,00";
    color: #7E7D7D;
}

.contenido3 p:hover:before {
    content: "META DIARIA: $6,700";
    cursor: pointer;
}

.contenido4 p:before {
    content: "META: $60,000";
    color: #7E7D7D;
}

.contenido4 p:hover:before {
    content: "META DIARIA: $2,000";
    cursor: pointer;
}


/* ----------------------------------------------------------------
SWIPER RANKING
-----------------------------------------------------------------*/

.mySlides {
    display: none;
}


/* ----------------------------------------------------------------
GESTIONES
-----------------------------------------------------------------*/
.draggable{
    position: fixed;
    bottom: 0;
    right: 50px;
    width: 70%;
    max-width: 900px;
}
.draggable-head{
    background: #000;
    border-bottom: 1px gray solid;
    border-radius: 5px 5px 0 0;
    height: 50px;
    width: 100%;
}
.draggable-head h5{
    color: #FFF;
    padding-top: 10px;
    padding-left: 5px;
}
.draggable-body{
    background: #FFF;
    border: 1px gray solid;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    padding: 10px 15px;
    width: 100%;
}
.btn-draggable{
    background: none;
    border: none;
    color: white;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
}

/* ----------------------------------------------------------------
CLASS EXTRA
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
DEPURAR
-----------------------------------------------------------------*/


/*
* {
background-color: rgba(255, 0, 0, .2);
}

* * {
background-color: rgba(0, 255, 0, .2);
}

* * * {
background-color: rgba(0, 0, 255, .2);
}

* * * * {
background-color: rgba(255, 0, 255, .2);
}

* * * * * {
background-color: rgba(0, 255, 255, .2);
}

* * * * * * {
background-color: rgba(255, 255, 0, .2);
}

* * * * * * * {
background-color: rgba(255, 0, 0, .2);
}

* * * * * * * * {
background-color: rgba(0, 255, 0, .2);
}

* * * * * * * * * {
background-color: rgba(0, 0, 255, .2);
}
*/
