/* Composant bouton rond */
.round-button
{
    border-radius: 100%;
    border: none;
    width: 40px;
    height: 40px;
    background-color: #ffcb4a;
    color: white;
    transition: background 250ms;
}
.round-button:focus
{
    outline: none;
}
.round-button:active
{
    background-color:#c49b44;
}

/* Component icon*/
.icon-button {
    fill: #ffcb4a;
    width: 1.5em;
    height: 1.5em;
}

.icon-button-red {
    fill: red;
    width: 1.5em;
    height: 1.5em;
}

.icon-button-green {
    fill: green;
    width: 1.5em;
    height: 1.5em;
}

.icon-inner-button {
    fill: white;
    pointer-events: none;
}

/* Component button */
.normal-button {
    border-radius: 28px;
    /* box-shadow: 0 0 2px rgba(0,0,0,0.11), 1px 3px 3px rgba(0,0,0,0.22); */
    border: none;
    background-color: #ffcb4a;
    color: white;
    transition: background 250ms;
    padding: 6px 20px;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
}

.normal-button:focus
{
    outline: none;
}
.normal-button:active
{
    background-color:#c49b44;
}

/* Input */
.input-group-text {
    background-color: #88c1d0;
    color: #275fa0;
}

/* Table */
table {
    font-size: 14px;
}

thead th {
    color: #275fa0;
}

th {
    color: #275fa0;
}

th, td {
    vertical-align: middle !important;
}

textarea {
    resize:none;
}

.scrollbarspace {
    width: 17px;
    padding: 0px !important;
}

.clickable-rows tbody tr {
    cursor: pointer;
}

.rowroundbutton {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    width: 100px;
}

/* Tableau header fixxe */
.fixhead tbody {
    display: block;
    max-height: 350px;
    overflow-y: scroll;
    table-layout: fixed; 
}

.fixhead thead,
.fixhead tbody tr {
    display: table; 
    width: 100%;
    table-layout: fixed; 
}

.scrollbarspace {
    width: 17px;
    padding: 0px !important;
}

/* Check box */
.form-check-input {
    width: 20px;
    height: 20px;
    position: inherit;
    margin: 0px;
    margin-right: 10px;
}

/* Classic inputs */
.form-group {
    width: 100%
}

.form-group label {
    color: #275fa0;
    font-weight: bold;
}
