.btn-recap{
    background: rgb(171, 125, 63);
    color: #ffffff;
    border-radius: 16px;
    text-align: center;
    padding: 10px;
    font-size: 90%;
    cursor: pointer;
    margin-top: 20px;
}

.btn-recap:hover {
    background: rgb(0, 0, 0);
    color: #ffffff;
}

.block-label{
    background: #ffffff;
    padding: 30px;
    margin: 0px  0px 0px 0px;
}
.block-label h2, .filter h5{
    color: rgb(171, 125, 63);
    font-size: 120%;
}

.block-label p {
    color: rgb(63, 62, 60);
    font-size: 90%;
}

.filter{
   border: .1px solid rgb(171, 125, 63);
    padding: 20px 0px 20px 0px;
    margin: 20px 0px 30px 0px;
    background: #ffffff;
}
.filter input{
    border: .1px solid rgb(139, 133, 133);
    padding: 0px 0px 10px 10px;
}

.filter button {
    margin-top: 25px;
}
.btn-official{

    background: rgb(171, 125, 63);
    color: #ffffff;
    padding: 5px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.btn-official:hover {

    background: rgb(0, 0, 0);
    color: #ffffff;
}

.btn-official-inverse {

    background: rgb(0, 0, 0);
    color: #ffffff;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.btn-official-inverse:hover {

    background: rgb(171, 125, 63);
    color: #ffffff;
}

.tab-resum{
    background: #ffffff;
    min-height: 200px;
    margin-bottom: 50px;
}

.tab-resum tr{
   cursor: pointer;
}
.tab-resum tr td li, .option-group li{
    padding: 5px 10px 5px 10px;
    cursor: pointer;
}
.tab-resum tr th{
    background: rgb(0, 0, 0);
    color: rgb(171, 125, 63);
    height: 40px;
}

.disabled{
    background: transparent;
    color: rgb(84, 79, 79);
    border: .5px solid black;
    pointer-events: none;
}


.options-resum .header{
    text-align: center;
}
.options-resum .body {
    position: relative;
}
.options-resum .body ul{
    position: absolute;
    background: #ffffff;
    border: .5px solid rgb(123, 119, 119);
    list-style: none;
    padding: 0;
    width: 100%;
    z-index: 99;
}
.options-resum .body ul li{
    padding: 10px;
    border-top: .5px solid rgb(170, 162, 162);
    cursor: pointer;
}

.options-resum .body ul li:hover {
    background: #000000;
    color: burlywood;
}

.options-resum .body ul li form button{
    width: 100%;
    height: 35px;
    background: #ffffff;
    text-align: left;
}

.options-resum .body ul li:hover, .options-resum .body ul li form button:hover {
    background: #000000;
    color: burlywood;
}

/* ----------------------------------------------------------- */

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

input[type=checkbox] {
    -border-radius: 4px;
    height: 25px;
    width: 25px;
    background: #fff;
    margin-top: -10px;
    border: 1px solid rgb(171, 125, 63);
}

input[type="checkbox"]:checked {
    background: yellow;
    margin-top: -10px;
    position: relative;

    &:before {
        font-family: FontAwesome;
        content: '\f00c';
        display: block;
        color: grey;
        font-size: 20px;
        position: absolute;
    }
}