/* BOUTON EGITEKO */
/* BOUTON EGITEKO */
/* BOUTON EGITEKO */
/* BOUTON EGITEKO */
.eg_btn {

    /* Auto layout */
    /*display: flex;
    flex-direction: row;*/
    align-items: center;
    padding: 9px 14px;
    gap: 18px;
    border-radius: 3px;

    /* Inside auto layout */
    /*flex: none;
    order: 0;
    flex-grow: 0;*/
}

.eg_btn_small {

    /* Auto layout */
    /*display: flex;
    flex-direction: row;*/
    align-items: center;
    padding: 4px 10px;
    border-radius: 5px;

    /* Inside auto layout */
    /*flex: none;
    order: 0;
    flex-grow: 0;*/
}

.egc_bg_black_ghost {
    background: transparent;
    border: 2px solid #030303ad;
    color: #030303ad;
}
.egc_bg_black_dotted {
    background: transparent;
    border: 2px dashed #030303ad;
    color: #030303ad;
}


.egc_bg_white_ghost {
    background: transparent;
    border: 2px solid #ffffffad;
    color: #ffffffad;
}
.egc_bg_white_dotted {
    background: transparent;
    border: 2px dashed #ffffffad;
    color: #ffffffad;
}

.egc_bg_danger {
    color: #FFFFFF;
    background-color: #ea4335;
    border-color: #ea4335;
}
.egc_bg_danger_ghost {
    background: transparent;
    border: 2px solid #ea4335;
    color: #ea4335;
}
.egc_bg_danger_ghost a:hover {
    font-weight: bold;
}
.egc_bg_danger_ghost:hover {
    font-weight: bold;
}
.egc_bg_danger_dotted {
    background: transparent;
    border: 2px dashed #ea4335;
    color: #ea4335;
}



.egc_bg_warning {
    color: #FFFFFF;
    border-color: #f19a1f;
    background: #f4b04f;
}
.egc_bg_warning_ghost {
    background: transparent;
    border: 2px solid #f19a1f;
    color: #f19a1f;
}
.egc_bg_warning_ghost a:hover {
    font-weight: bold;
}
.egc_bg_warning_ghost:hover {
    font-weight: bold;
}
.egc_bg_warning_dotted {
    background: transparent;
    border: 2px dashed #f19a1f;
    color: #f19a1f;
}



.egc_bg_success {
    color: #FFFFFF;
    border-color: #46ac46;
    background: #42a142;
}
.egc_bg_success_ghost {
    background: transparent;
    border: 2px solid #46ac46;
    color: #46ac46;
}
.egc_bg_success_ghost a:hover {
    font-weight: bold;
}
.egc_bg_success_ghost:hover {
    font-weight: bold;
}
.egc_bg_success_dotted {
    background: transparent;
    border: 2px dashed #46ac46;
    color: #46ac46;
}