/* 
    component button icon text
 */

/* btn icon text primary */
.btn-icon-text-primary {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 6px 16px;
    background-color: #2E3192;
}

.btn-icon-text-primary:hover {
    background-color: #3334CC;
}

.btn-icon-text-primary:focus {
    background-color: #3334CC;
    outline: #4C4DDC33;
    opacity: 0.2;
}

/* btn text only */
/*.btn-text-only-outlined {*/
/*    font-weight: 500;*/
/*    font-size: 16px;*/
/*    line-height: 24px;*/

/*    padding: 8px 16px;*/
/*    border: 1px solid #2E3192;*/
/*    !* Shadow 1 *!*/

/*    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.12));*/
/*    border-radius: 6px;*/
/*}*/
/* end btn text only */

.btn-icon-chevron:hover {
    background-color: rgb(218, 211, 211);
}

/* btn end icon text primary */

/* btn icon text primary */
.btn-icon-text {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 6px 16px;
    background-color: white;
    height: 40px;
}

.btn-icon-text:hover {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 6px 16px;
    background-color: white;
    color: #3334CC;
}

.btn-icon-text:focus {
    background-color: #3334CC;
    outline: #4C4DDC33;
    color: white;
}

/* btn icon text primary */

.btn-icon-chevron:hover {
    background-color: rgb(211, 211, 211);
}






/* 
    component button only text
*/

.btn-primary-text-only {
    background-color: #2E3192;
    border-radius: 6px;
    border: none;
    color: #ffff;
    padding: 6px 16px;
    gap: 4px;

}

.btn-primary-text-only:hover {
    background-color: #3334CC;
    color: white;
}

.btn-primary-text-only:focus {
    box-shadow: 0 0 0 3px rgba(76, 77, 220, 0.2);
}

.btn-primary-text-only-pressed {
    background-color: rgba(33, 33, 122, 1);
}

.btn-primary-text-only-outlined-blue-pigment-main {
    background-color: transparent;
    border: 1px solid #2E3192;
    /* Shadow 1 */
    width: 200px;
    color: #2E3192;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

.btn-primary-text-only-outlined-blue-pigment-main:hover {
    background-color: #2E3192;
    color: white;
}