/* ------------------  Calculadora de Ovulacion  ------------------ */
div.contenedorcalc {
    position: relative;
    width: 100%; /* Ancho de la pagina de Wordpress 1200px */
    height: auto;
    text-align: center;
    vertical-align: middle;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    z-index: 1;
}
div.calculadora {
	display: inline-block;
	width: 50%;
	height: auto;
    text-align: center;
    margin: 0 auto;
    padding: 14px 14px 14px 14px;
    background-color: #ffffff;
    border-width: 3px;
    border-style: solid;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-color: #418FDE;
    border-top-color: rgb(65, 143, 222);
    border-right-color: rgb(65, 143, 222);
    border-bottom-color: rgb(65, 143, 222);
    border-left-color: rgb(65, 143, 222);
    border-radius: 72px;
    border-top-left-radius: 72px;
    border-top-right-radius: 72px;
    border-bottom-right-radius: 72px;
    border-bottom-left-radius: 72px;
    z-index: 2;
}
div.calculadora select, .optioncalc, div.calculadora > h3, p.subtitcalc, p.resultadocalc, p.alertacalc, a.btncalc {
    font-family: "Poppins";
}
div.calculadora select {
    display: inline-block;
    width: 150px;
    height: auto;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    color: #858488;
    background: #fff;
    border: 1px solid #418FDE;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    padding: 5px 5px 5px 5px;
    margin-left: 10px !important;
    margin-right: 10px !important;
}
.optioncalc {
    font-size: 16px;
    font-weight: normal;
    color: #858488;
}
div.calculadora > h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #418FDE;
    margin:10px 0px 10px 0px;
}
p.subtitcalc {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #858488;
    margin: 30px 0px 10px 0px;
}
p.resultadocalc {
    font-size: 16px;
    font-weight: bold;
    letter-spacing:.01em;
    line-height: 1.4;
    color: #ED5277;
}
p.alertacalc {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    color: #f34747;
}
a.btncalc {
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #418FDE;
    width: 220px;
    padding: 10px 0px;
    margin: 0px 0px 15px 0px;
    border: 0px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
}
a.btncalc:hover {
    background-color: #ED5277;
}
.lineacalc {
    display: block;
    background: url(https://www.dexeus.com/sites/default/files/images/varios/punto-verde-fertility.png) repeat-x left center;
    background-image: url(https://www.dexeus.com/sites/default/files/images/varios/punto-verde-fertility.png) repeat-x left center;
	background-repeat: repeat-x;
	border: 0;
    height: 4px;
    text-align: center;
    margin:20px 0px 20px 0px;
	z-index: 3;
}
div.resultadoscalc {
    display: none;
    margin-top: 20px;
	z-index: 2;
}


/* ------------------------------------------------------------------------- */
/* -----------------------  SET DE TAMAÑOS RESPONSIVE  --------------------- */
/* -------------------  Entre 1030px - 941px (iPad Pro)  ------------------- */
@media (max-width:1030px) {
    div.contenedorcalc {
        width: auto !important;
    }
    div.calculadora {
        width: 60% !important;
    }
}
/* -------------------------  Entre 810px - 771px  ------------------------- */
@media (max-width:810px) {
    div.calculadora {
        width: 80% !important;
    }
}
/* ----------------------  Entre 770px - 741px (iPad)  --------------------- */
@media (max-width:770px) {
    div.calculadora {
        width: 80% !important;
    }
}
/* ------------------  Entre 545px - 381px (Base Moviles) ------------------ */
@media (max-width:545px) {
    div.calculadora {
        width: 100% !important;
        display: block !important;
        border-radius: 60px;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        padding: 14px 8px 14px 8px;
    }
    div.calculadora select {
        margin: 10px 0px !important;
        width: 60% !important;
    }
}
/* ------------------  Entre 380px - 366px (iPhone 6/7/8)  ----------------- */
@media (max-width:380px) {
    div.calculadora {
        border-radius: 50px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
    }
    div.calculadora > h3 {
        font-size: 23px;
    }
}
/* --------------------  Entre 365px - 326px (Galaxy S5) ------------------- */
@media (max-width:365px) {
    div.calculadora {
        border-radius: 40px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }
    .optioncalc {
        font-size: 15px !important;
    }
    p.subtitcalc {
        font-size: 15px;
    }
    p.resultadocalc {
        font-size: 16px;
    }
}
/* ----------------------  Menos de 325px (iPhone 5/SE) -------------------- */
@media (max-width:325px) {
}