@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


:root {
  --rojo: #D8000D;
  --rojo-medio: #C4000A;
  --rojo-oscuro: #9B0007;
  --crema: #F4EDD3;
  --font-title: "Roboto Mono", sans-serif;
  --font-normal: "Inter", sans-serif;
  --font-especial: "hackney_font", sans-serif;

}


body {
  font-family: var(--font-normal);
  overflow-x: hidden;
  background: black;
}

h1,
h2,
h3 {
  font-family: var(--font-especial);
  font-style: normal;
  font-weight: 500;
}

h1,
h2 {
  font-weight: 800;
  text-align: center;
}

a:hover {
  transition: background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

/*****

LOADER

*****/

.loaderWrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeLoader 0.3s 1s ease forwards;
}

.loaderWrapper.oculto {
  display: none;
}

.loader {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 999;
}
.loader .bar {
  width: 10px;
  height: 5px;
  background: var(--rojo);
  margin: 2px;
  animation: bar 1s infinite linear;
}
.loader .bar:nth-child(1) {
  animation-delay: 0s;
}
.loader .bar:nth-child(2) {
  animation-delay: 0.25s;
}
.loader .bar:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes bar {
  0% {
    transform: scaleY(1) scaleX(0.5);
  }
  50% {
    transform: scaleY(10) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(0.5);
  }
}

@keyframes fadeLoader {
  to {
    opacity: 0;
    display: none;
  }
}

/*****

HEADER

*****/


#header {
  background-color: var(--rojo);
  position: relative;
  box-shadow: 0px 2px 5px 0px #333;
  min-height: 86px;
}

#block-uagn-branding {
  margin: 0 10px;
}

#block-uagn-branding img.logo {
  height: 60px;
}

#block-uagn-branding img.logogn {
  width: 170px;
  margin: -35px 0 0 0;
}

img.logognmv {
  display: none;
}





/*****

MAIN MENU

*****/



.hamburger {
  position: absolute;
  background-color: transparent;
  right: 40px;
  top: -5px;
  height: 30px;
  width: 30px;
  padding: 20px 20px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  z-index: 1002;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.hamburger.is-active {
  background-color: none;
}

._layer {
  background: none;
  border-bottom: 2px solid white;
  margin-bottom: 0px;
  border-radius: 0px;
  width: 35px;
  height: 10px;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}

/*
.hamburger:hover .-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger:hover .-bottom {
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
*/

.hamburger.is-active {
  top: 10px;
}

.hamburger .-bottom {
  width: 20px;
  margin-left: 15px;
}

.hamburger.is-active .-top {
  -webkit-transform: translateY(100%) rotate(45deg) !important;
  -ms-transform: translateY(100%) rotate(45deg) !important;
  transform: translateY(100%) rotate(45deg) !important;
  height: 1px;
}

.hamburger.is-active .-mid {
  opacity: 0;
}

.hamburger.is-active .-bottom {
  -webkit-transform: translateY(-200%) rotate(135deg) !important;
  -ms-transform: translateY(-200%) rotate(135deg) !important;
  transform: translateY(-200%) rotate(135deg) !important;
  width: 35px;
  margin-left: 0;
  height: 1px;
}

#menuPrincipal {
  transition: all 0.5s;
  transform: translate(250px, 0);
  position: fixed;
  top: 86px;
  right: 0;
  z-index: 1000;
  visibility: hidden;
  width: 250px;
  height: 0;
  overflow: hidden;
  padding: 52px;
  border: 0;
}

#menuPrincipal.is-active {
  visibility: visible;
  background: linear-gradient(var(--rojo), var(--rojo-oscuro));
  display: block;
  height: calc(100vh - 86px);
  transition: transform 0.5s;
  transform: translate(0px, 0);
}

#menuPrincipal #topMenu {
  margin: -50px -50px 50px -50px;
  height: 5px;
  background: linear-gradient(#333333, var(--rojo));
}

#menuPrincipal a {
  color: white;
  font-size: 1.2em;
  text-align: center;
}


#menuPrincipal a:hover {
  color: black;
}


/*****

SELECTOR DE IDIOMA

*****/

#block-uagn-gtranslate {
  position: absolute;
  right: 100px;
  top: 15px;
  padding: 0;
  z-index: 101;
}

#block-uagn-gtranslate .gt_float_switcher  {
  background: white;
  font-size: .9em;
  border: 0;
  border-radius: 20px;
}


#block-uagn-advancedlanguageselectorblock .btn.dropdown-toggle img,
#block-uagn-advancedlanguageselectorblock .dropdown-menu.show img {
  border-radius: 100px;
}






/*****

MAIN

*****/



.path-frontpage #main {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

#main {
  height: 100vh;
}


.path-frontpage #main #block-uagn-content {
  margin-top: 100px;
}

.path-frontpage #main #block-uagn-content h1 {
  color: white;
  font-size: 4em;
  max-width: 500px;
  margin: 0 auto;
}

.path-frontpage #main #block-uagn-content .views-field-body {
  text-align: center;
  margin-top: 100px;
}

.path-frontpage #logged {
  display: none;
}

.user-logged-in #logged {
  display: block;
}

.user-logged-in #not-logged {
  display: none;
}

.path-frontpage #main #block-uagn-content .views-field-body a {
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 2em;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 50px 5px 50px;
  font-family: var(--font-especial);
  font-style: normal;
  font-weight: 500;
  background: transparent url(../img/bg_btn.svg) no-repeat center center;
  background-size: 100%;
}

.path-frontpage #main #block-uagn-content .views-field-body a:hover {
  color: black;
}

#video_campo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}


video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button {
  display: none;
}


/*****

LOGIN PAGE

*****/

.path-user #main {
  min-height: 100vh;
  height: auto;
  background: black url(../img/bg_login.png) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}



.path-user #main .row.g-0 {
  background: rgba(0, 0, 0, .3);
  background-size: auto 100%;
  max-width: 1000px;
  margin: 50px auto;
  border-radius: 30px;
  padding: 30px;
}


.path-user #main.login .region-content {
  padding-left: 500px;
  background: url(../img/img_login.png) no-repeat center left;
  background-size: auto 650px;
  min-height: 650px;
}

.path-user #main .region-content {
  background: none;
  padding-left: 20px;
  min-height: 0;
  flex: 1 1 auto;
}

.path-user #main {
  align-items: start;
  height: 100%;
  flex-direction: column;
  min-height: 120vh;
}

.path-user #edit-group-perfil .fieldset-wrapper {
  border-top: 2px solid var(--crema);
  margin: 20px 0;
  font-size: .9em;
  display: flex;
  flex-direction: row;
  gap: 4%;
  flex-wrap: wrap;
  justify-content: space-around;
}

.path-user #edit-group-perfil .fieldset-wrapper .form-wrapper {
  width: 30%;
}

.path-user #edit-group-perfil .fieldset-wrapper #edit-field-localidad-wrapper,
.path-user #edit-group-perfil .fieldset-wrapper #edit-field-fecha-de-nacimiento-wrapper,
.path-user #edit-group-perfil .fieldset-wrapper #edit-field-genero-wrapper,
.path-user #edit-group-perfil .fieldset-wrapper #edit-field-telefono-wrapper {
  width: 20%;
}


.path-user #edit-group-perfil .fieldset-wrapper .form-wrapper .form-date {
  background: var(--crema);


}

#edit-field-fecha-de-nacimiento-0-value div.form-item {
  width: 100%;
}


#edit-field-fecha-de-nacimiento-wrapper {
  padding-top: 13px;
}

#edit-field-fecha-de-nacimiento-wrapper h4 {
  font-weight: normal;
}


.path-user #edit-group-cuenta .fieldset-wrapper {
  border-top: 2px solid var(--crema);
  margin: 20px 0;
  font-size: .9em;
}


#edit-legal {
  padding: 0;
  margin: -40px 0 0 0;
  border: 0;
  background: none;
  color: white;
}

#edit-legal summary {
  display: none;
}

#edit-legal .details-wrapper {
  padding: 0;
  margin: 0;
  border: 0;
}

#edit-legal .details-wrapper a {
  color: var(--rojo);
}


.path-user #edit-account {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4%;
  flex-wrap: wrap;
  justify-content: space-around;
}

.path-user #edit-account .form-item {
  width: 48%;
}

.path-user #main.register #edit-account .form-item-mail {
  width: 100%;

}


.path-user .form-select,
.path-user .form-email {
  background: var(--crema);
}


.path-user .register #edit-pass {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4%;
  flex-wrap: wrap;
  justify-content: space-around;
}

.path-user .register #edit-pass .form-item {
  width: 48%;
}

.path-user #edit-account #edit-pass {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4%;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: start;
}

.path-user #edit-account #edit-pass div.js-form-item.form-item-pass-pass2 {
  margin-top: 0;
}

.path-user #main .region-content #block-uagn-content {
  color: white;
}

#block-uagn-page-title {
  padding: 20px 0;
}

#block-uagn-page-title h1 {
  color: white;
}


input.form-text.required.form-control {
  background-color: var(--crema);
  box-shadow: none;
  border: 0;
}

ul.nav-tabs {
  background: var(--rojo-medio);
  border-radius: 10px;
  border: 0;
  padding: 10px;
}

ul.nav-tabs li {
  padding: 0 10px 0 0;
  border-radius: 10px;
  border: 1px solid var(--rojo-medio);
  font-size: .8em;
}

ul.nav-tabs li a {
  color: white;
  padding: 5px 10px;
  border: 1px solid var(--rojo-medio);
  border-radius: 5px;
}

ul.nav-tabs li a:hover {
  background: var(--rojo-oscuro);
  border-color: var(--rojo-oscuro) !important;
  color: white;
  padding: 5px 10px;
}



ul.nav-tabs li a.is-active {
  background-color: var(--rojo);
}

ul.nav-tabs li a.is-active:hover {
  border-color: white !important;
}

input#edit-submit {
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 2em;
  max-width: 500px;
  margin: 20px 0 0 0;
  padding: 0 50px 5px 50px;
  font-family: var(--font-especial);
  font-style: normal;
  font-weight: 500;
  background: transparent url(../img/bg_btn.svg) no-repeat center center;
  background-size: 100%;
  border: 0;
}

input#edit-submit:hover {
  color: black;
}

.form-item div.description {
  font-size: .8em;
  padding: 0 0 20px 0;

}

div.js-form-item.form-item-pass-pass2 {
  margin-top: 20px;
}


/*****

PORTADA

*****/



.page-node-4 #main,
.page-node-36 #main,
.page-node-38 #main,
.page-node-39 #main,
.page-node-40 #main {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/bg_front_simple.svg);
  background-color: black;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  color: white;
  margin: 0 auto;
}

/*****  NUBES Y AVIÓN *****/

.page-node-4 .row.g-0 .order-1{
  z-index: 2;
}

.nubes{
  position: absolute;
  left: 0;
  right: 0;
  top:300px;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background: url(../img/nubes.png) no-repeat right top;
/*background: red;*/
  animation-name: MOVE-BG;
  animation-duration: 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes MOVE-BG {
   from {
     transform: translateX(-60%);
   }
   to { 
     transform: translateX(87%);
   }
}

.avion{
  position: absolute;
  left: 0;
  right: 0;
  top:300px;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background: url(../img/avion.png) no-repeat right top;
/*background: red;*/
  animation-name: avion-mov;
  animation-duration: 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes avion-mov {
   from {
     transform: translateX(0%);
   }
   to { 
     transform: translate(-87%, 50%);
   }
}

/***** FIN DE NUBES Y AVION *****/


.page-node-36 #main .region-content,
.page-node-38 #main .region-content,
.page-node-39 #main .region-content,
.page-node-40 #main .region-content,
.page-node-89 #main .region-content {
  margin: 50px auto;
  max-width: 750px;
  text-align: center;
  background: rgba(20, 60, 47, .5);
  border: 1px solid var(--rojo-oscuro);
  border-radius: 30px;
  padding: 20px 0 50px 0;
}


.page-node-36 #main .region-content #block-uagn-page-title h1,
.page-node-38 #main .region-content #block-uagn-page-title h1,
.page-node-39 #main .region-content #block-uagn-page-title h1,
.page-node-40 #main .region-content #block-uagn-page-title h1,
.page-node-89 #main .region-content #block-uagn-page-title h1
 {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 1.2em;
}

.page-node-36 #main .region-content .field--name-body,
.page-node-38 #main .region-content .field--name-body,
.page-node-39 #main .region-content .field--name-body,
.page-node-40 #main .region-content .field--name-body,
.page-node-89 #main .region-content .field--name-body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
}

.page-node-36 #main .region-content .field--name-body .selector-tomate,
#main .region-content .field--name-body .selector-intermedio {
  margin: 10px 0px;
}

.page-node-36 #main .region-content .field--name-body .selector-tomate h3 a,
#main .region-content .field--name-body .selector-intermedio h3 a {
  color: white;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .6em;
  margin: 0px 0 20px 0;
  padding: 5px 20px 5px 20px;
  font-style: normal;
  font-family: var(--font-title);
  font-weight: 500;
  background: transparent url(../img/bg_btn.svg) no-repeat center center;
  background-size: cover;
  border: 0;
}


.page-node-4 #main span.titulo {
  color: white;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1em;
  margin: 20px 0 0 0;
  padding: 5px 40px 5px 40px;
  font-style: normal;
  font-weight: 500;
  background: transparent url(../img/bg_btn.svg) no-repeat center center;
  background-size: 100% auto;
  border: 0;
}

.page-node-4 #main .elemento {
  position: relative;
  padding-bottom: 50px;
}

.page-node-4 #main .elemento .enlace {
  position: absolute;
  left: 40%;
  bottom: 0;
  font-size: 30px;
  color: var(--rojo);
}

.page-node-4 #main .elemento .enlace img {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
}

.page-node-4 #main .elemento .enlace:hover img {
  left: -60px;
  top: -60px;
  transition: all 0.3s ease-out;
  width: 158px;
}

#nubes {
  position: absolute;
  left: 0;
  top: 0;
  animation: 10s ease-out 0s 1 slideInFromLeft;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(0);
    transform: translateY(0);
  }

  100% {
    transform: translateX(100%);
    transform: translateY(100%);
  }
}


.page-node-4 #main #tomate {
  position: absolute;
  left: 12%;
  top: 200px;
}

.page-node-4 #main #esparrago {
  position: absolute;
  left: 22%;
  top: 370px;
}

.page-node-4 #main #pimiento {
  position: absolute;
  left: 62%;
  top: 300px;
}

.page-node-4 #main #fincas {
  position: absolute;
  left: 72%;
  top: 450px;
}

.page-node-4 #main #cruciferas {
  position: absolute;
  left: 22%;
  top: 600px;
}

.page-node-4 #main #maquinaria {
  position: absolute;
  left: 42%;
  top: 700px;
}


.page-node-4 #main #olivo {
  position: absolute;
  left: 52%;
  top: 550px;
}




/*****

NODOS DE PAGINA 

*****/

#center {
  order: 2 !important;
  background: none;
}

body.page-node-type-pagina {
  height: 50vh;
}

.page-node-type-pagina #center .region-content {
  max-width: 1200px;
  margin: 0 auto;
}


.page-node-type-pagina .field--name-field-texto-descriptivo img {
  max-width: 100%;
  height: auto;
  border: 10px solid white;
  box-shadow: 0px 2px 5px 0px #666;
  margin: 30px 0;
}

.field--name-field-texto-descriptivo .resaltado_verde,
.field--name-field-texto-descriptivo .resaltado_azul,
.field--name-field-texto-descriptivo .resaltado_rojo,
.field--name-field-texto-descriptivo .resaltado_amarillo {
  font-size: 1.2em;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.2em;
  position: relative;
}


.field--name-field-texto-descriptivo .titulo {
  font-size: 2em;
  font-weight: 900;
  margin-top: 30px;
  line-height: 1.2em;
}

.paragraph--type--descripcion,
.paragraph--type--video {
  background: white;
  padding: 20px;
  border-radius: 30px;
  margin: 0 0 30px 0;
}

/*.field--name-field-texto-descriptivo .resaltado_verde:before {
  content: "\F26A";
  font-family: 'bootstrap-icons';
  margin-right: 10px;
  font-size: .6em;
}
*/
.field--name-field-texto-descriptivo .resaltado_verde:before {
  content: " ";
  width: 100px;
  height: 10px;
  border-top: 3px solid black;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.field--name-field-texto-descriptivo .titulo:before {
  content: "\F26A";
  font-family: 'bootstrap-icons';
  margin-right: 10px;
  font-size: .8em;
  color: var(--rojo-oscuro);
}


.field--name-field-texto-descriptivo ul,
.field--name-field-texto-descriptivo ol {
  margin: 0 40px;
}

.page-node-type-pagina .field--name-field-media-video-file video {
  border: 10px solid white;
  height: auto;
  margin: 30px 0;
  box-shadow: 0px 2px 5px 0px #666;
}

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

img.align-center{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.field__item > video{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


.page-node-type-pagina #center .region-content ol,
.page-node-type-pagina #center .region-content ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}


.page-node-type-pagina .container-fluid #sidebar,
.path-webform .container-fluid #sidebar {
  height: auto;
  display: flex;
  color: white;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: center;
  width: 300px;
  position: relative;
  background-image: url(../img/bg_60.png);
  background-color: black;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% 0;
  background-size: cover;
}


.page-node-type-pagina .container-fluid #center,
.path-webform .container-fluid #center {
  width: calc(100% - 300px);
  padding: 40px;
  background: var(--crema) url(../img/bg_tractor.png) no-repeat right 100%;
  height: auto;
  min-height: calc(100vh - 86px);
}

.page-node-type-pagina #block-uagn-page-title h1,
.path-webform #block-uagn-page-title h1 {
  margin: 0;
  color: var(--rojo-oscuro);
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 1.7em;
  text-align: left;
  border-bottom: 2px solid var(--rojo-oscuro);
}

.page-node-type-pagina .field--name-field-enlace a {
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 2em;
  max-width: 500px;
  margin: 0px 0 10px 0;
  padding: 0 15px 5px 15px;
  font-family: var(--font-especial);
  font-style: normal;
  font-weight: 500;
  background: transparent url(../img/bg_btn.svg) no-repeat center center;
  background-size: 100%;
  border: 0;
  white-space: nowrap;
}

.page-node-type-pagina .field--name-field-enlace a:hover {
  color: black;
}


#sidebar h5 {
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 1em;
  max-width: 500px;
  margin: 0px 0 10px 0;
  padding: 5px 15px 5px 15px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  background: transparent url(../img/bg_title_menu.svg) no-repeat center center;
  background-size: 100%;
  border: 0;
  white-space: normal;
}


#sidebar ol.navbar-nav {
  list-style: none;
  counter-reset: item;
  margin-top: 30px;
  width: 195px;
}


#sidebar ol.navbar-nav li {
  margin: 5px 0;
  position: relative;
}

#sidebar ol.navbar-nav li:before {
  content: "";
  left: 0px;
  width: 3px;
  height: 80px;
  background: white;
  display: block;
  position: absolute;
}

#sidebar ol.navbar-nav li a {
  counter-increment: item;
  margin-bottom: 5px;
  position: relative;
  font-family: var(--font-title);
  letter-spacing: -1px;
}

#sidebar ol.navbar-nav li a:before {
  position: absolute;
  left: -40px;
  top: 00px;
  margin-right: 10px;
  content: counter(item);
  background: white;
  border-radius: 100%;
  color: var(--rojo);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  box-shadow: 0px 2px 5px 0px #333;
}

#sidebar ol.navbar-nav li:last-child:before {
  display: none;
}

#sidebar ol.navbar-nav li a.is-active:before {
  background: var(--rojo);
  color: white;
}

#sidebar ol.navbar-nav li a.nav-link {
  background: transparent url(../img/bg_left_menu.png) no-repeat center center;
  background-size: 100% auto;
  width: 162px;
  border: 0;
  display: inline-block;
  padding: 5px 7px;
  margin: 0 0 0 15px;
  color: var(--rojo);
  text-transform: uppercase;
}

#sidebar ol.navbar-nav li a.nav-link:hover {
  color: black;
}

#sidebar .block.block-menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#sidebar .block.block-menu a#imagenMenu {
  background: white;
  display: block;
  position: relative;
  border-radius: 100px;
  width: 158px;
  height: 158px;
  margin: 0 auto;
}

#sidebar .block.block-menu span {
  display: flex;
  width: 158px;
  height: 158px;
  padding-top: 5px;
  align-items: start;
  justify-content: center;
  position: absolute;
  top: 00px;
  left: 0px;
  color: var(--rojo);
  font-family: var(--font-especial);
  font-size: 90px;
  font-weight: normal;
  opacity: 0;
  transition: opacity .3s;

}

#sidebar .block.block-menu a#imagenMenu:hover span {
  opacity: 1;
}

#sidebar .block.block-menu a#imagenMenu:hover img {
  opacity: .3;
  transition: opacity .3s;
}



/*****

USER MENU

*****/

#block-uagn-account-menu {
  margin-top: 30px;
}


#block-uagn-account-menu ul li {
  margin: 5px 0;
}

#block-uagn-account-menu ul li a {
  background: var(--rojo);
  border-radius: 10px;
  padding: 5px 10;
  margin: 0;
  font-size: .9em;
}


/*****

CUSTOM CKEDITOR

*****/

p.resaltado_rojo {
  color: #B71313;
  font-weight: bold;
  font-size: 1.2em;

}

p.resaltado_azul {
  color: #1595D1;
  font-weight: bold;
  font-size: 1.2em;

}

p.resaltado_verde {
  color: #04AB04;
  font-weight: bold;
  font-size: 1.2em;

}

p.resaltado_amarillo {
  color: #FFC72C;
  font-weight: bold;
  font-size: 1.2em;
}

p.titulo {
  color: black;
  font-weight: bold;
  font-size: 1.5em;
}



/*****

WEBFORM

*****/

.path-webform #center .region-content {
  max-width: 800px;
  margin: 0 auto;
}

.webform-submission-form .form-item-empresa {
  background: var(--rojo-oscuro);
  padding: 10px 20px 20px 20px;
  border-radius: 20px;
}

.webform-submission-form .form-item-empresa .select2 span {
  height: auto;
  padding: 3px 5px;
  border-radius: 15px;
}

.webform-submission-form .form-item-empresa .select2 span .select2-selection__arrow b {
  top: 20px;
}

.webform-submission-form .form-item-empresa label {
  color: white;
  font-size: .8em;
}

.webform-submission-form fieldset.radios--wrapper,
.webform-submission-form fieldset.webform-scale--wrapper {
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.webform-submission-form fieldset.radios--wrapper legend {
  margin-bottom: 10px;
}

.webform-scale-options .webform-scale-option label {
  color: transparent !important;
  position: relative;
  border: 0;
  background: none;
  border: 3px solid transparent;
  background: white;
}

.webform-scale-options .webform-scale-option input:checked+label {
  border-color: #999;
}

.webform-scale-options .webform-scale-option label:hover {
  border-color: #999;
  cursor: pointer;
}

.webform-scale-options .webform-scale-option label:before {
  content: "\F31D";
  font-size: 1.55em;
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0px;
  top: -3px;
}

.webform-scale-options .webform-scale-option:nth-child(1) label:before {
  content: "\F316";
  color: firebrick;
}

.webform-scale-options .webform-scale-option:nth-child(2) label:before {
  content: "\F31C";
  color: orange;
}

.webform-scale-options .webform-scale-option:nth-child(3) label:before {
  content: "\F322";
  color: gold;
}

.webform-scale-options .webform-scale-option:nth-child(4) label:before {
  content: "\F324";
  color: yellowgreen;
}

.webform-scale-options .webform-scale-option:nth-child(5) label:before {
  content: "\F31E";
  color: green;
}


/******

FUEGOS ARTIFICIALES

********/

.pyro {
  position: absolute;
  width: 30%;
}

.pyro > .before, .pyro > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: -120px -218.66667px blue, 248px -16.66667px #00ff84, 190px 16.33333px #002bff, -113px -308.66667px #ff009d, -109px -287.66667px #ffb300, -50px -313.66667px #ff006e, 226px -31.66667px #ff4000, 180px -351.66667px #ff00d0, -12px -338.66667px #00f6ff, 220px -388.66667px #99ff00, -69px -27.66667px #ff0400, -111px -339.66667px #6200ff, 155px -237.66667px #00ddff, -152px -380.66667px #00ffd0, -50px -37.66667px #00ffdd, -95px -175.66667px #a6ff00, -88px 10.33333px #0d00ff, 112px -309.66667px #005eff, 69px -415.66667px #ff00a6, 168px -100.66667px #ff004c, -244px 24.33333px #ff6600, 97px -325.66667px #ff0066, -211px -182.66667px #00ffa2, 236px -126.66667px #b700ff, 140px -196.66667px #9000ff, 125px -175.66667px #00bbff, 118px -381.66667px #ff002f, 144px -111.66667px #ffae00, 36px -78.66667px #f600ff, -63px -196.66667px #c800ff, -218px -227.66667px #d4ff00, -134px -377.66667px #ea00ff, -36px -412.66667px #ff00d4, 209px -106.66667px #00fff2, 91px -278.66667px #000dff, -22px -191.66667px #9dff00, 139px -392.66667px #a6ff00, 56px -2.66667px #0099ff, -156px -276.66667px #ea00ff, -163px -233.66667px #00fffb, -238px -346.66667px #00ff73, 62px -363.66667px #0088ff, 244px -170.66667px #0062ff, 224px -142.66667px #b300ff, 141px -208.66667px #9000ff, 211px -285.66667px #ff6600, 181px -128.66667px #1e00ff, 90px -123.66667px #c800ff, 189px 70.33333px #00ffc8, -18px -383.66667px #00ff33, 100px -6.66667px #ff008c;
  -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards; }

.pyro > .after {
  -moz-animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  -o-animation-delay: 1.25s, 1.25s, 1.25s;
  -ms-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -moz-animation-duration: 1.25s, 1.25s, 6.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  -o-animation-duration: 1.25s, 1.25s, 6.25s;
  -ms-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s; }

@-webkit-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-moz-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-o-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-ms-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-moz-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-o-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-ms-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-webkit-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-moz-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-o-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-ms-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
