

#calculadora-container {
    background-color: rgba(145, 169, 230, 0.15);
    padding: 20px;
    max-width: 390px;
    border-radius: 10px;
}

.calculadora-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	max-width: 370px;
}

.calculadora-form p {
    width: 100%;
}

.calculadora-form p.b-half {
    width: 47%;
}

.calculadora-form label {
    display: block;
    margin: 0 0 6px;
}

.calculadora-form input, .calculadora-form select {
    border-radius: 0.3em;
}

.calculadora-form select {
    width: 100%;
    max-width: 100%;
}

.calculadora-form  input[type="submit"] {
    color: #fff;
    border: none;
    background-color: var(--wp--preset--color--accent);
    width: 100%;
    padding: 1.03em 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.7em;
    font-size: var(--wp--preset--font-size--intermedia);
    letter-spacing: 2px;
}

#resultado-calculadora {
    margin-top: 3em;
    max-width: 370px;
}

#resultado-calculadora p {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 0.5em;
    margin-bottom: 0.6em;
    line-height: 1.2;
}

#resultado-calculadora p.costo-total {
    font-weight: 700;
    text-transform: uppercase;
}



#m3f-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 2;
    cursor: pointer;
}

#m3f-overlay div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background: url(img/spinner.gif) no-repeat;
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
}

#m3f-overlay-b {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.9);
    z-index: 2;
}

.m3f-success-msg {
    background-color: var(--wp--preset--color--accent);
    color: #fff;
    font-weight: 500;
    font-size: 1.2em;
    padding: 1em 1.5em !important;
	max-width: 520px;
}


