
/*

V-connect by Bmotion Cascade Style Sheet (v.3.0.0)

Humans: Daniel Rivas @danielrvs_es
        Pablo Muñoz
        Jorge Romero

All right reserved. Bmotion AV 2020.

*/

/**
*  INDEX
*  00. Normalize (not available yet)
*  01. Global Styles
*  02. Flex Grid
*  03. Typography
*  04. Buttons
*  05. Forms
*  06. Popup
*  07. Secciones
*  08. Footer
*  09. Emociones





 */
  
 :root {
     --color-brand: #027fe7;
     --color-brand-text:#;
     --color-gradient:linear-gradient(180deg,# 0%, # 100%);
     --color-typo:#;
     --color-accent:#027fe7;
     --color-accent-text:#ffffff;
     --color-background:#;
     --color-extra-1:#;
     --color-border:#e6e6e6;
     --color-barra-sup-text:#;
     --color-barra-sup:#;
     --typo: Arial, Helvetica, sans-serif;
     --border-radius: 9px;
     --border: 1px solid var(--color-border);
     --color-secondary-button:#222;

 }

 
 

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: unset;
}
*:focus {
    outline: unset;
}

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display:none;
}


hr {
    margin: 0.5rem auto;
    width: 90%;
}

img {
    width:100%;
    height:auto;
}
.embed-container{
position: relative;
padding-bottom: 56.25%;
    padding-bottom: min(56.25%, 62.5rem);
    height: 0;
    overflow: hidden;
    margin: 0.8rem auto;
    }
.embed-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/** *  03. Typography */

h1, h2, h3, h4, h5 {
    font-weight: 600;
    font-family: var(--typo);
}

h1 {
    font-size: 1.802rem;
    margin-bottom:1.25rem;
}

h2 {
    font-size: 1.602rem;
    margin-bottom:1.25rem;
}

h3 {
    font-size: 1.424rem;
    margin-bottom:1.25rem;
}

h4 {
    font-size: 1.266rem;
    margin-bottom:1.25rem;
}

h5 {
    font-size:1.125rem;
    margin-bottom:1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-typo);
    font-family: var(--typo);
}


.brand-text {
    color: var(--color-brand-text);
}

.accent-color {
    color: var(--color-accent-text);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.strong {
    font-weight: 600;
}

/** 04. Buttons */
a{
    text-decoration: none;
    color:var(--color-brand);
}

a:hover {
    text-decoration: underline;
    color:var(--color-brand);
}

.btn {
    padding: 0.75rem 1.25rem;
    border: 0px;
    border-radius: var(--border-radius);
    transition: filter 200ms linear;
    text-decoration: none;
    margin-bottom: 1rem;
    text-align: center;
}


.btn:hover{
    cursor:pointer;
    filter:brightness(1.2);
    text-decoration: none;
}

.btn.primary{
    background-color: var(--color-accent);
    color: var(--color-accent-text);
}

.btn.secondary{
    background-color: var(--color-secondary-button);
    color:var(--color-brand-text);
}

.btn.right {
    margin-left: 1.25rem;
}

.btn.left {
    margin-left: 1.25rem;
}


.btn.first {
    margin-top: 0;
    margin-left:0;
}

.btn.last {
    margin-bottom:0;
    margin-right:0;
}
a:not([href]):not([tabindex]).btn.primary {
  color: var(--color-accent-text);
}

a:not([href]):not([tabindex]).btn.secondary {
  color: var(--color-brand-text);
}

/** *  05. Forms */

.form-container {
    background: rgba(255,255,255,0.85);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 20%);
    /*max-width: 28rem;*/
}

input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"], select{
    padding: 0.65rem 1.25rem;
    border: var(--border);
    border-radius: var(--border-radius);
    height: 3rem;
    font-size: 1rem;
}

textarea {
    padding: 0.65rem 1.25rem;
    border: var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
}


/** 06. Popup */

#velo {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    overflow:auto;
    z-index: 2000;
    top: 0;
    left: 0;
}

.velo-popup {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    overflow:auto;
    z-index: 2000;
    top: 0;
    left: 0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.popup {
    width: 100%;
    height: auto;
    max-width: 44rem;
    max-height: 100vh;
    overflow-x: auto;
    z-index:3000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    -webkit-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.75);
    transform: translateY(50%);
    opacity: 0;
    transition: transform 200ms linear, opacity 200ms linear, width 200ms linear, heigth 200ms linear;
}

.popup.encuesta{
    overflow: hidden;
    padding:0;
}


.popup.encuesta span.material-icons.close {
    top:0;
    right:0;
}

.popup.encuesta iframe {
    min-height:80vh;
    height: 100%;
    width:100%;
}

.popup.encuesta p:last-child{
    margin-bottom:0;
}

.popup.popupin {
    opacity: 100;
    transform: translateY(0);
}

.popup span.material-icons.close {
    cursor: pointer;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    text-align: right;
    padding: 0 0 0.5rem 0.5rem;
    /* position: absolute; */
    top: 0;
    right: 0;
    margin: 0;
    align-self: flex-end;
    color: black;
}

.popup .material-icons {
    width: 6rem;
    height: 6rem;

    border-radius: 100%;
    font-size:4.8rem;
    color: var(--color-brand);
    margin: 0rem auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0;
}

.popup .embedContent {
    opacity: 1;
    transition: opacity 200ms linear;
}
.popup .embedContent .material-icons.ok{
    color: #00c853;
    background: white;
    width: unset;
    height: unset;
    font-size: 6rem;
}

.popup .material-icons.ok{
    color: white;
    background: #00c853;
}

.popup .material-icons.error{
    color:#B00020;
    font-size: 6rem;
}

.popup p {
    text-align:center;
    margin-bottom: 1.5rem;
}

.pregunta {
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 400;
    font-optical-sizing: 11;
    font-kerning: unset;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    background: var(--color-brand);
    color: var(--color-brand-text);
    margin-bottom: 1.25rem;
    width: 100%;
}

.pregunta p{
    margin-bottom:0;
    width: 100%;
    font-size: 1.25rem;
}

/*** 07. Components */

    nav {
        background: var(--color-barra-sup);
        color: var(--color-barra-sup-text);
        border-bottom: var(--border);
    }

    nav div:first-child {
        margin-left:0;
    }
    nav div:last-child {
        margin-right:0;
    }

    nav a, nav span {
        background: var(--color-barra-sup);
        color: var(--color-barra-sup-text)!important;
        
    }
    nav a.btn:hover {
        filter: unset;
    }

    .logo {
        max-height: 6rem;
        max-width: 100%;
        margin: auto;
    }

    @media (min-width:480px){
        .logo {
            max-height: 12rem;
        }
    }
    .card {
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: transform 200ms ease-in-out;
    }

    .card:hover {
        transform: scale(1.05);
    }

    .card img {
        border-top-left-radius: var(--border-radius);
        border-top-right-radius: var(--border-radius);
    }

    .card {
        height: 100%;
    }

    .height-100 {
        height: 100%;
    }

/*** 08. Secciones */

body {
    /*background: var(--color-background);*/
    background-image:url(../images/fondo-img.png);
    background-size: cover;
    background-position:top;
    background-attachment: fixed;

    font-size: 1rem;
    font-family: var(--typo);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: normal;
    letter-spacing: 0.3px;
    position:relative;
}

body.streaming {
    background: var(--color-background);
}

.streaming {
    background: var(--color-background);
    background-size: cover;
    background-position: top;
    
}

.plugin-section, #agenda .container {
    max-width: 112rem;
    margin: 2.4rem auto;
    background: white;
    padding: 0 20px;
    background: rgba(169, 208, 235,0.4); 
    backdrop-filter: blur(5px);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    border-radius:var(--border-radius);
}

 @media (min-width:480px){
.plugin-section {
    
    margin: 4rem auto;
}
}

section {
    height: auto;
}


/*** 08. Footer */
.wrapper {
    position: relative;
    min-height: 100vh;
    transition:200ms width linear;
    width: 100%;
    padding-bottom: 6rem;
}
main {
    padding-bottom: 8rem;
}

.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color:#f1f1f1;
}
.footer a{
    color: #f1f1f1;
}
.footer a:hover{
    color:white;
}


.footer .bmotion{
    color: var(--color-accent);
}

.footer .bmotion:hover{
    color: var(--color-accent);
}

/*** 09. Emociones */

#social_icons .col {
    background-color: white;
    margin: 0 15px;
    padding:0 15px;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.emociones {
    width: 2.625rem;
    height: 2.625rem;
    padding: 0.25rem;
    transition: transform 200ms linear, opacity 200ms linear;
    
}

img.emociones {
    z-index: 2;
    cursor: pointer;
}
div.emociones {
    margin-top:-24px;
    cursor:default;
}
small.emociones{
    z-index: 1;
    background: #f6f6f6;
    border-radius: 9px;
    font-weight: 600;

}
img.emociones:hover {
    transform: scale(1.2);
}

.emociones.activa {
    animation: animateBubble 2000ms linear forwards;
}

.emociones.opacity-0{
    opacity: 0;
}

@keyframes animateBubble {
    0% {
        transform: scale(1.2) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-15vh) scale(2);

    }
    75% {
        opacity: 1;
    }
    90%{
        opacity: 0;
    }
    100% {
        transform: translateY(-30vh) scale(2);
        opacity: 0;
    }
}

/*** 10. POLLS */
body.polls {
    background: white;
}
.polls-radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
	.polls-radio-toolbar label {
    display: inline-block;
    background-color: #e6e6e6;
    color:#000;
    padding: 0.75rem 1rem;
    font-family: sans-serif, Arial;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: #e6e6e6 5px solid;
    width: 100%;
    min-width: 16rem;
    cursor: pointer;
		
}
	.polls-radio-toolbar input[type="radio"]:checked + label {
        border: 5px solid var(--color-brand);
        color: var(--color-brand);
        font-weight: bold;
        position:relative;
}




.polls-form-check-input {
    position:absolute;
    margin-top: unset;
    width:0;
    margin-left:unset;
}


.polls-form-check-input:checked + label {
 
    border: 5px solid var(--color-brand);
    color: var(--color-brand);
        font-weight: bold;
        position:relative;
}

.encuesta-checkbox{
    opacity: 0;
}

/*** 11. Botón de redirección */

#redireccion {
    background-color: white;
    box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.75);
    transition: transform linear 300ms;
    transform: translateY(100px);
    z-index:9999;
}

/*** 12. Videoconferencia */

#videoconferencia iframe{
    width:100%;
    height: 75vh;
}

.registro h4{
    color: var(--color-accent);
}

form#frm_login a.btn{
    background-color:#68bafd;
    color:#ffffff;
}

div#agenda .container{
    background: #a9d0eb; /* Old browsers */
    background: -moz-linear-gradient(top,  #a9d0eb 0%, #3b95d5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #a9d0eb 0%,#3b95d5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #a9d0eb 0%,#3b95d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9d0eb', endColorstr='#3b95d5',GradientType=0 ); /* IE6-9 */
}

div#agenda p.hora{
    font-weight:bold;
    color:#ffffff;
}

#agenda .container{
    max-width:1110px;
}

div#agenda p.ttl{
    font-weight:bold;
}

div#agenda h2{
    border-bottom: 2px solid #000000;
}