/* ================================
   Button Component (Scoped to #appButton)
   ================================ */

#appButton .sef_btn {
    /*font-family: 'PT Sans Caption', sans-serif;*/
    font-size: 14px;
    color: var(--123color);
}

/* --- outer wrapper --- */
#appButton .sef_btn_wrap {
    margin-top: 20px;
    border: 0px solid gold;      
    width: inherit;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;      
    align-items: flex-start;   
    margin: 0px 10px;         
}



/* --- inner div grid container --- */
#appButton .sef_btn_wrap div {
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- active button --- */
#appButton .sef_btn_wrap .sef_btn.active_sef_btn {
    background-color: var(--123color);
    color: white;
}

/* --- hover states --- */
#appButton .sef_btn_wrap .sef_btn:hover {
    background-color: var(--123color30);
}

#appButton .sef_btn_wrap .sef_btn:first-of-type:hover {
    background-color: var(--123color60);
}

/* --- core visual button --- */
#appButton .sef_btn_wrap .sef_btn {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--123color);
    text-shadow: 1px 1px 1px rgba(0,0,255,0.05);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border: 1px solid var(--123color);
    margin: 15px 0 0 0;
}

/* --- title text style --- */
#appButton .icon_sub_tit {
    text-transform: uppercase;
    text-align: center;
}

/* --- circle style variant --- */
#appButton .sef_btn_wrap .circle_btn {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    background-color: white;
}

/* --- SVG icon sizing --- */
#appButton .sef_btn.svg_btn_act svg,
#appButton .sef_btn.svg_btn_inact svg {
    height: 45px;
}

/* --- inactive svg color --- */
#appButton .sef_btn.svg_btn_inact svg,
#appButton .sef_btn.svg_btn_inact svg:hover {
    fill: var(--123color40);
}
/* ================================
   Big button variant
   ================================ */
#appButton .big_btn.sef_btn {
    width: 115px;
    height: 115px;
    border-radius: 115px;        /* perfect circle */
    transition: 0.3s;
}

/* ================================
   Renew variant
   ================================ */

#appButton .renew_btn_wrap{
    position: absolute;
    top: 25px;
    width: 100px;
    border: 0px solid blue;
    right: 160px;
}
#appButton .renew_btn_wrap .icon_sub_tit{
    margin-top: -40px;
}

/* ================================
   Crud variant
   ================================ */

#appButton  .sef_btn.crud_btn{
    margin: 0;
    padding: 0;
    border: 1px solid var(--123color);
    color: 1px solid var(--123color);
}
#appButton  .sef_btn.crud_btn svg path{
    fill: var(--123color);
}
#appButton .list_row_wrap.footer{
    display: flex; 
    justify-content: center !important;
    /* margin-top: 55px; */
}
#appButton .list_row_wrap.footer .btn-row{
    height:auto;
}


/* ================================
   button size
   ================================ */
#appButton .btnSize45 .btn-row{
    height: auto;
    border: 0px solid red;
}
#appButton .btnSize45 .sef_btn{
    width: 45px;
    height: 45px;
    padding: 0px 4px;
}
#appButton .btnSize45.sef_btn_wrap{
    height: inherit;
}
#appButton .btnSize70 .sef_btn {
    width: 70px;
    height: 70px;
    padding: 1px 6px;
}