/*********** AQUI VAN TODOS LOS ESTILOS DE CSS PERSONALIZADOS ***********/

/* Colores base */
:root {
    --blanco: #fff;
    --negro: #000000;
    --rojo: #dc3545;
    --verde: #AAD80E;
    --azul: #0d6efd;
    --celeste: #0dcaf0;
    --amarillo: #FFFF00;
}

.primary-color{
    color: var(--verde);
}

.navbar-shadow{
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--blanco);
}

a{
    color: #007bff;
    text-decoration: none;
    transition: 0.5s;
}

.container-json{
    background: #f1f1f1;
}


/* Inicio select2 multiple */
.select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999 !important;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.select2-selection__choice__remove:hover{
    color: #000 !important;
}

.select2-selection__choice__display {
    cursor: default;
    padding-left: 25px;
    padding-right: 5px;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice{
    float: none;
    margin-bottom: 2px;
}

.cursor-pointer{
    -webkit-cursor: pointer;
    -moz-cursor: pointer;
    -o-cursor: pointer;
    cursor: pointer;
}
  /* Fin select2 multiple */

.badge-menu{
    float: right;
    margin-top: -30px;
    margin-right: 10px;
}

.no-intermitente{
    color: var(--verde);
    font-size: 20px;
}

.intermitente{
    border-radius: 50%;
    box-shadow: 0px 0px 20px;
    animation: infinite resplandorAnimation 2s;
    color: var(--celeste);
    font-size: 20px;
}

@keyframes resplandorAnimation {
    0%,100%{
        box-shadow: 0px 0px 20px;
    }
    50%{
        box-shadow: 0px 0px 0px;
    }
}

.border-div-segundo-plano{
    border-radius: 10px;
    box-shadow: 0 0 15px #d3d3d3;
    background: #fff;
}

.star-color{
    color: var(--amarillo);
}


.get-started-btn2 {
    margin-left: 22px;
    background: var(--verde);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    border: none;
    margin-top: 9px;
  }

  .get-started-btn2:hover {
    background: var(--verde-dark);
    color: #fff;
  }

  @media (max-width: 768px) {
    .get-started-btn2 {
      margin: 0 15px 0 0;
      padding: 6px 18px;
    }
  }
