/*  Estilos para front de plugin */

.gestion-panel {
    background: white;
    border: 2px solid #0073aa;
    padding: 30px;
   
}
.gestion-panel:hover {
    border: 2px solid #dc3232;
} 
.row {
   display: flex;
    flex-direction: row;
    margin: 0px -15px;
}

.col {
    margin:0px 15px 15px 15px;
}

.c50 {
    width: 50%;
}
.c25{
    width: 25%;
}

.small {
    font-size: 0.8em;
}

.gk-panel {
    background: white;
    padding: 20px;
    border-radius: 5px;
}


.gk-panel.success {
   border-left:5px solid green;
}
.gk-panel.error {
   border-left:5px solid red;
}

form .rating {
   display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

form .rating>input {
    display: none !important;
}

form .rating input { display: none;}

form .rating>label {
    position: relative;
    width: 1em;
    font-size: 3em;
    color: #FFD600;
    cursor: pointer;
}

form .rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

form .rating>label:hover:before,
form .rating>label:hover~label:before {
    opacity: 1 !important;
}

form .rating>input:checked~label:before {
    opacity: 1;
}

form .rating:hover>input:checked~label:before {
    opacity: 0.4;
}


.errorMsg {
    color: red;
    font-size: 0.8em;
    display: block;
}
.input-error {
    border: 1px solid red !important;
    font-size: 0.8em;
}



.nameConvocatoria {
    display: none;
}