/**
* Nightcry
* 8/7/2020
*/
:root {
    --font-family: Century Gothic, sans-serif;
    --background-image: url('../img/background.jpg');
    --fs-mini: 0.5rem;
    --fs-tiny: 0.7rem;
    --fs-small: 0.85rem;
    --fs-normal: 1rem;
    --fs-large: 1.5rem;
    --fs-huge: 2rem;
    --fs-enormous: 2.5rem;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    max-width: 100%;
    min-width: 400px;
    background: var(--background-image) no-repeat center center fixed;
    background-size: contain;
    overflow-x: hidden;
}

html, body {
    scroll-behavior: smooth;
}

.c-pointer {
    cursor: pointer;
}

.c-help {
    cursor: help;
}

.fs-mini {
    font-size: 0.5rem !important;
}

.fs-tiny {
    font-size: 0.7rem !important;
}

.fs-small {
    font-size: 0.85rem !important;
}

.fs-normal {
    font-size: 1rem !important;
}

.fs-large {
    font-size: 1.5rem !important;
}

.fs-huge {
    font-size: 2rem !important;
}

.fs-enormous {
    font-size: 2.5rem !important;
}


#main_navbar {
    font-size: var(--fs-normal);
    transition: all .5s linear;
    min-width: 250px;
}

#main_navbar .nav-item {
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}


#main_navbar.top {
    background: transparent !important;
}


#header_separator {
    padding: 37px 0;
}

#mainCarousel {
    position: relative;
    text-align: center;
    color: white;
    height: 100vh;
}

#mainCarousel .centered {
    padding: 20px 0;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bs-dark);
    background: rgba(255, 255, 255, 0.7);
}

#mainCarousel #mainTextTitle {
    letter-spacing: 5px;
}

#mainCarousel #mainTextData {
    padding: 0 10px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: white;
    border: 1px solid transparent;
}

footer a:hover {
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.f-title {
    font-weight: bold;
}

/************************************************************
                        PARALLAX (Generic)
************************************************************/
.bg-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/************************************************************/

/*********************************************/
/*                  Snackbar                 */
/*********************************************/
#snackbar {
    transition: opacity 0s ease-out;
    opacity: 0;
    overflow: hidden;
    max-width: calc(100vw - 10%);
    text-align: left; /* left text */
    border-radius: 10px; /* Rounded borders */
    position: fixed; /* Sit on top of the screen */
    z-index: -9999; /* Add a z-index if needed */
    right: 10px; /* Center the snackbar */
}

#snackbar.active {
    transition: opacity .5s ease-out;
    opacity: 1;
    z-index: 9999;
}

/*********************************************/
/*            Global Message                 */
/*********************************************/
#messageGlobalDialog {
    z-index: 9999;
}

.content-box {
    padding: 55px 0;
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
    color: var(--bs-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content-title-white h3 {
    color: var(--bs-white);
}

.content-title-underline {
    width: 30px;
    height: 3px;
    background-color: var(--bs-primary);
    margin: 0 auto 30px auto;
}

.sect-item {
    padding: 20px 0;
    margin: 20px;
    cursor: pointer;
}

.sect-item-icon i {
    float: left;
    padding: 15px;
    margin-right: 25px;
    width: 75px;
    height: 75px;
    text-align: center;
    vertical-align: middle;
}

.hover-green:hover {
    color: var(--bs-white) !important;
    background-color: var(--bs-green) !important;
    cursor: pointer;
}

.hover-blue:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
    cursor: pointer;
}

.sect-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 0;
}


.sect-item-desc p {
    margin: 0;
    padding-left: 85px;
    font-size: var(--fs-small);
    color: var(--bs-dark);
}

.sect-item-title h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bs-dark);
}

.message-section {
    font-size: var(--fs-normal);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
}

.message-section .content-box {
    color: var(--bs-white);
    background: rgba(0, 0, 0, .8);
    padding: 20px;
}

#msg_01 {
    background-image: url('../img/msg_01.jpg');
}

#msg_02 {
    background-image: url('../img/msg_02.jpg');
}

#msg_03 {
    background-image: url('../img/msg_03.jpg');
}

#msg_04 {
    background-image: url('../img/msg_04.jpg');
}

#msg_05 {
    background-image: url('../img/msg_05.jpg');
}

.caracteristica-item {
    border: 1px solid transparent;
    color: var(--bs-primary);
    border-radius: 5px;
}

.caracteristica-item:hover {
    border: 1px solid var(--bs-primary);
    background: var(--bs-primary);
    cursor: pointer;
    color: var(--bs-white);
}

.caracteristica-item i {
    margin: 10px 0;
}

.caracteristica-item h4 {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bs-dark);
}

.beneficio-item-text {
    text-transform: uppercase;
    text-align: justify;
    color: var(--bs-dark);
}

.beneficio-item {
    margin: 20px 0;
}

.expediente-tradicional-item div {
    padding-top: 22px;
    font-size: 35px;
    height: 100px;
    width: 100px;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-black);
    border-radius: 50%;
    display: inline-block;
    color: var(--bs-primary);
    font-weight: bold;
}

.expediente-tradicional-item p {
    color: var(--bs-primary);
    font-weight: bold;
}

.estadisticas-item {
    margin: 40px 0;
    font-size: 22px;
    color: var(--bs-primary);
    font-weight: bold;
}

.estadisticas-item .estadisticas-item-name {
    text-transform: uppercase;
}

#ventajas {
    background: var(--bs-primary);
}

.ventaja-item div.outer {
    padding-top: 5px;
    font-size: 35px;
    height: 130px;
    width: 130px;
    background-color: var(--bs-white);
    border-radius: 50%;
    display: inline-block;
}

.ventaja-item div.inner {
    padding-top: 25px;
    font-size: 35px;
    height: 120px;
    width: 120px;
    background-color: var(--bs-white);
    border: 6px solid var(--bs-primary);
    border-radius: 50%;
    display: inline-block;
    color: var(--bs-primary);
    font-weight: bold;
}

#ventajas h3 {
    color: var(--bs-white);
}

#ventajas .content-title-underline {
    background-color: var(--bs-white);
}

.ventaja-item p {
    margin-top: 5px;
    color: var(--bs-white);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: var(--fs-normal);
}

#footer_contact_phone:link, #footer_contact_phone:visited, #footer_contact_phone:hover, #footer_contact_phone:active {
    text-decoration: none;
    border: none;
}

#footer_contact_phone:hover {
    color: #ccc;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin-right: 10px;
    margin-top: calc(100vh + 50px);
}

#contact_through_email:hover, #contact_whatsapp:hover {
    color: var(--bs-gray-400) !important;
}

#beneficios-content-box-inner {
    max-width: calc(100vw - 20px);
}

#beneficios img, #historia_clinica img, #estadisticas_uso img {
    max-width: calc(100vw - 50px);
}

.grecaptcha-badge {
    bottom: 100px !important;
    z-index: 1;
}

/***********************************************************************/
/*                          TOGGLE SWITCH                              */
/***********************************************************************/

.switch-toggle input {
    opacity: 0;
    height: 25px;
    position: absolute;
    border-radius: 15px;
}

.switch-toggle input + label {
    float: left;
    color: var(--bs-dark);
    height: 29px;
    font-size: 12px;
    cursor: pointer;
}

.switch-toggle a {
    background-color: var(--bs-secondary) !important;
}

.switch-toggle input[value="-1"] + label {
    pointer-events: none;
    opacity: 0.5;
}

.switch-toggle input[value="-1"]:checked + label {
    background: grey;

}

.switch-toggle input[value="1"]:checked + label {
    background: var(--bs-danger-bg-subtle);
    color: var(--bs-danger);
}

.switch-toggle input[value="1"]:checked > .switch-toggle a {
    background-color: var(--bs-danger-bg-subtle) !important;
}

.switch-toggle input[value="2"]:checked + label {
    background: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
}