@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600'); 

@import url('risk-bar.css');

html,body{
    /* font-family: 'Source Sans Pro', sans-serif; */
    /* background-color: #f9f9f9; */
    /* color: #20366a; */
    /* #192440 */
    height: 100%;
}
a{
    text-decoration: none;
}
.t4{
    font-size: 4px;
}
.t10{
    font-size: 10px;
}
.t12{
    font-size: 12px;
}
.t13{
    font-size: 13px;
}
.t14{
    font-size: 14px;
}
.t15{
    font-size: 15px;
}
.t16{
    font-size: 16px;
}
.t18{
    font-size: 18px;
}
.t20{
    font-size: 20px;
}
.t22{
    font-size: 22px;
}
.b300{
    font-weight: 300 !important;
}
.b400{
    font-weight: 400 !important;
}
.b600{
    font-weight: 600 !important;
}
.b800{
    font-weight: 800 !important;
}
.c900{
    color: #20366a;
}
.c800{
    color: #71b6e4;
}
.c700{
    color: #2f58a8;
}
.c600{
    color: #8999a0;
}
.c500{
    color: #1f61fc;
}
.c400{
    color: #ff9800;
}
.c300{
    color: #27ad47;
}
.c200{
    color: rgb(139, 140, 145);
}
.c100{
    color: white;
}
.bg900{
    background-color: #1f61fc !important;
}
.bg800{
    background-color: #71b6e4 !important;
}
.bg700{
    background-color: #2f58a8 !important;
}
.bg600{
    background-color: #8999a0 !important;
}
.bg500{
    background-color: #20366a !important;
}
.s-red{
    color: #f33636 !important;
}
.br3{
    border-radius: 3px;
}
.br4{
    border-radius: 4px;
}
.consolas{
    font-family: 'Consolas', sans-serif;
}
.source-sans{
    font-family: 'Source Sans Pro', sans-serif;
}
.strong500{
    font-weight: 500;
}
.strong600{
    font-weight: 600;
}
.logotipo{
    background-image: url('../img/logo.svg');
    background-repeat: no-repeat;
    width: 180px;
    height:42px ;
    /* margin:auto; */
}
@media (max-width: 576px) { 
    .logotipo{
        height: 32px;
    }
}

.cursor-pointer{
    cursor: pointer;
}
.box-body{
    background-color: white;
    padding: 7px;
    border-radius: 5px;
}
/* formularios */

input:disabled{
    background-color: #ebf7f7;
}
textarea:disabled{
    background-color: #ebf7f7 !important ;
}

.header-white{
    background-color: white !important;
    color: #203566 !important;
    text-shadow: 0px 0px  #f1f1f1 !important;
    border-bottom: 1px solid rgba(28, 31, 182, 0.061);
}

.item-menu{
    border-bottom: 1px solid #e2e7e9;
    padding: 10px 0px 10px 0px;
    background-color: rgb(245, 245, 250);
    /* background-color: #edebeb; */
}
.item-menu:hover{
    background-color: #d6e6f6;
}

/* para los formularios */
.nota{
    /* background-color: #95cdf19a;
    padding: 5px;
    padding-left: 12px;
    border-radius: 4px; */
}
.sub-espace-resaltado{
    background-color: #f3f5f7;
    padding: 5px;
    border-radius: 7px;
    /* border: solid 1px #ece8e8; */
}

/* para el efecto de pulso */
.pulse-icon{
    position: relative;
    display: inline-block;
}
.pulse-icon .icon-wrap{
    text-align: center;
    position:relative;
    z-index: 2;
    animation: grow-shrink 1.1s ease-out .15s infinite;
}
.pulse-icon .circle{
    border-radius: 100%;
    width: 40px;
    height: 40px;
}
.pulse-icon .btn:active, .pulse-icon .btn:focus{
    box-shadow: none;
}
.pulse-icon .pulse-1{
    border: solid 4px rgba(4, 122, 233, 0.616);
    width: 60px;
    height: 60px;
    top: -25.1%;
    left: -25.3%;
}
.pulse-icon .pulse{
    position: absolute;
    animation: pulse-wave 1.1s .14s linear infinite both;
    border-radius: 50%;
}
@keyframes pulse-wave{
    0%{
      opacity: 0;
      transform: scale(0.1);
    }
    50%{
      opacity: 1;
      transform: scale(0.8);
    }
    100%{
      opacity: 0;
      transform: scale(1.0);
    }
}
@keyframes grow-shrink{
    0%{
      transform: scale(1);
    }
    15%{
      transform: scale(1.03);
    }
    30%{
      transform: scale(1);
    }
}

.float-up-btn{
    display:none;
    position:fixed;
    right: 50px;
    bottom: 50px;
}
/* lista de correos */
.buttons .btn, table .btn {
    margin: 5px 0px 5px 0px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
}
.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: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.switch input:checked + .slider {
    background-color: #0c70f3;
}
  
.switch input:focus + .slider {
    /* box-shadow: 0 0 1px #2196F3; */
}
  
.switch input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}
  
.slider.round {
    border-radius: 30px;
    
}
  
.slider.round:before {
    border-radius: 50%;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,.45);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,.45);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,.45);
}
@media (min-width: 576px){
    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
}
/* parametros formulario */
table .btn-sm, .header-white .btn-sm, .small-btn .btn-sm{
    padding: 3px 12px;
    font-size: 12.5px;
}
.card-columns-btn .card{
    border: 1px solid rgba(139, 139, 139, 0.125)
}
.card-columns-btn td, .card-columns-btn th{
    padding: 0 5px 0 5px;
    text-align: center;
}
.modal-body .btn-sm{
    padding: 0px;
    padding: 1px 4px 1px 4px;
    /* margin:30px; */
}
.modal-body .btn-secondary{
    background-color: white;
    color: #c4cbce;
    border: #c4cbce;
}
.modal-body td{
    padding: 0px 7px 0px 7px;
    vertical-align: 50%;
    text-align: center;
}
.list-header{
     border: 0px;
    color: white;
    background-color:rgb(11, 171, 245);
    text-shadow: 1px 1px #31313127;
    border-bottom: 1px solid rgba(214, 211, 24, 0.061); 
}
.user img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px #50505050;
}
.user:link{
    text-decoration: none;
}
.content-popover{
    padding: 10px;
    width: 320px;
}
/* login */
.login-container{
    height: 100%;
    /* background-color: #192440; */
    background-color: #f3f3f3;
}
/* notificacion de pruebas */
.notificacion-pruebas{
    position: sticky;
    background-color: #28a745;
    color: white;
    width: 100%;
    z-index: 1000;
    bottom: 0px;
    /* height: 400px; */
}
/* dashboard */
.dashboard-shadow{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}
.size-icon-dashboard{
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

.tortas{
    background-image: url('../img/panel/tortas.svg');
}
.lineas{
    background-image: url('../img/panel/lineal.svg');
}
.barras{
    background-image: url('../img/panel/barras.svg');
}
.card-hover:hover{
    /* background-color: #f5f8fc; */
    transform: scale(1.02);
    /* border: solid 1px #f1f1f1; */
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}
.sintesis-icon{
    background-image: url('../img/panel/__dashboard-realtime-map.svg');
}
.excel-icon{
    background-image: url('../img/panel/__dashboard-excel.svg');
}
.dashboard-icon{
    background-repeat: no-repeat;
    margin:auto;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
}
.chart{
    width: 100%; 
    height: 100%;
}
.chart-est{
    width:100%;
    height: 450px;
}
.chart-secondary{
    width: 100%;
    height: 250px;
}
/* tamaño iconos */
.s15{
    max-width: 15px;
    max-height: 15px;
}
.s20{
    max-width: 20px;
    max-height: 20px;
}
.s25{
    max-width: 25px;
    max-height: 25px;
}
.s30{
    max-width: 30px;
    max-height: 30px;
}
.s35{
    max-width: 35px;
    max-height: 35px;
}
/* despliegue de información y edición */
.table-informacion td, .table-informacion th{
    padding: .50rem;
    border-top: 0px ;
}
.table-informacion .btn{
    margin: 0px;
}
#personas-div{
    background-color: #f0f7ff;
    padding: .75rem;
    border-radius: 5px;
}
/* persistencia días */
.range-slider {
    margin: 0px 0 10px 0%;
}
  
.range-slider {
    width: 100%;
}
  
.range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #20366a;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
    background: #1f61fc;
}
.range-slider__range:active::-webkit-slider-thumb {
    background: #1f61fc;
}
.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #20366a;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
    background: #1f61fc;
}
.range-slider__range:active::-moz-range-thumb {
    background: #1f61fc;
}
.range-slider__range:focus::-webkit-slider-thumb {
    /* box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c; */
}
  
.range-slider__value {
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #20366a;
    padding: 5px 10px;
    margin-left: 8px;
}
.range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid #20366a;
    border-bottom: 7px solid transparent;
    content: '';
}
/* boton desactivar */
.show-focus{
    display: inline;
}
.hide-show:hover .hide-focus{
    display: inline;
}
.hide-show:hover .show-focus{
    display: none;
}
.hide-show .hide-focus{
    display: none;
}
  /* estadísticas */
.btn-white{
    border: solid 1px #455a64;
    background-color: white;
}
/* radio buttons stadisticas */
.container-check {
    /* display: block; */
    position: relative;
    /* padding-left: 35px; */
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container-check input:checked ~ .btn-white {
    background-color: rgba(138, 218, 238, 0.562);
    font-weight: 600;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.table-consola{
    border: 1px solid #cecece;
    width: 100%;
    border-radius: 5px;
    /* border: 0px; */
}
.clr1{
    color: #259b24 !important;
}
.clr2{
    color: #ffeb3b !important;
}
.clr3{
    color: #ff9800 !important;
}
.clr4{
    color: #e51c23 !important;
}
.clr5{
    color: #212121 !important;
}
.checkbox-filter label{
    position: relative;
    top:-3px;
}
/* enviar correo */
.select2-container--default .select2-selection--multiple{
    border: 1px solid #ced4da !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
/* iconos desactivados */
.inactive{
    -webkit-filter: opacity(50%);
    -moz-filter: opacity(50%);
    -ms-filter: opacity(50%);
    -o-filter: opacity(50%);
    filter: opacity(50%);
}
/* color picker */
.color-picker{
    /* rgb(255, 54, 121) */
    border: 0px;
    border-radius: 2px;
    width: 12px;
    height: 12px;
    position: relative;
    top: -2px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
    color: transparent !important;
}
.color-picker:hover{
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.75);
}
/* overlay */
.chartWithMarkerOverlay {
    position: relative;
    width: 700px;
}
.overlay-marker {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 53px;   /* chartArea top */
    left: 528px; /* chartArea left */
}
/* mapa de colores bolivia */
.dep-color{
    width: 10%;
    display: inline;
}
.color-desc{
    display: inline-block;
    background-color: #c2185b;
    width: 12px;
    height: 12px;
    border-radius: 2px;
}
/* dropzone */
#dropContainer{
    border:2px dashed rgb(180, 182, 187);
    border-radius: 7px;
    width: 100%;
    background-color: #f9f9f9;
}
#dropContainer.dragging{
    border-color: #0c70f3;
    background-color: rgb(242, 246, 248);
}
/* modal-body amenazas */
.modal-body .size-icon-dashboard{
    width: 27px;
    height: 27px;
}
/* modal subamenazas */
.subamenazas-check .form-group{
    margin-bottom: 0px;
}
/** vue */
[v-cloak] { display:none; }

/** scrollbox */ 
/* scroll */
.scrollbox {
	width: 100%;
	height: calc(100% - 160px);
	overflow: auto;
	visibility: hidden;
}
.scrollbox-content,
.scrollbox:hover,
.scrollbox:focus {
	visibility: visible;
}
.scrollbox::-webkit-scrollbar {
	background-color: rgba(0,0,0,0.125);
	width: 13px;
}
.scrollbox::-webkit-scrollbar-thumb {
	background-color: #007bff;
	border-radius: 100px;
}

/** vue-multiselect */
.multiselect--active {
    z-index: 10 !important;
}
.multiselect__tag, .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    /* background-color: #2b79df !important; */
    border: solid 1px #007bff !important;
    color:#0664df !important;
    background-color: rgba(160, 206, 255, 0.157) !important;
}
.multiselect__tag-icon::after, .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove{
    /* color: white !important; */
    color: #2b79df  !important;
}
.multiselect__tag-icon:hover, .multiselect__tag-icon:focus {
    /* background-color: rgba(0, 0, 0, 0.26) !important; */
    background-color: transparent !important;
}
.multiselect__tag-icon:hover::after{
    color: #0a356d !important;
}
.multiselect__option--highlight {
    background: rgb(65, 113, 184) !important;
}
/** para que select2 se parezca al otro multiselect */
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove{
    float: right;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice  {
    padding-left: 8px;
}

.link-nav{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none !important;
    margin: 0 3px;
}
.hover-parent .hover-child{
    visibility: hidden;
    transition: all 0.1s ease;
}
.hover-parent:hover .hover-child{
    visibility: visible;
}
.hover-parent .hover-child-opacity{
    opacity: 0.6;
}
.hover-parent:hover .hover-child-opacity{
    opacity: 1;
}

.separator-label{
    font-size: 17px;
    border: 0px;
    text-align: left;
    padding: 10px 10px;
    display: block;
    width: 100%;
    font-weight: bold;
    color:rgb(59, 59, 59);
    /* border-radius: 5px 5px 0px 0px; */
    margin-bottom: 4px;
    background-color: rgb(243, 243, 243);
}
.separator-label:hover{
    background-color: rgb(236, 236, 236);
}

/** text truncated with hover expand */
.hover-truncated {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hover-truncated:hover{
    overflow: visible; 
    white-space: normal; 
    width: auto;
    position: relative;
    background-color:#FFF;
}

/** alert colors */
.pill {
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
}
.pill-1{
    background-color: #259b24;
    color:white; 
}
.pill-2{
    background-color: #ffeb3b;
    color:black; 
}
.pill-3{
    background-color: #ff9800;
    color:black; 
}
.pill-4{
    background-color: #e51c23;
    color:white; 
}
