.scrollbar-linkdepago::-webkit-scrollbar {
    width: 8px;     /* Tamaño del scroll en vertical */
    height: 8px;    /* Tamaño del scroll en horizontal */
    /* display: none;  Ocultar scroll */
}

.scrollbar-linkdepago::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
.scrollbar-linkdepago::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
/* Cambiamos el fondo cuando esté en active */
.scrollbar-linkdepago::-webkit-scrollbar-thumb:active {
    background-color: #999999;
}
/* Ponemos un color de fondo y redondeamos las esquinas del track */
.scrollbar-linkdepago::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}
/* Cambiamos el fondo cuando esté en active o hover */
.scrollbar-linkdepago::-webkit-scrollbar-track:hover,
.scrollbar-linkdepago::-webkit-scrollbar-track:active {
background: #d4d4d4;
}

.scrollbar-linkdepago {
    height: auto !important;
    max-height: 700px !important;
    overflow-y: auto !important;
}

/* Para iconos de menu derecho */
.svg-icon.svg-icon-custom-blue1 svg g [fill] {
    fill:#002E74!important;
}

.svg-icon.svg-icon-custom-blue2 svg g [fill] {
    fill: #124F98!important;
}

.svg-icon.svg-icon-custom-skyblue svg g [fill] {
    fill:#008DCF!important;
}

.svg-icon.svg-icon-custom-yellow1 svg g [fill] {
    fill: #EDCE02!important;
}

.svg-icon.svg-icon-custom-yellow2 svg g [fill] {
    fill: #F0DA14!important;
}

.svg-icon.svg-icon-custom-orange svg g [fill] {
    fill: orange!important;
}

/* General */
.text-custom-blue1 {
    color:#002E74!important;
}

.text-custom-blue2 {
    color: #124F98!important;
}

.text-custom-skyblue {
    color:#008DCF!important;
}

.text-custom-yellow1 {
    color: #EDCE02!important;
}

.text-custom-yellow2 {
    color: #F0DA14!important;
}

.text-custom-orange {
    color: #ffa500!important;
}

.bg-custom-blue1 {
    background-color:#002E74!important;
}

.bg-custom-blue1:hover {
    background-color:#124F98!important;
}

.bg-custom-blue2 {
    background-color: #124F98!important;
}

.bg-custom-blue2:hover {
    background-color: #002E74!important;
}

.bg-custom-skyblue {
    background-color:#008DCF!important;
}

.bg-custom-skyblue:hover {
    background-color:#06AEFF!important;
}

.bg-custom-yellow1 {
    background-color: #EDCE02!important;
}

.bg-custom-yellow1:hover {
    background-color: #F0DA14!important;
}

.bg-custom-yellow2 {
    background-color: #F0DA14!important;
}

.bg-custom-yellow2:hover {
    background-color: #EDCE02!important;
}

.bg-custom-orange {
    background-color: orange!important;
}

.bg-custom-orange:hover {
    background-color: #ffbb00!important;
}

.btn-custom-skyblue {
    background-color: #008DCF!important;
    color: white!important;
}

.btn-custom-skyblue:hover {
    background-color: #06AEFF!important;
    color: white!important;
}

.btn-custom-skyblue .svg-icon svg g [fill] {
    fill: white;
}

.btn-custom-orange {
    background-color: #ffa500!important;
    color: white!important;
}

.btn-custom-orange:hover {
    background-color: #ffbb00!important;
    color: white!important;
}

.btn-custom-orange .svg-icon svg g [fill] {
    fill: white;
}

/* Checkbox */
/* los checkboxes */
input:checked ~ .checkmark {
    background-color: #008DCF;
}

input:disabled ~ .checkmark {
    background-color: #ccc;
}

/* Contenedor */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
}

/* escondemos el default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* creamos un custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* Al pasar el mouse encima, lo ponemos gris */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox:hover input:checked ~ .checkmark {
    background-color: #06AEFF;
}

.custom-checkbox:hover input:disabled ~ .checkmark {
    background-color: #ccc;
}

/* creamos el marcador (escondido al no seleccionar) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* mostramos el marcador al seleccionar */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* estilo del marcador */
.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}