*{
    font-family:  'helvetiva Neu', sans-serif;
}
.body {
    margin-bottom: 5px;
}
.c-centro{
    display: flex;
    align-items: center;
    text-align: center;
}

#tabla_calculadora{
    width: 90%;
    align-content: center;
    text-align: center;
    padding: 2px;
    padding-top: 0;
    margin: auto;
    margin-top: 30px;
    font-size: 15px;
    border-radius: 20px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.61); 
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.168);
}

#tabla_calculadora .c-head{
    background-color: #93D500;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 20px 20px 0px 0px;
}
.t-titulo{
    border-left: 2px solid #93D500;
    border-right: 2px solid #93D500;
}

.c-centro h1{
    width: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.icon {
    color: #fff!important;
    width: 50%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-head .t-resaltar{
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 1.3rem;
}
.calculadora .t-resaltar{
    margin-bottom: 0px;
    font-weight: bold;
}

.calculadora input, .calculadora select {
    border: 0px;
    border-bottom: 1px solid #93D500;
    border-radius: 10px 10px 0px 0px;
    background: rgb(245, 245, 245);
    text-align: center;
}

.calculadora select {
    appearance: none;
    background-image: url('../imagenes/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right;
}

.calculadora .total_watss,.calculadora .consultar{
    border: 0px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}


@media (min-width: 768px) {
    #tabla_calculadora{
        width: 90%;
    }
}

#resultado {
    width: 100%;
    margin: 2% 0px;
    background-color: white;
    text-align: center;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#resultado img {
    width: 40% !important;
}

#resultado .b-conoce{
    width: 80%;
    background: #93d500;
}

#resultado .b-conoce:hover{
    background: #a1e25e !important;
    font-weight: bold;
}

#resultado .col {
    padding-top: 5px;
    background: linear-gradient(white, #93d500);
    border: 1px solid #5D8C2E;
}

.card {
    margin-top: 10px!important;
    width: 22rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 14px 2px rgba(0,0,0,0.2); 
    box-shadow: 0px 0px 14px 2px rgba(0,0,0,0.2);
}
.card-body{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.card-body .card-title{
    margin-bottom: 0px;
    text-transform: uppercase;
}
.card-body span{
    color: #b1b1b1;
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid #93d500;
}
.card-body .card-text{
    width: 80%;
    margin: 10px 10%;
}

.btn-primary {
    width: 100%;
    color: #fff;
    font-weight: 700;
    background-color: #93d500!important;
    border: solid 1px #93d500!important;
    transition: 0.3s;
}
.btn-primary:hover{
    background-color: #fff!important;
    color: #93d500;
}

.calculadora hr{
    color: #93d500;
}

.nota{
    font-weight: 700;
}