@charset "UTF-8";
/* COLORS */
/* STRUCTURE */
/* FONTS */
@font-face {
  font-family: "Roboto Light";
  src: url("../_fonts/roboto-light-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Medium";
  src: url("../_fonts/roboto-medium-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Regular";
  src: url("../_fonts/roboto-regular-webfont.woff2") format("woff2");
  font-weight: 100;
}
@font-face {
  font-family: "Karnov Display";
  src: url("../_fonts/karnovdisplay.woff2") format("woff2");
}
@font-face {
  font-family: "Karnov Icons Open";
  src: url("../_fonts/fk-icons-open.woff") format("woff");
  font-weight: 100;
}
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: white;
  scroll-behavior: smooth;
}
html *, body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, ul, li, a {
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  font-family: "Karnov Display";
  font-weight: 100;
}

h2.titulo {
  font-family: "Roboto Regular";
  font-size: 20px;
}

.text_link {
  border-bottom: solid 1px black;
}
.text_link:hover {
  border-bottom: none !important;
}

.w_100 {
  width: 100%;
}

.no_gap {
  gap: unset;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #3f403a;
}

p, a {
  font-family: "Roboto Light";
  text-decoration: none;
}

p a {
  color: #3f403a;
  text-decoration: none;
}
p a:hover {
  text-decoration: none !important;
  border-bottom: 1px solid #3f403a;
}

li:not(.menu_link) > a:hover {
  text-decoration: none !important;
}

section#producto_caracteristicas li > a {
  border-bottom: 1px solid #3f403a;
}
section#producto_caracteristicas li > a:hover {
  border-bottom: none !important;
}

.wrapper_widget a,
.item_widget_evento a {
  color: #3f403a;
  text-decoration: none;
}
.wrapper_widget a:hover,
.item_widget_evento a:hover {
  text-decoration: none !important;
  border-bottom: 1px solid #3f403a;
}

.item_widget_evento .titulo_item_evento a {
  color: white;
}
.item_widget_evento .titulo_item_evento a:hover {
  border-bottom: 1px solid white;
}

ul {
  list-style: none;
}
ul li {
  font-family: "Roboto Light";
  font-size: 18px;
  color: #3f403a;
  margin-bottom: 10px;
}

.box_text_arrow_down {
  position: relative;
}
.box_text_arrow_down::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50, 100%, 50%);
}

.hide {
  display: none;
}

.show {
  display: block;
}

.line {
  transition: width 0.6s ease-in-out;
  display: block;
  width: 50px;
  height: 4px;
  max-height: 4px;
  background-color: hsl(50, 100%, 50%);
}

.line_expands_from_center {
  margin: auto;
}

.line_expands_from_left {
  margin-left: 0;
}

a:has(.line):hover .line {
  width: 100%;
}

.bg_color_1 {
  background-color: hsl(50, 100%, 50%);
}

.bg_color_2 {
  background-color: hsl(240, 100%, 12%);
}

.bg_color_3 {
  background-color: hsl(203, 42%, 93%);
}

.bg_color_4 {
  background-color: hsl(53, 100%, 93%);
}

.bg_color_5 {
  background-color: hsl(201, 39%, 65%);
}

.bg_color_6 {
  background-color: hsl(165, 39%, 31%);
}

.bg_color_7 {
  background-color: hsl(0, 3%, 93%);
}

.color_1 {
  color: hsl(50, 100%, 50%);
}

.box {
  padding: 50px;
}

.box_map,
.box_no_padding {
  padding: 0;
}

.box_li_right {
  padding-right: 50px;
}

.box_li_left {
  padding-left: 50px;
}

.box_text h2 {
  margin-bottom: 20px;
}
.box_text p {
  font-family: "Roboto Light";
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.box_text_intro {
  width: 100%;
  padding: 76px;
  position: relative;
}
.box_text_intro p {
  line-height: 31px;
  text-align: center;
}
.box_text_intro::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50, 100%, 50%);
}

.box_text_intro_color_2::after {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(240, 100%, 12%);
}

.box_text_left {
  width: 100%;
  padding: 76px;
  position: relative;
}
.box_text_left p {
  line-height: 31px;
  text-align: right;
}
.box_text_left::after {
  content: "";
  position: absolute;
  margin-left: calc(106% - 30px);
  transform: rotate(90deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50, 100%, 50%);
}

.box_img {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.box_img > img {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.box_img:hover {
  cursor: pointer;
}
.box_img:hover > img {
  opacity: 0.5;
}
.box_img:hover .line_expands_from_center {
  width: 100%;
}
.box_img .wrapper_text {
  width: 100%;
  margin: auto;
}
.box_img .wrapper_text h2 {
  margin-bottom: 17px;
  margin-top: 20px;
}
.box_img .wrapper_text p {
  font-family: "Roboto Light";
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
}
.box_img .wrapper_text p.mas_info {
  font-family: "Roboto Medium";
  font-size: 18px;
}

.anime_bottom_top {
  animation-name: bottom_top;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  margin-top: 220px;
}

.btn {
  transition: box-shadow 0.3s ease-in-out;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 15px 21px;
  font-size: 16px;
  border: 0;
  color: #333333;
  line-height: normal;
  box-shadow: none;
  white-space: normal;
  transition: 0.5s;
  font-family: "Roboto Regular";
  font-weight: 500;
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 0px hsla(50, 99%, 51%, 0.4);
}

.btn_1 {
  background-color: hsl(50, 100%, 50%);
}

.btn_2 {
  background-color: hsl(240, 100%, 12%);
  color: white;
}
.btn_2:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 0px hsla(240, 100%, 12%, 0.4);
}

.btn_eventos_plus {
  padding: 4px 7px;
  cursor: pointer;
}

.border {
  border: solid 1px #cfcfcf;
}

.caption {
  position: absolute;
  bottom: 0;
  background-color: white;
  padding: 40px;
  width: 550px;
  height: 240px;
  overflow: hidden;
  padding-top: 40px;
}
.caption h1 {
  font-family: "Karnov Display";
  margin-bottom: 17px;
}
.caption p {
  font-family: "Roboto Light";
  font-size: 22px;
  font-weight: 300;
  color: #3f403a;
  line-height: 30px;
}
.caption p.special {
  font-size: 18px;
  line-height: 23px;
  margin-top: -5px;
}

.caption_left {
  left: 7%;
}

.caption_right {
  right: 5%;
}

.caption_center {
  left: calc(50% - 275px);
}

.caption_fixed {
  bottom: -35px;
}

.color_text_white {
  color: white;
}

.color_text_1 {
  color: #1a1919;
}

.color_text_2 {
  color: #3f403a;
}

.color_text_3 {
  color: #686868;
}

.color_text_4 {
  color: #333333;
}

.color_text_5 {
  color: #e3e3e3;
}

.color_text_6 {
  color: hsl(50, 100%, 50%);
}

.color_text_7 {
  color: hsl(201, 39%, 65%);
}

.color_text_8 {
  color: #575757;
}

.df {
  display: flex;
}

.df_col {
  flex-direction: column;
}

.df_row {
  flex-direction: row;
}

.df_sb {
  justify-content: space-between;
}

.df_sa {
  justify-content: space-around;
}

.df_jcc {
  justify-content: center;
}

.df_center_center {
  align-items: center;
  justify-content: center;
}

.df_col_center_x {
  align-items: center;
}

.df_50_50 {
  gap: 30px;
  flex-wrap: wrap;
}
.df_50_50 > * {
  width: calc(50% - 30px);
  min-width: 400px;
  flex-grow: 1;
  max-height: 500px;
}

.df_50_50_min {
  gap: 30px;
  flex-wrap: wrap;
}
.df_50_50_min > * {
  width: calc(50% - 30px);
  min-width: 400px;
  flex-grow: 1;
}

.df_33_33_33 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_33_33_33 > * {
  width: calc(33% - 30px);
  min-width: 350px;
  flex-grow: 1;
}

.df_33_33_33.but_just_two {
  justify-content: center;
}
.df_33_33_33.but_just_two > * {
  max-width: 33%;
}

.df_25_25_25_25 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_25_25_25_25 > * {
  width: calc(25% - 30px);
  min-width: 300px;
  flex-grow: 1;
}

.df_20_20_20_20_20 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_20_20_20_20_20 > * {
  width: calc(20% - 30px);
  min-width: 200px;
  flex-grow: 1;
}

form input[type=text] {
  box-shadow: none;
  line-height: normal;
  border: 1px solid #cacbcd;
  font-weight: 300;
  height: 50px;
  padding-left: 17px;
  font-size: 18px;
  margin-bottom: 20px;
  border-radius: 0;
  color: #3f403a;
}

.ff_1 {
  font-family: "Roboto Regular";
}

.ff_2 {
  font-family: "Karnov Display";
}

.ff_11 {
  font-family: "Roboto Light";
}

.fs_10 {
  font-size: 45px;
}

.fs_9 {
  font-size: 38px;
}

.fs_8 {
  font-size: 32px;
}

.fs_7 {
  font-size: 28px;
}

.fs_6 {
  font-size: 24px;
}

.fs_5 {
  font-size: 20px;
}

.fs_4 {
  font-size: 18px;
}

.fs_3 {
  font-size: 16px;
}

.fs_2 {
  font-size: 14px;
}

.fs_1 {
  font-size: 12px;
}

.fw_900 {
  font-weight: 900;
}

.fw_800 {
  font-weight: 800;
}

.fw_700 {
  font-weight: 700;
}

.fw_600 {
  font-weight: 600;
}

.fw_500 {
  font-weight: 500;
}

.fw_400 {
  font-weight: 400;
}

.fw_300 {
  font-weight: 300;
}

.fw_200 {
  font-weight: 200;
}

.fw_100 {
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
}

.label_content p, .label_content ul {
  margin-top: 20px;
  font-size: 18px;
}
.label_content p img, .label_content ul img {
  margin-left: auto;
  margin-right: auto;
}
.label_content li {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 30px;
}
.label_content li::after {
  position: absolute;
  font-family: "fk-icons-filled";
  content: "\e90d";
  color: hsl(50, 100%, 50%);
  font-size: 16px;
  font-weight: 900;
  top: 5px;
  left: 5px;
}
.label_content li ul li {
  list-style-type: disc;
  padding-left: 0;
  margin-left: 30px;
}
.label_content li ul li::after {
  display: none;
}

.mt_0 {
  margin-top: 0;
}

.mt_1 {
  margin-top: 10px;
}

.mt_2 {
  margin-top: 20px;
}

.mt_3 {
  margin-top: 30px;
}

.mt_4 {
  margin-top: 40px;
}

.mt_auto {
  margin-top: auto;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_1 {
  margin-bottom: 10px;
}

.mb_2 {
  margin-bottom: 20px;
}

.mb_3 {
  margin-bottom: 30px;
}

.mb_4 {
  margin-bottom: 40px;
}

.mb_5 {
  margin-bottom: 50px;
}

.pt_0 {
  padding-top: 0;
}

.pt_1 {
  padding-top: 10px;
}

.pt_2 {
  padding-top: 20px;
}

.pt_3 {
  padding-top: 30px;
}

.pt_4 {
  padding-top: 40px;
}

.pt_auto {
  padding-top: auto;
}

.pb_0 {
  padding-bottom: 0;
}

.pb_1 {
  padding-bottom: 10px;
}

.pb_2 {
  padding-bottom: 20px;
}

.pb_3 {
  padding-bottom: 30px;
}

.pb_4 {
  padding-bottom: 40px;
}

.padding_0 {
  padding: 0;
}

.padding_1 {
  padding: 10px;
}

.padding_2 {
  padding: 20px;
}

.padding_3 {
  padding: 30px;
}

.padding_4 {
  padding: 40px;
}

.m_auto {
  margin: auto;
}

.ml_auto {
  margin-left: auto;
}

.fit_width {
  width: -moz-fit-content;
  width: fit-content;
}

.novedades_50 #widget_novedades .wrapper_widget {
  max-height: 250px;
}

.scrollbar::-webkit-scrollbar {
  background-color: tranparent;
  width: 16px;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: tranparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 5px solid #fff;
  height: 90px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

section:not(#header_image) {
  margin-top: 90px;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_anchor {
  color: black;
  border-bottom: solid 1px black;
}
.text_anchor:hover {
  border-bottom: none;
}

.widget span[class^=fk-icon] {
  display: block;
  width: 100%;
  margin-left: 0;
  font-size: 60px;
  font-weight: 100;
}
.widget h1 {
  margin-bottom: 30px;
  margin-top: 10px;
}

.wrapper_columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.wrapper_columns > * {
  flex: 1;
  max-width: 460px;
  min-width: 450px;
  display: flex;
  flex-direction: column;
}
.wrapper_columns .column .box_img:has(img),
.wrapper_columns .column .wrapper_image:has(img) {
  position: relative;
  transition: opacity 0.3s ease-in-out;
  background-color: none;
}
.wrapper_columns .column .box_img:has(img) img,
.wrapper_columns .column .wrapper_image:has(img) img {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  width: 100%;
}
.wrapper_columns .column .box_img:has(img)::after,
.wrapper_columns .column .wrapper_image:has(img)::after {
  font-family: "Karnov Icons Open";
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "\e84a";
  font-size: 40px;
  font-weight: 100;
  color: hsl(50, 100%, 50%);
  top: 39%;
  left: 45%;
  opacity: 0;
}
.wrapper_columns .column:hover .box_img:has(img),
.wrapper_columns .column:hover .wrapper_image:has(img) {
  background-color: #686868;
}
.wrapper_columns .column:hover .box_img:has(img) img,
.wrapper_columns .column:hover .wrapper_image:has(img) img {
  opacity: 0.3;
}
.wrapper_columns .column:hover .box_img:has(img)::after,
.wrapper_columns .column:hover .wrapper_image:has(img)::after {
  opacity: 1;
}
.wrapper_columns a.column:hover {
  cursor: pointer;
}

.wrapper_header_and_nav {
  padding: 34px;
  padding-bottom: 20px;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: auto;
  background-color: white;
}

.wrapper_header_and_nav.fixed {
  border-bottom: solid 1px #e5e5e5;
}

.wrapper_header_and_nav.fixed {
  border-bottom: solid 1px #e3e3e3;
}

.wrap_container {
  padding: 34px;
  max-width: 2000px;
  margin: auto;
  margin-top: 144px;
  padding-top: 0;
}
.wrap_container > section:not(#header_image) {
  max-width: 1520px;
  margin-inline: auto;
}

.wrapper_hidden_events {
  display: none;
}

.wrapper_max_width_lg {
  max-width: 80%;
  margin-inline: auto;
}

.wrapper_max_width_md {
  max-width: 50%;
}

.wrapper_max_width_sm {
  max-width: 20%;
}

.small {
  font-size: 14px !important;
}

.wrapper_links .btn {
  margin: auto;
}

@keyframes bottom_top {
  0% {
    margin-top: 220px;
  }
  100% {
    margin-top: 0px;
  }
}
#otros_links .wrapper_title,
#productos_relacionados .wrapper_title {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}

.pr {
  padding-right: 20px;
}

.pl {
  padding-left: 20px;
}

.pl_10 {
  padding-left: 10px;
}

.pl_20 {
  padding-left: 20px;
}

.pl_30 {
  padding-left: 30px;
}

.pl_40 {
  padding-left: 40px;
}

.pl_50 {
  padding-left: 50px;
}

.dropdown {
  border: none;
  position: relative;
  background-color: #fff;
  width: 100%;
  font-size: 18px;
  display: inline-block;
  max-width: 292px;
  margin-right: 19px;
  margin-bottom: 0;
}
.dropdown .open span::after {
  transform: rotate(180deg);
}
.dropdown span {
  padding: 17px 50px 17px 20px;
  display: block;
  cursor: pointer;
  color: #3f403a;
  border: 1px solid #e3e3e3;
  transition: color 0.2s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  font-weight: 300;
  background-color: #fff;
  font-family: "Roboto Light";
  font-size: 18px;
  font-weight: 800;
}
.dropdown span::after {
  font-family: "fk-icons-filled";
  content: "🡡";
  position: absolute;
  right: 15px;
  transition: transform 0.45s ease-in-out;
}
.dropdown .rotate::after {
  transform: rotate(180deg);
  transition: transform 0.45s ease-in-out;
}
.dropdown ul {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 200;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid #e3e3e3;
  border-top: 0;
  margin: 0;
}
.dropdown ul .open {
  display: block;
}
.dropdown ul li {
  cursor: pointer;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  border-bottom: 1px solid #e3e3e3;
  color: #3f403a;
  font-weight: 300;
  text-decoration: none;
  display: block;
  padding: 10px 12px 10px 20px;
  position: relative;
}
.dropdown ul li::before {
  display: none;
  content: none !important;
}

.fk_icon_context {
  margin-right: 15px;
  color: hsl(50, 100%, 50%);
}

.list .list_title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Karnov Display";
  font-weight: 500;
  font-size: 32px;
  color: #1a1919;
}
.list .item-principal {
  border-bottom: 1px solid #cfcfcf;
  background: white;
}
.list .title-principal {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 15px;
  align-items: center;
}
.list .title-principal:hover {
  background: hsl(203, 42%, 93%);
}
.list .title-principal .fk-icon {
  margin: 10px 0;
  font-size: 24px;
}
.list .item {
  border-bottom: 1px solid #cfcfcf;
  background: white;
  display: none;
  margin-left: 45px;
}
.list .item:last-child {
  border-bottom: 0px;
}
.list .item .title {
  font-weight: 100;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 15px;
}
.list .item .title:hover {
  background: hsl(203, 42%, 93%);
}
.list .item .title p {
  margin: 10px 0;
  padding-right: 15px;
  text-align: justify;
}
.list .item .title .fk-icon {
  margin: 10px 0;
  font-size: 24px;
}
.list .item .text {
  background: white;
  padding: 0 15px;
  display: none;
}
.list .item .text a {
  color: #3f403a;
  text-decoration: underline;
}
.list .item .text p {
  margin: 0;
  padding: 20px 0;
}
.list .item .text .alert {
  color: #e5202e;
}
.list img.inline_block {
  display: inline-block;
  vertical-align: middle;
}

.noticias-item {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Karnov Display";
  font-weight: 500;
  color: #1a1919;
  border-bottom: 1px solid #cacbcd;
}
.noticias-item .noticia-imagen a .noticia-titulo,
.noticias-item .noticia-texto a .noticia-titulo,
.noticias-item .noticia-fecha a .noticia-titulo {
  font-family: "Karnov Display";
  font-size: 24px;
}

#noticias_sala_prensa h2 {
  display: none;
}
#noticias_sala_prensa ul li {
  display: flex;
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid #cacbcd;
}
#noticias_sala_prensa ul li::after {
  top: 15px;
  display: none;
}
#noticias_sala_prensa ul li img {
  width: 150px;
  max-width: 150px;
  height: 100%;
  margin: 0;
  margin-right: 15px;
}
#noticias_sala_prensa ul li a {
  display: flex;
  flex-direction: column;
  font-family: "Karnov Display";
  font-size: 24px;
  color: #1a1919;
  font-weight: 500;
}
#noticias_sala_prensa ul li a b {
  order: 1;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a em {
  order: 2;
  font-style: normal;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a i {
  order: 3;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a tt {
  order: 4;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
}

#nuestra_comunidad_laley {
  background-color: #f5f5f7;
}
#nuestra_comunidad_laley .wrapper_title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#nuestra_comunidad_laley #comunidad_diagrama {
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.carrusel_home {
  position: relative;
  overflow: auto;
}
.carrusel_home li {
  list-style: none;
  float: left;
}

@media (max-width: 800px) {
  .main_header_logo .header_logo_laley {
    width: 115px;
  }
  .wrapper_header_and_nav {
    padding: 15px;
  }
  .wrap_container {
    margin-top: 100px;
    padding: 15px;
  }
  .wrapper_max_width_lg {
    max-width: 100%;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .box {
    padding: 20px;
  }
  .box a {
    margin-bottom: 15px;
  }
  .box_img .wrapper_text h2 {
    overflow-wrap: break-word;
    font-size: 30px;
  }
  .df_50_50 > * {
    min-width: 100%;
  }
  .df_33_33_33 > * {
    min-width: 100%;
  }
  .btn {
    padding: 10px 15px;
  }
  .wrapper_columns > * {
    min-width: 100%;
  }
}
@media (max-width: 950px) {
  .caption {
    padding: 20px;
    height: 170px;
  }
  .caption h1 {
    font-size: 25px;
  }
  .caption p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 760px) {
  .caption {
    left: 15px;
    bottom: -1px;
    width: calc(100% - 30px);
  }
  .box_text h2 {
    font-size: 25px;
  }
  .box_text_intro {
    padding: 25px;
  }
}
.main_header_logo .header_logo_laley {
  width: 120px;
}

.bg_header_image {
  background-size: cover;
  background-position: center center;
  height: 515px;
}

#bg_img_header_carrusel_image_1 {
  background-image: url("../_img/header-silla.jpg");
}

#bg_img_header_carrusel_image_2 {
  background-image: url("../_img/header-laleydigital.jpg");
}

#bg_img_header_carrusel_image_3 {
  background-image: url("../_img/header-ciss.jpg");
}

#bg_img_header_carrusel_image_4 {
  background-image: url("../_img/header-jurimetria.jpg");
}

#bg_img_header_carrusel_image_5 {
  background-image: url("../_img/header-legalteca.jpg");
}

#bg_img_header_carrusel_image_6 {
  background-image: url("../_img/header-consultor-ayuntamientos.jpg");
}

#bg_img_header_carrusel_image_7 {
  background-image: url("../_img/header-contractbox.jpg");
}

#bg_img_header_carrusel_image_8 {
  background-image: url("../_img/header-complylaw.jpg");
}

#bg_img_header_carrusel_image_10 {
  background-image: url("../_img/header-woman-black-and-white.jpg");
}

#bg_img_header_carrusel_image_11 {
  background-image: url("../_img/header-man-color.jpg");
}

#bg_img_header_laley_digital {
  background-image: url("../_img/header-laleydigital.jpg");
}

#bg_img_header_consultor_juridico {
  background-image: url("../_img/header-consultor-juridico.jpg");
}

#bg_img_header_ciss_fiscal {
  background-image: url("../_img/header-ciss-fiscal.jpg");
}

#bg_img_header_ciss_laboral {
  background-image: url("../_img/header-ciss-laboral.jpg");
}

#bg_img_header_ciss_contable_mercantil {
  background-image: url("../_img/header-ciss-contable-mercantil.jpg");
}

#bg_img_header_bitopus_ciss {
  background-image: url("../_img/header-bitopus-ciss.jpg");
}

#bg_img_header_consultor_ayuntamientos {
  background-image: url("../_img/header-consultor-ayuntamientos.jpg");
}

#bg_img_header_jurimetria {
  background-image: url("../_img/header-jurimetria.jpg");
}

#bg_img_header_contractbox {
  background-image: url("../_img/header-contractbox.jpg");
}

#bg_img_header_evidencias_ecoiuris {
  background-image: url("../_img/header-evidencias-ecoiuris.jpg");
}

#bg_img_header_complylaw_fiscal {
  background-image: url("../_img/header-complylaw-fiscal.jpg");
}

#bg_img_header_complylaw_penal {
  background-image: url("../_img/header-complylaw-penal.jpg");
}

#bg_img_header_complylaw_privacidad {
  background-image: url("../_img/header-complylaw-privacidad.jpg");
}

#bg_img_header_complylaw_igualdad {
  background-image: url("../_img/header-complylaw-igualdad.jpg");
}

#bg_img_header_complylaw_operaciones_vinculadas {
  background-image: url("../_img/header-complylaw-operaciones-vinculadas.jpg");
}

#bg_img_header_complylaw_canal_etico {
  background-image: url("../_img/header-canal-etico.jpg");
}

#bg_img_header_checkfiscal {
  background-image: url("../_img/header-checkfiscal.jpg");
}

#bg_img_header_gioconda {
  background-image: url("../_img/header-gioconda.jpg");
}

#bg_img_header_consultor_elicita {
  background-image: url("../_img/header-elicita.jpg");
}

#bg_img_header_legalteca {
  background-image: url("../_img/header-legalteca.jpg");
}

#bg_img_header_cuadernos_de_pedagogia {
  background-image: url("../_img/header-cuadernosdepedagogia.jpg");
}

#bg_img_header_obras_actualizables {
  background-image: url("../_img/header-obras-actualizables.jpg");
}

#bg_img_header_libros {
  background-image: url("../_img/header-libros.jpg");
}

#bg_img_header_ultimas_novedades_editoriales {
  background-image: url("../_img/header-libros.jpg");
}

#bg_img_header_diariolaley {
  background-image: url("../_img/header-diariolaley.jpg");
}

#bg_img_header_tecnica_contable_financiera {
  background-image: url("../_img/header-tecnica-contable-financiera.jpg");
}

#bg_img_header_revista_el_consultor_de_los_ayuntamientos {
  background-image: url("../_img/header-revista-consultor-ayuntamientos.jpg");
}

#bg_img_header_capital_humano {
  background-image: url("../_img/header-capital-humano.jpg");
}

#bg_img_header_revista_cuadernos_de_pedagogia {
  background-image: url("../_img/header-revista-cuadernos-pedagogia.jpg");
}

#bg_img_header_portal_de_revistas {
  background-image: url("../_img/header-portal-de-revistas.jpg");
}

#bg_img_header_marcas_la_ley {
  background-image: url("../_img/header-marcas-laley.jpg");
}

#bg_img_header_marcas_bosch {
  background-image: url("../_img/header-bosch.jpg");
}

#bg_img_header_marcas_ciss {
  background-image: url("../_img/header-ciss.jpg");
}

#bg_img_header_marcas_el_consultor_de_los_ayuntamientos {
  background-image: url("../_img/header-marcas-consultor-de-los-ayuntamientos.jpg");
}

#bg_img_header_profesionales_juridicos {
  background-image: url("../_img/header-profesionales-juridicos.jpg");
}

#bg_img_header_pymes_y_autonomos {
  background-image: url("../_img/header-profesionales-pymes-y-autonomos.jpg");
}

#bg_img_header_profesionales_de_la_educacion {
  background-image: url("../_img/header-profesionales-profesionales-de-la-educacion.jpg");
}

#bg_img_header_asesorias {
  background-image: url("../_img/header-profesionales-asesorias.jpg");
}

#bg_img_header_grandes_empresas {
  background-image: url("../_img/header-profesionales-grandes-empresas.jpg");
}

#bg_img_header_administraciones_publicas {
  background-image: url("../_img/header-profesionales-administraciones-publicas.jpg");
}

#bg_img_header_la_ley_responde {
  background-image: url("../_img/header-contacto.jpg");
}

#bg_img_header_eventos {
  background-image: url("../_img/header-sobrenostros-laley-eventos.jpg");
}

#bg_img_header_nuestros_autores {
  background-image: url("../_img/header-buscador-autores.jpg");
}

#bg_img_header_formacion {
  background-image: url("../_img/header-formacion.jpg");
}

nav#nav_mobile {
  display: none;
}

nav#nav_desktop {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-top: 20px;
}
nav#nav_desktop li.menu_link {
  list-style: none;
}
nav#nav_desktop li.menu_link > a {
  position: relative;
  color: #1a1919;
  font-family: "Roboto Medium";
  font-weight: 500;
  padding: 0 14px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 30px;
}
nav#nav_desktop li.menu_link > a:last-child {
  padding-right: 0;
}
nav#nav_desktop li.menu_link > a::after {
  display: none;
  content: "";
  position: absolute;
  z-index: 100;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-bottom: 21px solid hsl(240, 100%, 12%);
}
nav#nav_desktop li.menu_link > a span {
  position: relative;
}
nav#nav_desktop li.menu_link > a span::before {
  display: none;
  content: "";
  position: absolute;
  z-index: 100;
  width: 100%;
  left: 0;
  bottom: 2px;
  border-bottom: 1px solid hsl(240, 100%, 12%);
}
nav#nav_desktop li.menu_link:hover:not(.menu_link_hide) > a::after {
  display: block;
}
nav#nav_desktop li.menu_link:hover:not(.menu_link_hide) > a span::before {
  display: block;
}
nav#nav_desktop li.menu_link_hide:hover a span::before {
  display: block;
}

.megamenu {
  display: none;
  position: absolute;
  z-index: 99;
  left: 0;
  width: 100%;
  min-height: 200px;
  background-color: hsl(240, 100%, 12%);
  padding: 60px 5%;
  margin-top: 20px;
  padding-left: 170px;
}

.megamenu.formacion,
.megamenu.marcas,
.megamenu.profesionales,
.megamenu.contacto {
  min-width: 400px;
  width: 400px;
  right: 0;
  left: unset;
  padding-left: 40px;
}

.megamenu.formacion {
  right: 300px;
}

.megamenu.hover {
  display: block;
}

.wrapper_suboptions {
  margin-top: 20px;
}
.wrapper_suboptions .suboption_column {
  border-right: solid 1px hsla(203, 42%, 93%, 0.2);
  min-width: auto;
}
.wrapper_suboptions .suboption_column h2 {
  margin-bottom: 20px;
}
.wrapper_suboptions .suboption_column li {
  margin-bottom: 10px;
}
.wrapper_suboptions .suboption_column li a {
  margin-top: -5px;
}
.wrapper_suboptions .suboption_column:last-child {
  border-right: none;
}
.wrapper_suboptions .suboption_column a.btn {
  margin-top: 40px;
}
.wrapper_suboptions .suboption_column ul > h2.menu_block {
  margin-bottom: 0;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .megamenu {
    padding-left: 60px;
  }
}
@media (max-width: 950px) {
  nav#nav_desktop {
    display: none;
  }
  .icon_menu_mobile {
    display: block;
    margin-left: auto;
    margin-top: 10px;
    font-size: 30px;
  }
  .icon_menu_mobile:hover {
    cursor: pointer;
  }
  nav#nav_mobile.open {
    margin: 0;
    margin-top: 5px;
    display: block;
    position: absolute;
    left: 0;
    width: calc(100% + 22px);
    height: 90vh;
    overflow-y: scroll;
    background-color: #fed75b;
    padding: 30px 20px;
  }
  nav#nav_mobile.open ul {
    padding-right: 20px;
  }
  nav#nav_mobile.open ul > li {
    position: relative;
    margin-bottom: 30px;
  }
  nav#nav_mobile.open ul > li .arrow {
    position: absolute;
    right: 0;
    top: 2px;
  }
  nav#nav_mobile.open ul > li .arrow:hover {
    cursor: pointer;
  }
  nav#nav_mobile.open ul > li p {
    margin-bottom: 0;
  }
  nav#nav_mobile.open ul > li p > a {
    color: #3f403a;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile {
    display: none;
    padding-left: 20px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile li {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 17px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a {
    position: relative;
    display: block;
    color: #3f403a;
    font-size: 15px;
    width: 100%;
    margin-bottom: 10px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a::after {
    display: block;
    position: absolute;
    border-bottom: solid 1px red;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a:hover {
    text-decoration: underline;
  }
}
#header_image .wrapper_header_image {
  position: relative;
}
#header_image .wrapper_header_image img {
  width: 100%;
}

#widget_novedades .wrapper_widget {
  max-height: 650px;
  overflow-y: scroll;
}
#widget_novedades .wrapper_widget ul {
  padding-left: 10px;
}
#widget_novedades .wrapper_widget li {
  position: relative;
  padding-right: 10px;
  padding-left: 8px;
  margin-bottom: 20px;
}
#widget_novedades .wrapper_widget li::after {
  position: absolute;
  content: ">";
  color: hsl(50, 100%, 50%);
  font-size: 24px;
  font-weight: 900;
  top: 0px;
  left: -10px;
}
#widget_novedades .wrapper_widget a {
  font-size: 18px;
  color: #3f403a;
}
#widget_novedades .wrapper_widget a:hover {
  text-decoration: underline;
}

#widget_productos_relacionados .wrapper_title {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#widget_productos_relacionados .wrapper_productos {
  margin-top: 40px;
}
#widget_productos_relacionados .producto_item > * {
  margin-bottom: 20px;
}
#widget_productos_relacionados .producto_item a.btn {
  margin-top: auto;
}

#widget_avisos h2 {
  font-size: 23px;
  line-height: 27px;
  color: #3f403a;
  font-weight: 400;
  font-family: "Roboto Regular";
}
#widget_avisos .wrapper_max_width_lg p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto Light";
  letter-spacing: -0.1px;
  line-height: 1.27;
  margin: bottom 1em;
  color: #575757;
}
#widget_avisos .wrapper_max_width_lg a {
  color: #3f403a;
}
#widget_avisos .wrapper_max_width_lg a:hover {
  text-decoration: underline;
}
#widget_avisos .wrapper_max_width_lg li {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto Light";
  letter-spacing: -0.1px;
  line-height: 1.27;
  margin: bottom 1em;
}

#noticias_sala_prensa .box img {
  display: none;
}

#ultimas_novedades_editoriales .btn_year {
  margin-bottom: 40px;
}
#ultimas_novedades_editoriales .btn_year:hover {
  cursor: pointer;
}
#ultimas_novedades_editoriales .wrapper_novedades_year {
  display: flex;
  flex-wrap: wrap;
}
#ultimas_novedades_editoriales .novedades_item {
  width: 220px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}
#ultimas_novedades_editoriales .novedades_item .novedad_portada img {
  border: solid 1px #dcdcdc;
}
#ultimas_novedades_editoriales .novedades_item .novedad_title {
  margin-top: 10px;
}

#wrapper_buscador_autores .wrapper_listado_materias {
  margin-bottom: 50px;
  flex-wrap: wrap;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item {
  width: 33%;
  margin-bottom: 8px;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item label input {
  margin-right: 10px;
  width: 20px !important;
  height: 20px !important;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item label:hover {
  cursor: pointer;
}
#wrapper_buscador_autores .wrapper_busqueda_nombre input#input-buscador-autores {
  width: 100%;
}

#wrapper_resultado_busqueda_autores .row_autores {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}
#wrapper_resultado_busqueda_autores .wrapper_autor {
  position: relative;
  background-color: hsl(40, 17%, 86%);
  width: 33%;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .texto_autor_single {
  display: none;
  background-color: white;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor {
  display: flex;
  flex-direction: column;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor {
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: none;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor img {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  width: 100%;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor:after {
  font-family: "Karnov Icons Open";
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "\e84a";
  font-size: 40px;
  font-weight: 100;
  color: hsl(50, 100%, 50%);
  top: 39%;
  left: 45%;
  opacity: 0;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .nombre_cargo_autor {
  padding: 30px;
  background-color: hsl(40, 17%, 86%);
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover {
  cursor: pointer;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor {
  background-color: #686868;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor img {
  opacity: 0.3;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor:after {
  opacity: 1;
}
#wrapper_resultado_busqueda_autores .wrapper_autor.show_arrow::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(40, 17%, 86%);
}
#wrapper_resultado_busqueda_autores .ficha_autor_full {
  position: relative;
  max-width: 95%;
  margin-inline: auto;
  display: none;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full img.foto_autor {
  float: left;
  margin: 30px;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full {
  width: 100%;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full a {
  position: relative;
  text-decoration: none;
  color: #3f403a;
  border-bottom: 1px solid #3f403a;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full a:hover {
  border-bottom: 0px;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .close_ficha {
  position: absolute;
  top: 20px;
  right: 20px;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .close_ficha:hover {
  cursor: pointer;
}

@media (max-width: 1035px) {
  #wrapper_buscador_autores .wrapper_listado_materias .materia_item {
    width: 40%;
    flex-grow: 1;
  }
}
@media (max-width: 850px) {
  #wrapper_resultado_busqueda_autores .row_autores {
    flex-direction: column;
  }
  #wrapper_resultado_busqueda_autores .wrapper_autor {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #wrapper_buscador_autores .wrapper_listado_materias .materia_item {
    width: 100%;
    flex-grow: 1;
  }
}
#novedades_container {
  text-align: justify;
}
#novedades_container .tab-content {
  padding-top: 50px;
}
#novedades_container h2 {
  font-size: 35px;
}
#novedades_container a {
  position: relative;
  text-decoration: none;
  color: #3f403a;
  border-bottom: 1px solid #3f403a;
}
#novedades_container a:hover {
  border-bottom: 0px;
}
#novedades_container .iMg {
  float: left;
  margin-right: 25px;
}
#novedades_container img {
  float: left;
  margin-right: 25px;
}
#novedades_container em {
  font-weight: 600;
  color: #000;
}
#novedades_container #footer_nav a {
  text-decoration: none;
  border-bottom: 0;
}
#novedades_container #footer_nav a:hover {
  border-bottom: 1px solid #3f403a;
}
#novedades_container #social_icons a {
  text-decoration: none;
  border-bottom: 0;
}

#valores_corporativos .wrapper_widget {
  max-height: 300px;
  overflow-y: scroll;
}

form.flex-form {
  margin-top: 35px;
}
form.flex-form select {
  height: 40px;
  padding: 10px;
  font-size: 16px;
  border: none;
  margin-top: 5px;
  margin-bottom: 10px;
}
form.flex-form .error.show {
  color: hsl(240, 100%, 12%);
  background-color: hsl(50, 100%, 50%);
  padding: 0;
  padding: 5px;
}

#ajax_resultados_eventos_anteriores {
  display: none;
}
#ajax_resultados_eventos_anteriores .wrapper-filtros-eventos {
  margin-bottom: 40px;
}
#ajax_resultados_eventos_anteriores .wrapper-filtros-eventos #ajax-title-data-range {
  font-size: 42px;
}
#ajax_resultados_eventos_anteriores h4.box-eventos-anteriores {
  cursor: pointer;
  background-color: white;
  padding: 10px;
  font-family: "Karnov Display";
  font-size: 30px;
  font-weight: 100;
  color: #3f403a;
  margin-bottom: 0px;
  border-bottom: solid 1px #cccccc;
}
#ajax_resultados_eventos_anteriores h4.box-eventos-anteriores:hover {
  background-color: hsl(203, 42%, 93%);
}
#ajax_resultados_eventos_anteriores h4.box-eventos-anteriores span[class^=fk-icon] {
  position: relative;
  top: -5px;
  right: -97%;
  color: #3f403a;
  width: 25px;
  height: 25px;
  border: solid 1px hsl(240, 100%, 12%);
  padding: 0;
  padding-top: 5px;
  font-size: 15px;
  margin-right: 10px;
}
#ajax_resultados_eventos_anteriores .box-anteriores-por-tipo {
  margin-bottom: 40px;
}
#ajax_resultados_eventos_anteriores .box-anteriores-por-tipo .item-evento-anterior {
  padding-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: solid 1px #cacbcd;
  padding-left: 20px;
}
#ajax_resultados_eventos_anteriores .item-evento {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
#ajax_resultados_eventos_anteriores .item-evento .titulo {
  padding-left: 20px;
}
#ajax_resultados_eventos_anteriores .item-evento .wrapper_evento_data {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
#ajax_resultados_eventos_anteriores .item-evento .btn {
  margin-top: 20px;
  margin-left: 20px;
}
#ajax_resultados_eventos_anteriores .item-evento .btn a {
  color: #333333;
}
#ajax_resultados_eventos_anteriores .item-evento .btn a:hover {
  color: #333333;
}

#wrapper_ordenador_canal_etico {
  min-width: auto;
}
#wrapper_ordenador_canal_etico .ordenador_canal_etico {
  margin: auto;
}

#operaciones_vinculadas_ventajas .df_50_50 > *,
#operaciones_vinculadas_garantias .df_50_50 > * {
  max-height: inherit;
}

@media (max-width: 915px) {
  #domicilio_valencia {
    flex-direction: column-reverse;
  }
  #domicilio_valencia > * {
    width: 100%;
  }
}
section#formularios .wrapper_formularios {
  max-width: 80%;
  margin: auto;
  margin-top: 60px;
}
section#formularios .wrapper_tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
section#formularios .wrapper_tabs .tab_pane {
  position: relative;
  transition: none;
  text-align: center;
  padding: 20px 60px 30px 60px;
}
section#formularios .wrapper_tabs .tab_pane .sub_txt {
  font-size: 14px;
}
section#formularios .wrapper_tabs .tab_pane.on {
  background-color: hsl(50, 100%, 50%);
  color: black;
}
section#formularios .wrapper_tabs .tab_pane.on::before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  border-top: 15px solid hsl(50, 100%, 50%);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
section#formularios .wrapper_tabs .tab_pane.off {
  background-color: hsl(240, 100%, 12%);
  color: white;
}
section#formularios .wrapper_tabs .tab_pane.off:hover {
  box-shadow: 0 0 10px 0px hsla(240, 100%, 12%, 0.4);
}

@media (max-width: 800px) {
  section#formularios .wrapper_tabs .tab_pane {
    padding: 10px;
    font-size: 20px;
  }
  section#formularios .wrapper_tabs .tab_pane .sub_txt {
    display: none;
  }
  section#formularios .wrapper_formularios {
    max-width: 95%;
    margin-top: 40px;
  }
}
#widget_avisos h1 {
  margin-bottom: 25px;
}
#widget_avisos h2 {
  margin-bottom: 10px;
}
#widget_avisos p a {
  border-bottom: solid 1px black;
}
#widget_avisos p a:hover {
  border-bottom: none;
}

section#somos_la_ley .wrapper_video {
  border: solid 1px #cfcfcf;
  width: 60%;
  margin: 80px auto;
  padding: 30px;
}

@media (max-width: 1000px) {
  section#somos_la_ley .wrapper_video {
    width: 80%;
  }
}
@media (max-width: 800px) {
  section#somos_la_ley .wrapper_video {
    width: 100%;
  }
}
section#wrapper_nuestros_autores .wrapper_formulario_autores {
  max-width: 65%;
  margin: auto;
}
section#wrapper_nuestros_autores .column .wrapper_features {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: centera;
  lign-items: center;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
section#wrapper_nuestros_autores .autor-features {
  width: 30%;
  border: solid 1px hsl(240, 100%, 12%);
  padding-bottom: 75%;
  background-color: hsl(240, 100%, 12%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-color ease-in-out 0.3s;
  position: relative;
}
section#wrapper_nuestros_autores .autor-features:hover {
  background-color: hsl(50.12, 100%, 50%);
  color: black;
}
section#wrapper_nuestros_autores .autor-features .autor-features-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  cursor: default;
}
section#wrapper_nuestros_autores .autor-features .autor-features-content:hover {
  color: black;
}
section#wrapper_nuestros_autores .autor-features .autor-features-content-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}
section#wrapper_nuestros_autores form {
  background-color: #fff;
  padding: 20px;
  border-radius: 0;
  border: solid 1px #ccc;
  padding: 30px;
  font-family: "Roboto";
}
section#wrapper_nuestros_autores form #contador {
  border-radius: 5px;
  padding: 2px 10px;
  color: white;
  font-size: 15px;
  padding-bottom: 4px;
}
section#wrapper_nuestros_autores form #contador.green {
  background-color: green;
}
section#wrapper_nuestros_autores form #contador.orange {
  background-color: orange;
}
section#wrapper_nuestros_autores form #contador.red {
  background-color: red;
}
section#wrapper_nuestros_autores .laley-input {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-color: #fff !important;
  border: 1px solid #dadada !important;
  border-radius: 0 !important;
  color: #474747 !important;
  font-family: "Roboto Regular" !important;
  font-size: 1rem !important;
  min-width: 80px;
  min-height: 3rem !important;
  line-height: 1.5 !important;
  padding: 0.6875rem 1rem !important;
}
section#wrapper_nuestros_autores .laley-div-double {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
section#wrapper_nuestros_autores .laley-file-input {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-color: #fff !important;
  border: 1px solid #dadada !important;
  border-radius: 0 !important;
  color: #474747 !important;
  font-family: "Roboto Regular" !important;
  font-size: 1rem !important;
  min-height: 3rem !important;
  line-height: 1.5 !important;
  padding: 0.6875rem 1rem !important;
  margin-bottom: 10px !important;
}
section#wrapper_nuestros_autores .laley-input-checkbox {
  height: 20px;
  width: 20px;
  font-size: 1rem;
  margin-right: 0.3125em;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 10px;
}
section#wrapper_nuestros_autores .laley-input-checkbox-text {
  color: #474747 !important;
  font-family: "Roboto Regular" !important;
  font-size: 1rem !important;
  min-height: 3rem !important;
  line-height: 1.5 !important;
}
section#wrapper_nuestros_autores .laley-input-checkbox-text a {
  cursor: pointer;
  text-decoration: none;
  color: black;
}
section#wrapper_nuestros_autores .laley-msgresponse {
  margin: 10px;
  display: none;
}
section#wrapper_nuestros_autores .laley-msgresponse p {
  padding: 10px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}
section#wrapper_nuestros_autores .laley-msgresponse p.success {
  background-color: #5fa066;
  color: black;
}
section#wrapper_nuestros_autores .laley-msgresponse p.error {
  background-color: #ca4444;
  color: white;
}
section#wrapper_nuestros_autores .msgboxerror {
  padding: 10px;
  background-color: #d63b3b;
  font-family: "Roboto Regular";
  color: white !important;
}
section#wrapper_nuestros_autores .msgboxok {
  padding: 10px;
  background-color: hsl(201, 39%, 65%);
  color: white;
}

#WKForm_emailValidation {
  display: none;
}

#preloader {
  text-align: center;
}
#preloader .preloader_text_1,
#preloader .preloader_text_2,
#preloader .preloader_text_3 {
  text-align: center;
  color: black;
  margin-bottom: 0;
}
#preloader .preloader_text_1 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
#preloader .preloader_text_2 {
  font-size: 15px;
  font-weight: 400;
}
#preloader .preloader_text_3 {
  font-size: 15px;
  font-weight: 100;
}
#preloader .container-spinner {
  position: relative;
  height: 104px;
  width: 104px;
  margin: auto;
  margin: 40px auto;
}
#preloader .container-spinner .load-container {
  position: absolute;
  left: -2px;
  top: 0px;
  display: inline-block;
  width: 110px;
  height: 110px;
  box-sizing: border-box;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
#preloader .container-spinner .linespinner {
  width: 8px;
  height: 20px;
  background: #000;
  position: relative;
  animation: linespinner 2s ease-in-out infinite;
  animation-delay: 0.2s;
}
#preloader .container-spinner .linespinner::after, #preloader .container-spinner .linespinner::before {
  width: 8px;
  height: 20px;
  content: "";
  position: absolute;
  background: #000;
  animation: linespinner 1.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
#preloader .container-spinner .linespinner::after {
  left: 10px;
  animation-delay: 0.4s;
}
#preloader .container-spinner .linespinner::before {
  right: 10px;
  animation-delay: 0s;
}
@keyframes linespinner {
  0%, 100% {
    background-color: #000;
    box-shadow: 0 0 0 #000, 0 0 0 #000;
  }
  50% {
    background-color: #000;
    box-shadow: 0 -20px 0 #000, 0 20px 0 #000;
  }
}

.spinner {
  position: absolute;
  left: 0px;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: conic-gradient(rgba(100, 100, 100, 0.8), #000);
  animation: spin 1.2s linear infinite;
  transform: translateZ(0);
}
.spinner::after {
  background: #fff;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

form {
  position: relative;
  width: 100%;
}
form #WKFormModal.oculta {
  display: none;
}
form #WKFormModal {
  display: block;
  position: absolute;
  width: 90%;
  left: 5%;
  top: 50px;
}
form #WKFormModal section.wk-modal-content {
  margin-top: 0;
}
form #WKFormModal .wrapper-text-and-preloader {
  box-shadow: 0px 0px 26px -3px #bcbcbc;
  border: 1px solid #cfcfcf;
  background-color: #f1f1f1;
  margin-bottom: 15px;
  padding: 20px 10px;
}
form #WKFormModal .wrapper-text-and-preloader .gdpr {
  border-top: 1px solid #cfcfcf;
  padding: 15px;
  margin-top: 20px;
  font-size: 14px;
}
form #WKFormModal .wrapper-text-and-preloader .gdpr label {
  font-weight: 600;
}
form #WKFormModal .wrapper-text-and-preloader .gdpr input {
  min-height: 20px;
  min-width: 20px;
  margin-top: 0;
  margin-right: 15px;
}
form #WKFormModal .wrapper-text-and-preloader p {
  text-align: center;
}
form #WKFormModal .wrapper-text-and-preloader p.intro {
  padding: 0 15px;
}
form #WKFormModal .wrapper-text-and-preloader .info {
  font-size: 13px;
}
form #WKFormModal .wrapper-text-and-preloader .email {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border: solid 1px #cfcfcf;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
  padding: 13px;
  color: black;
  margin-bottom: 15px;
}
form #WKFormModal .wrapper-text-and-preloader .validation {
  display: flex;
  justify-content: center;
}
form #WKFormModal .wrapper-text-and-preloader .validation #WKForm_verification_code {
  text-align: center;
  width: 100px;
  outline: none;
  padding: 0;
  line-height: 48px;
  font-size: 25px;
  height: 43px;
  margin-top: 6px;
}
form #WKFormModal .wrapper-text-and-preloader .validation #WKForm_verification_code:focus {
  border: 1px solid #cfcfcf;
  border-right: 0px;
}
form #WKFormModal .wrapper-text-and-preloader .validation #WKForm_verification_code:hover {
  border: 1px solid #cfcfcf;
  border-right: 0px;
}
form #WKFormModal .wrapper-text-and-preloader .validation button.btn {
  height: 43px;
  margin-top: 6px;
  margin-left: 20px;
}
form #WKFormModal .wrapper-text-and-preloader .error {
  color: #e5202e;
  font-size: 15px;
  text-align: center;
  display: none;
}
form #WKFormModal .wrapper-text-and-preloader .timer_message {
  border: solid 1px #cfcfcf;
  padding: 15px;
  margin: 10px;
  background-color: #fff;
  display: none;
}
form #WKFormModal .wrapper-text-and-preloader .timer_message a {
  color: #474747;
  border-bottom: 1px solid #474747;
}
form #WKFormModal .gdpr {
  margin-bottom: 15px;
}
form #WKFormModal .gdpr a {
  border-bottom: 1px solid #000;
  color: #474747;
}
form #WKFormModal .gdpr a:hover {
  border-bottom: 0px;
  color: #474747;
}
form #WKFormModal .gdpr .gdpr_text {
  display: none;
  padding: 15px;
  border: 1px solid #cfcfcf;
  overflow: auto;
  height: 150px;
  background: #f8f8f8;
}
form #WKFormModal .gdpr .gdpr_text h4 {
  margin-top: 0;
  font-size: 1rem;
}
form #WKFormModal .gdpr .gdpr_text p {
  font-size: 11px;
}
form #WKFormModal .gdpr .gdpr_inputs {
  padding-top: 25px;
  font-size: 14px;
}
form #WKFormModal .gdpr .gdpr_inputs input {
  height: 20px;
  width: 20px;
}
form #WKFormModal .gdpr .gdpr_laley_y_terceros {
  display: block;
  padding: 15px;
  border: 1px solid #cfcfcf;
  overflow: auto;
  height: 150px;
  background: #f8f8f8;
}
form #WKFormModal .gdpr .gdpr_laley_y_terceros h4 {
  margin-top: 0;
  font-size: 1rem;
}
form #WKFormModal .gdpr .gdpr_laley_y_terceros p {
  font-size: 11px;
}
form #WKFormModal .gdpr .gdpr_laley_y_terceros .gdpr_laley {
  margin-bottom: 30px;
}
form #WKFormModal .gdpr .gdpr_laley_y_terceros .gdpr_terceros_text > p > strong {
  font-size: 13px;
}
form #WKFormModal .gdpr #boton_politica_privacidad_con_terceros {
  display: inline-block;
}
form #WKFormModal .gdpr #boton_politica_privacidad_con_terceros p {
  font-size: 13px;
}
form #WKFormModal #WKFormSpinner {
  display: none;
}
form #WKFormModal #WKFormSpinner .wk-spin {
  font-size: 40px;
  color: #409bd2;
  margin: 0 auto;
  display: block;
}
form #WKFormModal #WKFormSpinner.spinner-on {
  display: block;
}
form #WKFormModal #WKFormError {
  border: 1px solid #cfcfcf;
  padding: 15px;
  margin-bottom: 15px;
  display: none;
}
form #WKFormModal #WKFormError p {
  color: red;
}
form #WKFormModal #WKForm_desconnection {
  border: 1px solid #cfcfcf;
  padding: 15px;
  margin-bottom: 15px;
  display: none;
}
form #WKFormModal #WKForm_desconnection p {
  color: red;
}

@media (max-width: 1200px) {
  section#wrapper_nuestros_autores .wrapper_formulario_autores {
    max-width: 90%;
  }
}
@media (max-width: 700px) {
  form#propuestaForm .df {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  form#propuestaForm .df .laley-input {
    margin-bottom: 15px;
    width: 100%;
  }
  section#wrapper_nuestros_autores .laley-div-double {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }
  section#wrapper_nuestros_autores .laley-file-input {
    width: 100%;
  }
}
footer {
  padding-top: 60px;
}
footer p::hover {
  transition: color 0.3s ease-in-out;
  color: hsl(50, 100%, 50%);
}
footer a {
  color: #3f403a;
  margin-left: 10px;
  margin-right: 10px;
}

#footer_nav li:not(:first-child):before {
  content: "|";
  padding: 0 7px 0 5px;
}
#footer_nav #footer-nav li:not(:first-child):before {
  content: "|";
  padding: 0 7px 0 5px;
}

#social_icons {
  padding-bottom: 10px;
  padding-top: 34px;
  text-align: center;
}
#social_icons .fk-icon {
  margin-right: 25px;
  color: #3f403a;
}
#social_icons .fk-icon:hover {
  transition: color 0.3s ease-in-out;
  color: hsl(50, 100%, 50%);
}

.footer_row > a {
  color: #3f403a;
}
.footer_row > a:hover {
  text-decoration-line: underline;
}

@media (max-width: 835px) {
  .footer_nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */