html, body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5dba98;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
}

.success-icon{
    color: #035339;
}

.failed-icon{
    color: #a71616;
}

.modal-titulo {
    color: #035339;
    text-align: center;
    font-weight: bold;
}

.modal-pagraph {
    color: #035339;
    text-align: left;
}

.modal-content {
    background-color: #FFF;
}

.btn-alterstart {
    border-bottom: 2px #288f6b solid;
    border-right: 2px #288f6b solid;
}

.btn-start {
    background-color: #288f6b;
    border: 2px #288f6b solid;
    color: #FFF;
}

.btn-start:hover {
    background-color: #035339;
    border: 2px #035339 solid;
    color: #FFF;
}

.btn-start:target {
    background-color: #035339;
    border: 2px #035339 solid;
    color: #FFF;
}

.btn-start:link {
    background-color: #035339;
    border: 2px #035339 solid;
    color: #FFF;
}

.btn-start:focus {
    background-color: #035339;
    border: 2px #035339 solid;
    color: #FFF;
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../resources/img/Preloader_21.gif) center no-repeat #fff;
}

.resultado{
    display: none;
}

.positivo{
    display: none;
}

.negativo{
    display: none;
}

.option{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}

.binfo{
    margin-right: 5%;
}

.back-btn{
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem 1rem;
}

.back-btn:hover{
    cursor: pointer;
}

.titulo{
    width: 100%;
    text-align: center;
    margin-bottom: 5rem;
}

.wrap{
    display: flex;
    background-color: #5dba98;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pad{
    width: 30rem;
    height: 30rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.sector{
    height: 50%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item{
    height: 50%;
    width: 50%;
    background-color: transparent;
    background-image: url("../resources/img/car.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    /*border: 3px #000 solid;*/
    border-radius: 50%;
    cursor: pointer;
}

.table-custom {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #5dba98;
    color: #5dba98;
}

.row-custom {
    border: none;
    text-align: center;
    padding: 8px;
}


th{
    text-align: center;
}

.resultado{
    display: none;
}


@media (max-width: 600px) {
    tbody{
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .tab-ele{
        display: flex;
        flex-direction: column;
    }

    .option{
        flex-direction: column;
        justify-content: center;
    }

    .option > div {
        width: 100%;
        margin-bottom: 1rem;
    }

    .resultado{
        padding: .5rem;
    }

    tr{
        display: flex;
        flex-direction: column;
    }
}

