@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

* {
    font-family: 'Roboto Condensed', sans-serif;
}

body, html, .wrapper {
    height: 100% !important;
}

*, *:before, *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
}

a {
    cursor: pointer;
    text-decoration: none;
}

textarea {
    resize: none;
    width: 100%;
}

iframe {
    height: 350px;
    width: 100%;
}

label {
    margin: 0;
}

i {
    vertical-align: 0 !important;
}

/*
    HELPERS
*/
.cursor_pointer, .cursor-pointer {
    cursor: pointer;
}

[draggable] {
    cursor: grab;
}

#login-background {
    background-color: #EBEDEF;
    background-image: url("../img/bg.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 700px;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

/*
    AJUSTE CONTROLES 
*/

.c-show {
    background: rgba(0,0,0,.2);
}

.fa, .fas {
    vertical-align: middle;
}

#table_data td input,
#table_data td select {
    width: 100%;
}

td {
    vertical-align: middle !important;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: none;
    max-width: 600px;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.SumoSelect {
    width: 100%;
    max-width: 450px;
}

/* Media Query */

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
    #title-login {
        font-size: 30px;
    }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
    #title-login {
        font-size: 25px;
    }
    .SumoSelect {
        width: 100%;
    }
}

/* CSS para prevenir autocompletar de contraseña del navegador */
.password-remember-disable {
    text-security:disc;
    -webkit-text-security:disc;
}

/* CSS para limitar el texto mostrado en un elemento html (200px de texto) */
.truncate-text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* CSS para hacer responsivo el menu de TAB's de CoreUI */
@media only screen and (max-width: 990px) {
    .nav-tabs .nav-item {
        width: 100%;
        border: 1px solid #d8dbe0 !important;
        border-radius: 5px;
        color: black;
    }
}

/* CSS para Timer */
#utcTimer {
    line-height: 3;
    font-weight: bold;
}

/* CSS para Timer */
.seccSaldoCuentaOrdenante {
    line-height: 3;
    font-weight: bold;
}

/* CSS para switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* DataTables Collection Button Menu */

.exportButtonsDTRight {
    margin-left: 10px !important;
}

.dt-button-collection {
    left: 6px !important;
}