/* ===== Base ===== */
/* Custome */
.btn-secondary {
    color: black;
    background-color: #F3F5F7;
    border: 1px solid #c2c2c2;
}

.btn-outline-secondary {
    border: 1px solid #6c757d;
}

/* Gradient */
.btn-grad-blue {
    background-image: linear-gradient(180deg, #315D88, #163A54 85%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-grad-blue-light {
    background-image: linear-gradient(180deg, #2788E1, #0058A9 85%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-grad-white {
    background-image: linear-gradient(360deg, #E3E3E3, #FFFFFF);
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-grad-primary {
    background-image: linear-gradient(45deg, #4776E6, #7941D4 85%);
    color: #25476a;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-grad-green {
    background-image: linear-gradient(180deg, #00B913, #007A0D);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-grad-grey {
    background-image: linear-gradient(180deg, lightgrey, rgb(212, 212, 212));
    color: rgb(131, 131, 131);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* Color */
.btn-darkgreen {
    background-color: #099250;
}

.btn-grey {
    background-color: lightgrey;
    color: grey;
}

.btn-darkblue {
    background-color: #25476A;
    color: white;
}

.btn-blue {
    background-color: #066EB7;
    color: white;
}

.btn-white-blue {
    background-color: white;
    border-color: #315D88;
    color: #315D88;
}

.btn-white-black {
    background-color: white;
    border-color: black;
    color: black;
}

.btn-white-lightgrey {
    background-color: white;
    border-color: lightgrey;
    color: black;
}

/* Specific */
.btn-sm-mg-left {
    height: 32px;
    margin-left: 5px;
    font-size: 12px;
}

.btn-sm-f-w {
    height: 32px;
    width: 100%;
    font-size: 12px;
}

/* Icon */
.c-icon-btn-sm {
    font-size: 18px;
    padding: 0 3px;
}

/* ===== Hover ===== */
/* Custome */
.btn-secondary:hover {
    color: #a2a2a2;
    background-color: #f2f2f2;
    border: 1px solid #a2a2a2;
}

/* Gradient */
.btn-grad-primary:hover {
    color: white;
}

.btn-grad-green:hover {
    color: white;
}

/* ===== Children of ===== */
.col-md-4.center button {
    margin: 0 4px;
}