/* .btn{
    display: inline-flex;
    gap:5px;
    align-items: center;
    width: fit-content;
    justify-content: center;
    font-size: 14px;
}

.btn-block{
    display: flex;
    width: 100%;
    justify-content: center;
}
.btn-primary{
    background: #1c2060;
    color: #FFFFFF;
    border-color: #1c2060;
    transition: background 1s ease;
    font-size: 14px;
} */

/* .btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background: #522c86 !important;
    border-color: #522c86 !important;
    outline:none !important;
    box-shadow: none !important;
} */

.btn-secondary{
    background: #472e4f;
    color: #FFFFFF;
    border-color: #472e4f;
    transition: background 1s ease;
    font-size: 14px;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active{
    background: #1c2060 !important;
    border-color: #1c2060 !important;
    outline:none !important;
    box-shadow: none !important;
}


.btn-wow{
    background: #e8a310;
    color: #FFFFFF;
    border-color: #e8a310;
    transition: background 1s ease;
    font-size: 14px;
}

.btn-wow:hover, .btn-wow:focus, .btn-wow:active{
    background: #d4940a !important;
    border-color: #d4940a !important;
    outline:none !important;
    box-shadow: none !important;
}

.btn-lg{
    height: 48px;
    font-size: 18px;
}

/* .btn-light{
    border: 1px solid #CCCCCC;
    color: #666666;
    border-radius: 8px;
}

.btn-group .dropdown button{
    border: 1px solid #dddfeb;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: 0px;
    color: #666666;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #FFFFFF;
}

.btn-danger-outline{
    color: #cf1322;
    background: #fff1f0;
    border: 0.5px solid;
    border-color: #ffa39e;
}

.btn-info-outline{
    color: #0958d9;
    background: #e6f4ff;
    border: 0.5px solid;
    border-color: #91caff;
}

.btn-rounded{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50px;
}

.btn-sm-custom{
    font-size: 12px !important;
    padding-top: 3px;
    padding-bottom: 3px;
}

.btn-xs{
    aspect-ratio: 1/1;
    height: 16px;
    width: 16px;
    font-size: 8px;
}

.btn-danger{

}

.btn-primary.disabled, .btn-primary:disabled {
    background: #4065d4;
    border-color: #4065d4;
} */