html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

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

.app-title {
    margin-bottom: 10rem;
    font-size: 5rem;
}

.draw {
    height: 35rem;
    width: 35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.capa1 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: -1;
}

.box {
    margin-top: -100%;
    width: 100%;
    height: 100%;
    background-image: url("../resources/Untitled-3.svg");
    background-size: 100%;
    z-index: 2;
}

.box2 {
    margin-top: -100%;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
}

.box2 > .sector > .button {
    background-color: transparent;
}

.box.animated {
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.action_panel {
    width: 35rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 2rem;
}

.sector {
    height: 33.33%;
    width: 33.33%;
    background-color: transparent;
    z-index: -1;
}

.button {
    width: 45%;
    height: 45%;
    background-color: #a80800;
    border-radius: 50%;
    text-align: center;
}

.sector1 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
}

.sector2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: transparent;
}

.sector3 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: transparent;
}

.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/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-between;
}

.binfo {
    margin-right: 5%;
}

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

    .action_panel {
        font-size: 1.2rem;
        padding-left: 1rem;
        padding-bottom: 1rem;
    }

    .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;
    }

    .app-title {
        font-size: 2rem;
        margin-top: 5rem;
    }

    .app-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 300px) {
    .app-title {
        font-size: 1.3rem;
        margin-top: 7rem;
    }

    .control-container {
        width: 250px;
        height: 250px;
    }
}
