@charset "UTF-8";

/* ========== ResetCSS ========== */
*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
tr,
select,
input,
figure {
  /*appearance:inherit; -moz-appearance:inherit; -webkit-appearance:inherit;*/
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  text-decoration: none;
}

/* ========== FUENTE ========== */
@font-face {
  font-family: "WorkSans";
  font-style: normal;
  font-weight: 300;
  src: url("../aym_font/WorkSans-Light.ttf");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  src: url("../aym_font/Roboto-Black.ttf");
}

/* ========== ESTILOS GENERALES ========== */
* {
  box-sizing: border-box;
  font-family: WorkSans, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-weight: 300;
  margin: 0px;
  padding: 0px;
}
a {
  color: #911b21;
  display: inline-block;
  text-decoration: none;
}
body {
  color: #303030;
}
strong {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #303030;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
h2 {
  margin: 20px 0;
}
img {
  display: block;
  width: 100%;
}
main,
header,
footer {
  align-items: center;
  display: flex;
  flex-flow: column;
  width: 100%;
}
main > section,
header > section,
footer > section {
  max-width: 1400px;
  width: 90%;
}
p {
  text-align: justify;
}
p,
li {
  font-weight: 100;
  font-size: 1.2em;
}
ol li,
ul li {
  margin-left: 35px;
  padding-bottom: 10px;
}

.aym_back {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.aym_back a {
  background: #911b21;
  border: 2px solid transparent;
  border-radius: 0;
  color: #fff !important;
  display: inline-block;
  font-size: 1em;
  margin-left: 50px;
  padding: 10px;
  transition: ease all 300ms;
  text-align: center;
  width: auto;
}
.aym_back a:hover {
  background: #fff;
  border-color: #911b21 !important;
  color: #911b21 !important;
}

.aym_separator {
  background: #258ab2;
  height: 2px;
  margin: 20px 0;
  width: 100%;
}

button {
  -webkit-appearance: none;
}


/*ESTILOS INPUTS*/
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.7);
  display: block;
  font-size: 1em;
  padding: 10px 15px;
  width: 100%;
}
::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.center-flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*DATE PICKER*/
.ui-datepicker-title {
  display: flex !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #911b21 !important;
  background: #911b21 !important;
  font-weight: normal;
  color: #ffffff;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #e36b71 !important;
  background: #e36b71 !important;
  color: #fff !important;
}

/*404*/
.aym_404 {
  padding: 50px 0;
}
.aym_404 h2 {
  text-align: center;
}

/*====================== FORMULARIOS ====================*/
form {
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
form > div {
  padding-top: 15px;
}
form > div:first-child {
  padding-top: 0;
}
form .aym_two_column {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
}
form .aym_two_column.aym_grid_top {
  align-items: start !important;
}
form .aym_two_column.aym_grid_top_fund {
  align-items: start !important;
}
form .aym_three_column {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}
form .aym_four_column {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}
form .aym_two_column > div,
form .aym_three_column > div,
form .aym_four_column > div {
  padding: 0 !important;
}
form input,
form select {
  border: 1px solid #911b21 !important;
  box-sizing: border-box;
  margin-top: 10px;
  width: 100%;
  height: 50px;
}
form select {
  background: white url("/aym_image/aym_ico/aym_ico_arrow.png") no-repeat center
    right 0.6em / 1rem !important;
  padding-right: 1.6em;
}
form select:disabled {
  background: #e8e8e8 url("/aym_image/aym_ico/aym_ico_arrow.png") no-repeat
    center right 0.6em / 1rem;
}
form input[type="submit"] {
  -webkit-appearance: none;
  background-color: #911b21;
  border: 1px solid transparent !important;
  color: #fff;
  cursor: pointer;
  font-size: 1.2em;
  height: 50px;
  margin: 0;
  padding: 10px !important;
  transition: all 0.4s;
  text-align: center;
  width: 100%;
  border-radius: 10px;
}
form input[type="submit"]:hover {
  background: #fff;
  border: 1px solid #911b21 !important;
  color: #911b21;
}
form input[type="radio"] {
  -webkit-appearance: none;
  border: 1px solid #303030;
  border-radius: 50%;
  height: 30px;
  margin: 0 10px;
  width: 30px;
}
form input[type="radio"]:hover {
  background: #e5e5e5;
}
form input[type="radio"]:checked {
  background: url("/aym_image/aym_ico/aym_ico_radio_on.png") no-repeat center /
    115%;
}
form input[type="checkbox"] {
  -webkit-appearance: none;
  border: 1px solid #911b21;
  border-radius: 5px;
  height: 30px;
  margin: 0 10px;
  width: 30px;
}
form input[type="checkbox"]:checked {
  background: url("/aym_image/aym_ico/aym_ico_checkbox_on.png") no-repeat center /
    115%;
}
form textarea {
  border: 1px solid #911b21 !important;
  margin-top: 10px;
  height: 100px;
  resize: none;
}
form label {
  font-weight: bold;
  font-size: 1.2em;
}
form .aym_link {
  color: #00457b;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
}
form .aym_text_required {
  align-items: center;
  display: flex;
  font-size: 0.75em;
  justify-content: center;
  padding: 10px 0 !important;
  text-align: center;
}
form .aym_text_required.aym_text_left {
  justify-content: flex-start;
  text-align: left;
}
form .aym_submit {
  align-items: flex-end;
  display: flex;
  justify-content: center;
}
form .aym_center {
  display: flex;
  justify-content: center;
}
form input[type="file"] {
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0.1px;
  z-index: -1;
}
form label[for="aym_fil"] {
  background-color: #fff;
  border: 1px solid #911b21;
  border-left: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 40px !important;
  text-align: center;
  transition: all 0.3s;
  width: fit-content;
  border-radius: 0 10px 10px 0;
}
form label[for="pqr_ema_val"] {
  font-size: 0.75em;
}
form label[for="aym_fil"] img {
  width: 36px;
}
form label[for="aym_fil"]:hover {
  background-color: #f0b2b5;
  border-color: #911b21;
  color: #911b21;
}
form span.aym_fil {
  align-items: center;
  border: 1px solid #911b21 !important;
  display: inline-flex;
  font-size: 0.8em;
  padding: 10px 15px;
  height: 50px;
  width: 100%;
  background: white;
  border-radius: 10px 0 0 10px;
}
form .aym_file {
  align-items: center;
  display: flex;
}

.aym_wrap_contact {
  display: flex;
  flex-flow: row;
  width: 100%;
}
.aym_frm_contact {
  max-width: 1200px;
  width: 70%;
}
.aym_div_contact {
  max-width: 1200px;
  width: 70% !important;
}

.aym_radio_content {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: flex-start;
  margin-top: 10px;
}
.aym_radio_content span {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0 10px;
}
.aym_radio_content input[type="radio"] {
  height: 0;
  width: 0;
}

.aym_check_content {
  align-items: center;
  display: flex;
}
.aym_check_content input[type="checkbox"] {
  height: 0;
  width: 0;
}

.aym_wrap_radio {
  display: flex;
  flex-flow: row wrap;
}
.aym_wrap_radio > label {
  display: inline-block;
  width: 100%;
}
.aym_wrap_radio .aym_radio_block {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 0 10px;
}
.aym_wrap_checkbox {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
}
.aym_wrap_checkbox .aym_checkbox_block {
  margin-right: 15px;
  padding-top: 0 !important;
}
.aym_wrap_checkbox .aym_checkbox_block input[type="checkbox"] {
  margin: 0 !important;
}

/*.valid::placeholder {color: #911B21;}*/
.error {
  background-color: rgba(255, 255, 255, 0.3) !important;
  border-bottom: 3px solid !important;
  border-color: #911b21 !important;
}
#frm_enquiry_out .error {
  background: rgba(255, 255, 255, 1) !important;
  border-bottom: 3px solid !important;
  border-color: #911b21 !important;
}
.error::placeholder {
  color: #911b21;
  opacity: 1;
}

/* HEADER */
header {
  position: fixed;
  background-color: white;
  box-shadow: 0px 3px 6px #00000029;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
#aym_wrap_header {
  max-width: none;
  padding: 10px;
  width: 90%;
}
#aym_wrap_header > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 100px;
}
#aym_wrap_header > div figure {
  display: flex;
  height: 100%;
}
#aym_wrap_header > div figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#aym_wrap_header > div .aym_figure_uno {
  width: 10%;
}
#aym_wrap_header > div .aym_figure_dos {
  width: 4%;
}
#aym_wrap_header > div .aym_nav_bar {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
#aym_wrap_header > div .aym_nav_bar a {
  color: #7c0808;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  text-transform: uppercase;
  font-size: 1.2em;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
#aym_wrap_header > div .aym_nav_bar .down {
  transform: rotate(90deg);
  position: absolute;
  right: -5px;
  top: 4px;
  color: var(--aym_tone_2);
  width: 20px;
  height: 20px;
  font-weight: bold;
  z-index: 3;
  transition: transform 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#aym_wrap_header > div .aym_nav_bar > ul > li:hover .down {
  transform: rotate(360deg);
  transition: transform 1s;
}
#aym_wrap_header > div .aym_nav_bar .downrotate {
  transform: rotate(180deg);
  transition: transform 1s;
}
#aym_wrap_header > div .aym_nav_bar .downrotate i {
  color: var(--aym_tone_2);
}
#aym_wrap_header > div .aym_nav_bar .submenu {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
#aym_wrap_header > div .aym_nav_bar .submenu:hover ul {
  visibility: visible;
  height: 350px;
  left: 0;
  transition: all 0.5s;
}
#aym_wrap_header > div .aym_nav_bar .submenu > ul {
  position: absolute;
  display: flex;
  top: calc(100% + 10px);
  left: 0;
  border-radius: 0 0 20px 20px;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.5s;
  padding: 0;
  flex-flow: wrap;
  box-shadow: 0px 3px 6px #00000029;
  background: #911b21;
}
#aym_wrap_header > div .aym_nav_bar .submenu > ul > li {
  border-right: 0px;
  display: block;
  padding: 0 15px;
  margin: 0;
  width: 100%;
}
#aym_wrap_header > div .aym_nav_bar .submenu > ul > li a {
  color: white;
  font-size: 0.8em;
  text-transform: none;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_activate_menu {
  display: inline-flex;
  justify-content: space-between;
  min-width: 80px;
}
#aym_activate_menu img {
  max-width: 20px;
}

#aym_wrap_header_gov {
  padding: 7px 20px;
  background: #911b21;
  width: 100%;
  max-width: none;
  display: flex;
}
#aym_wrap_header_gov a img {
  width: 100px;
  height: auto;
}

/* MENU GRANDE */
#aym_show_menu {
  align-items: center;
  background-image: url("/aym_image/aym_back/aym_back_menu.jpg");
  flex-flow: column;
  height: 100%;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  background-repeat: no-repeat;
  background-size: cover;
}
#aym_show_menu.activate {
  display: flex !important;
}
#aym_show_menu .aym_mobile_icon {
  width: 100%;
  align-items: center;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
#aym_show_menu .aym_mobile_icon #aym_deactivate_menu {
  cursor: pointer;
  color: white;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 20px;
}
#aym_show_menu .aym_mobile_icon #aym_deactivate_menu span {
  display: flex;
  align-items: center;
}
#aym_show_menu .aym_mobile_icon #aym_deactivate_menu span img {
  width: 20px;
  height: auto;
  margin-left: 10px;
}
#aym_show_menu .aym_grid_form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1600px;
  padding: 20px;
  width: 100%;
}
#aym_show_menu .aym_grid_form h2 {
  color: white;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 2.5em;
  width: 100%;
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 5;
}
#aym_show_menu .aym_grid_form h2 strong {
  color: white;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: inherit;
}
#aym_show_menu .aym_grid_form a {
  padding: 20px;
}
#aym_show_menu .aym_grid_form a .aym_link_form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid white;
  flex-flow: wrap;
  transition: all 0.5s linear;
}
#aym_show_menu .aym_grid_form a .aym_link_form img {
  transition: all 0.5s linear;
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: brightness(100);
}
#aym_show_menu .aym_grid_form a .aym_link_form span {
  transition: all 0.5s linear;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: white;
  font-size: 1.2em;
  height: fit-content;
  text-align: center;
  padding-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  min-height: 70px;
}
#aym_show_menu .aym_grid_form a .aym_link_form span b {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_show_menu .aym_grid_form a .aym_link_form:hover {
  transition: all 0.5s linear;
  background: white;
}
#aym_show_menu .aym_grid_form a .aym_link_form:hover img {
  filter: none;
  transform: scale(1.2);
}
#aym_show_menu .aym_grid_form a .aym_link_form:hover span {
  transition: all 0.5s linear;
  color: #911b21;
}

/*MAIN*/
main {
  margin-top: 159px;
}

/* BANNERS */
#aym_wrap_banner {
  max-width: none;
  width: 100%;
}
#aym_wrap_banner a {
  max-width: none;
  width: 100%;
}
#aym_wrap_banner figure {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 350px;
  height: 50vh;
  position: relative;
  width: 100%;
}
#aym_wrap_banner figure > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#aym_wrap_banner figure div {
  width: 40%;
  height: 100%;
  margin: 0;
  display: table-column;
  border: 0;
  padding: 50px 20px;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0 100%);
  background: rgb(0 0 0 / 86%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#aym_wrap_banner figure div::before {
  /* position: absolute;
  right: 2%;
  top: 0;
  height: 50%;
  width: 50px;
  background: white;
  content: "";
  transform: skew(-10deg);
  z-index: 2; */
}
#aym_wrap_banner figure h1,
#aym_wrap_banner figure h2 {
  color: white;
  border: 0;
  font-size: 3em;
  width: 90%;
  margin-bottom: 0;
  text-align: center;
}
#aym_wrap_banner figure div p {
  color: white;
  width: 80%;
  padding-bottom: 10px;
  text-align: center;
}
#aym_wrap_banner figure div p * {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
}
#aym_wrap_banner figure div img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 10px;
}

#aym_wrap_banner_home {
  max-width: none;
  width: 100%;
  position: relative;
}
/*#aym_wrap_banner_home::before{position: absolute;right: 68.5%;bottom: 0;height: 40%;width: 50px;background: white;content: '';transform: skew(20deg);z-index: 2;}*/
#aym_wrap_banner_home .aym_wrap_nav {
  display: flex;
  justify-content: space-between;
  left: 1%;
  position: absolute;
  top: calc(50% - 25px);
  width: 98%;
}
#aym_wrap_banner_home .aym_wrap_nav > div {
  cursor: pointer;
  height: 50px;
  width: 50px;
}
#aym_wrap_banner_home .aym_wrap_nav .aym_prev {
  background: url("/aym_image/aym_ico/aym_ico_arrow_banner.png") no-repeat
    center / 100%;
  transform: rotate(180deg);
  z-index: 1;
}
#aym_wrap_banner_home .aym_wrap_nav .aym_next {
  background: url("/aym_image/aym_ico/aym_ico_arrow_banner.png") no-repeat
    center / 100%;
  z-index: 1;
}
#aym_wrap_banner_home #aym_wrap_banner figure {
  min-height: auto;
  height: 70vh;
}
#aym_wrap_banner_home #aym_wrap_banner figure h1,
#aym_wrap_banner_home #aym_wrap_banner figure h2 {
  display: none;
}
#aym_wrap_banner_home .aym_banner_content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  width: 80%;
  background: #000000d4 0% 0% no-repeat padding-box;
  padding: 20px 5% 20px 20px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 16% 100%);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}
#aym_wrap_banner_home .aym_banner_content figcaption {
  width: 68%;
}
#aym_wrap_banner_home .aym_banner_content figcaption h2 {
  text-align: center;
  color: white;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 4.5em;
  text-transform: uppercase;
  margin: 0 0 50px auto;
  width: fit-content;
}
#aym_wrap_banner_home .aym_banner_content figcaption p {
  color: white;
  font-size: 1.3em;
  width: 65%;
  margin: 0 0 0 auto;
  text-align: right;
  line-height: 27px;
}
#aym_wrap_banner_home .aym_banner_content figcaption p b {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_banner_home .aym_banner_content figure {
  width: 30%;
}
#aym_wrap_banner_home .aym_banner_content figure img {
  width: 100%;
  height: auto;
}

/*CONTENIDO Y ENLACES FORMULARIOS*/
#aym_wrap_home_content {
  max-width: 1600px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
#aym_wrap_home_content h1 {
  color: black;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 2.5em;
  width: 100%;
  text-align: center;
  margin: 50px 0 0;
}
#aym_wrap_home_content h1 strong {
  color: #7c0808;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: inherit;
}
#aym_wrap_home_content .aym_item {
  width: calc(25% - 60px);
  margin: 50px 30px;
  position: relative;
  box-shadow: 2px 3px 6px 2px #0000003d;
}
#aym_wrap_home_content .aym_item figure {
  display: flex;
  overflow: hidden;
  height: 395px;
}
#aym_wrap_home_content .aym_item figure img {
  width: 100%;
  height: auto;
  transition: all 0.6s linear;
}
#aym_wrap_home_content .aym_item figcaption {
  position: absolute;
  top: 20px;
  width: calc(100% - 40px);
  left: 20px;
  height: calc(100% - 40px);
  padding: 5px;
  display: flex;
  flex-flow: wrap;
  border: 1px solid white;
  margin: auto;
  transition: all 0.5s linear;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
#aym_wrap_home_content .aym_item figcaption span {
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: white;
  font-size: 1.5em;
  width: 100%;
  height: fit-content;
  text-align: center;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#aym_wrap_home_content .aym_item figcaption span b {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_home_content .aym_item figcaption img {
  width: 85px;
  height: 85px;
  transition: all 0.4s linear;
  margin: 20px auto;
  object-fit: contain;
}
#aym_wrap_home_content .aym_item figcaption p {
  font-size: 0.9em;
  text-align: center;
  color: white;
  font-weight: normal;
}
#aym_wrap_home_content .aym_item:hover figure img {
  transform: scale(1.2);
}
#aym_wrap_home_content .aym_item:hover figcaption {
  border-right-color: white;
  border-left-color: white;
  border-bottom-color: white;
  transition: all 0.5s linear;
}
#aym_wrap_home_content .aym_item:hover figcaption::before {
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 30%;
  background: #3d0403;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
}
#aym_wrap_home_content .aym_item:hover figcaption img {
  transform: scale(1.2);
}

/*CONSULTAR SOLICITUD*/
#aym_wrap_consult {
  max-width: none;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

/*FORMULARIO*/
#aym_wrap_consult .aym_content_frm {
  width: 60%;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: #7c0808;
  padding: 100px 0 50px;
}
#aym_wrap_consult .aym_content_frm h2 {
  color: #fff;
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  margin: 0 0 50px;
}
#aym_wrap_consult .aym_content_frm form {
  padding: 0;
  width: 60%;
  margin: auto;
}
#aym_wrap_consult .aym_content_frm form input {
  border: 0 !important;
  border-radius: 28px;
  margin: 0;
}
#aym_wrap_consult .aym_content_frm form fieldset div {
  display: flex;
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
}
#aym_wrap_consult .aym_content_frm form fieldset div.aym_captcha_out {
  border-radius: 28px;
  overflow: hidden;
}
#aym_wrap_consult
  .aym_content_frm
  form
  fieldset
  div.aym_captcha_out
  .aym_img_codigo {
  width: 100px;
  margin: 0;
}
#aym_wrap_consult
  .aym_content_frm
  form
  fieldset
  div.aym_captcha_out
  .aym_img_codigo
  a {
  padding: 0;
}
#aym_wrap_consult
  .aym_content_frm
  form
  fieldset
  div.aym_captcha_out
  .aym_img_codigo
  a
  img {
  height: 100%;
}
#aym_wrap_consult
  .aym_content_frm
  form
  fieldset
  div.aym_captcha_out
  #captchacode {
  border-radius: 0;
  width: calc(100% - 100px);
}
#aym_wrap_consult .aym_content_frm form button {
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #7c0808;
  display: flex;
  align-items: center;
  background: white;
  font-size: 1.2em;
  padding: 7px 20px;
  border-radius: 28px;
  cursor: pointer;
}
#aym_wrap_consult .aym_content_frm form button:hover {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_consult .aym_content_frm form button img {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
#aym_wrap_consult .aym_content_frm .aym_frm_submit a {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-right: 20px;
  font-style: italic;
}

/*CHAT*/
#aym_wrap_consult .aym_content_chat {
  width: 50%;
  margin-left: -10%;
  position: relative;
  z-index: -1;
}
#aym_wrap_consult .aym_content_chat::before {
  content: "";
  background: #3e0d0f 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  height: 260px;
  width: 100%;
  position: absolute;
  top: 110px;
  bottom: 0;
  margin: auto;
}
#aym_wrap_consult .aym_content_chat figure {
  width: 100%;
}
#aym_wrap_consult .aym_content_chat figure img {
  width: 100%;
  height: 507px;
  object-fit: cover;
}
#aym_wrap_consult .aym_content_chat figcaption {
  position: absolute;
  top: 0;
  width: 70%;
  right: 5%;
  bottom: 0;
  margin: auto;
  height: fit-content;
  display: flex;
  flex-flow: wrap;
}
#aym_wrap_consult .aym_content_chat figcaption img {
  width: 150px;
  margin: auto;
}
#aym_wrap_consult .aym_content_chat figcaption span {
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.8em;
}
#aym_wrap_consult .aym_content_chat figcaption span b {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_consult .aym_content_chat figcaption span.aym_title {
  text-transform: uppercase;
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* MAPA */
.aym_long_text {
  border: 0 !important;
  color: #911b21;
  font-size: 2.5em !important;
  max-width: 850px;
  margin-right: 80px;
  text-align: center;
  text-transform: uppercase;
}
.mapcontainer {
  width: 70%;
  margin: auto;
  position: relative;
}
.mapcontainer svg {
  width: auto;
}
.mapcontainer .map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}
.mapcontainer .map text {
  cursor: pointer;
}
.mapcontainer .zoomButton {
  top: 0;
  position: absolute;
  height: 20px;
  width: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.mapcontainer .zoomButton.zoomOut {
  border: 1px solid;
  right: 40px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.mapcontainer .zoomButton.zoomIn {
  border-top: 1px solid;
  border-bottom: 1px solid;
  right: 20px;
}
.mapcontainer .zoomButton.zoomReset {
  right: 0;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid;
}
.mapcontainer .aym_circle {
  background: radial-gradient(
    ellipse at center,
    #980000 0%,
    #980000 40%,
    #a10000 40%,
    #a10000 40%,
    #a10000 55%,
    #aa0000eb 55%,
    #aa0000 100%
  );
  border-radius: 50%;
  display: block;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005b98', endColorstr='#0073aa',GradientType=1 );
  height: auto;
  left: calc(50% - 42%);
  padding-top: 90%;
  position: absolute;
  top: calc(50% - 43%);
  width: 90%;
}
.mapTooltip {
  left: 43%;
  top: 50%;
  background: white;
  position: absolute;
  padding: 5px;
  border-radius: 10px;
}

/*FOOTER*/
footer {
  margin-top: 0;
}

/*MAPA*/
#aym_wrap_map {
  max-width: none;
  width: 100%;
}
#aym_wrap_map figure {
  width: 100%;
}
#aym_wrap_map figure img {
  height: 500px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/*LOGOS GOBIERNO Y MINDEFENSA*/
#aym_wrap_logos {
  max-width: none;
  width: 100%;
  background-color: white;
}
#aym_wrap_logos div {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
#aym_wrap_logos div figure {
  margin: 0 20px;
  max-width: 300px;
}

#aym_wrap_footer {
  padding: 70px 0;
}
#aym_wrap_footer .aym_logo_footer img {
  max-width: 350px;
}
#aym_wrap_footer > div {
  align-items: center;
  color: #7a7a7a;
  display: flex;
  height: auto;
  justify-content: space-around;
  width: 100%;
}
#aym_wrap_footer > div .aym_contact_info {
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-around;
  padding: 0 10px;
}
#aym_wrap_footer > div .aym_contact_info.border {
  border-left: #911b21 solid 3px;
  padding: 0 3%;
  border-right: #911b21 solid 3px;
}
#aym_wrap_footer > div .aym_contact_info div {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
#aym_wrap_footer > div .aym_contact_info div span {
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 1.2em;
  font-weight: lighter;
  color: #7c0808;
  margin-bottom: 10px;
}
#aym_wrap_footer > div .aym_contact_info div p {
  margin-bottom: 5px;
}

#aym_wrap_gov {
  background-color: #911b21;
  width: 100%;
  max-width: none;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 100px;
}
#aym_wrap_gov .aym_logos {
  display: flex;
  align-items: center;
}
#aym_wrap_gov a:first-child {
  border-right: 1px solid white;
  margin-right: 10px;
  padding-right: 10px;
}
#aym_wrap_gov a:first-child img {
  width: 40px;
  height: auto;
}
#aym_wrap_gov a:last-child img {
  width: auto;
  height: 37px;
}
#aym_wrap_gov .aym_return_top {
  cursor: pointer;
}
#aym_wrap_gov .aym_return_top img {
  width: 30px;
  height: auto;
}

/*POLITICAS DE PRIVACIDAD*/
#aym_wrap_politics {
  background: #911b21;
  display: flex;
  justify-content: center;
  max-width: none;
  padding: 15px 0;
  width: 100%;
}
#aym_wrap_politics > div {
  align-items: center;
  color: #fff;
  display: flex;
  flex-flow: row;
  font-size: 0.8em;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
}
#aym_wrap_politics > div a {
  color: #fff;
  text-align: center;
}

/*INTERNAS*/
#aym_wrap_main {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 0.7fr 2.3fr;
  padding: 60px 0;
}
#aym_wrap_main.aym_full_template {
  grid-template-columns: 1fr !important;
}

/*MENU DE FORMULARIOS*/
#aym_wrap_menu {
  margin-top: 0;
  position: relative;
  order: 1;
}
#aym_wrap_menu ul {
  background: #fff;
  display: flex;
  list-style: none;
  flex-flow: column;
  width: 100%;
  box-shadow: 0px 3px 6px #0000007a;
  border-radius: 32px 34px 30px 29px;
  overflow: hidden;
}
#aym_wrap_menu ul li {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 5px 0;
  width: 95%;
  border-bottom: 1px solid gray;
}
#aym_wrap_menu ul li:hover {
  color: #911b21 !important;
}
#aym_wrap_menu ul li.active {
  color: #911b21 !important;
}
#aym_wrap_menu ul li.aym_head_menu {
  background: #911b21;
  border-radius: 15px 15px 0 0;
  color: #fff !important;
  font-size: 1.5em;
  font-weight: bold;
  justify-content: center;
  padding: 15px;
  width: 100%;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_menu ul li a {
  color: black;
  font-size: 0.8em;
  margin: 0;
  padding: 7px 10px;
  text-align: left;
  width: 100%;
  text-transform: uppercase;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  transition: all 0.5s linear;
  display: flex;
  align-items: center;
  border-left: 5px solid #911b21;
}
#aym_wrap_menu ul li a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}
#aym_wrap_menu ul li:last-child {
  border-bottom: 0;
  margin-bottom: 10px;
}
#aym_wrap_menu ul li:hover a,
#aym_wrap_menu ul li.active a {
  background: #911b21;
  color: white;
}
#aym_wrap_menu ul li.active a img,
#aym_wrap_menu ul li:hover a img {
  filter: brightness(100);
}

/*FORMULARIOS*/
#aym_wrap_form {
  max-width: 1200px;
  padding: 0;
  order: 2;
}
#aym_wrap_form form h2 {
  color: #911b21;
  font-size: 2em;
  margin: 0 0 20px;
  padding: 0;
  text-transform: uppercase;
}
#aym_wrap_form form fieldset {
  background: #f3f3f3;
  padding: 20px;
}
#aym_wrap_form form fieldset div {
  padding-top: 15px;
}
#aym_wrap_form form fieldset div:first-child,
#aym_wrap_form form fieldset div.aym_radio_block {
  padding-top: 0;
}
#aym_wrap_form form fieldset input[type="text"],
#aym_wrap_form form fieldset input[type="email"],
#aym_wrap_form form fieldset input[type="tel"],
#aym_wrap_form form fieldset select,
#aym_wrap_form form fieldset textarea {
  background: white;
  border-radius: 10px;
}
#aym_wrap_form form fieldset label {
  font-size: 0.9em;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: white;
  font-weight: normal;
  background: #911b21;
  width: 100%;
  display: flex;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#aym_wrap_form form fieldset label.aym_radio {
  color: black;
  padding: 0;
  background: transparent;
  width: auto;
}
#aym_wrap_form form fieldset .aym_wrap_checkbox label {
  font-size: 0.9em;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: black;
  font-weight: normal;
  background: transparent;
  width: auto;
  display: block;
  padding: 5px;
  text-transform: none;
  letter-spacing: inherit;
}
#aym_wrap_form form fieldset label[for="pqr_ace_ter"] {
  font-size: 0.9em;
  font-family: "WorkSans", Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: black;
  font-weight: normal;
  background: transparent;
  width: auto;
  display: block;
  padding: 5px;
  text-transform: none;
  letter-spacing: inherit;
}
#aym_wrap_form form fieldset .aym_file label {
  width: auto;
}
#aym_wrap_form form fieldset .aym_file label img {
  filter: brightness(100);
}
.aym_two_column div .aym_wrap_rep:nth-child(1) {
  padding-top: 0 !important;
}
.aym_two_column div .aym_wrap_con:nth-child(1) {
  padding-top: 0 !important;
}

.aym_overflow {
  overflow: auto;
}
.aym_relative {
  position: relative;
}
.aym_rec_rad {
  position: absolute;
  right: 0;
}

.wrap-check{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/*CAPTCHA*/
.aym_captcha {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aym_captcha > div {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
.aym_captcha > div .aym_img_codigo {
  display: flex;
  align-items: flex-end;
  margin: 5px;
}
.aym_captcha > div .aym_img_codigo #captcha {
  width: auto;
}
.aym_captcha > div .aym_img_codigo #aym_renew_capcha {
  background: url("/aym_image/aym_ico/aym_renew_captcha.png") no-repeat center /
    100%;
  height: 40px;
  padding: 0;
  width: 40px;
}

/*CONFIRMACION*/
.aym_wrap_confirm {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
}
.aym_wrap_confirm div {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.aym_wrap_confirm div h2 {
  border-bottom: 5px solid #911b21;
  font-size: 3em;
}
.aym_wrap_confirm div p {
  padding-top: 20px;
}

/* VER ESTATUS */

.aym_wrap_view {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
}
.aym_wrap_view form {
  box-shadow: unset;
}
.aym_wrap_view h2 {
  border-bottom: 2px solid #911b21;
}
.aym_wrap_view .aym_view_info > div {
  padding-top: 15px;
}
.aym_wrap_view .aym_view_info > div:nth-child(1) {
  padding-top: 0;
}
.aym_wrap_view .aym_view_info > div span {
  display: inline-block;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  padding-right: 15px;
  width: 250px;
}

.aym_wrap_view .aym_view_info.aym_clarification_div {
  background: rgba(145, 27, 33, 0.2);
  margin-top: 15px;
  padding: 20px 0;
}
.aym_wrap_view .aym_view_info.aym_clarification_div a {
  font-weight: bold;
}

/*HISTORIAL*/
.aym_point {
  cursor: pointer;
}

.aym_grid_history {
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}
.aym_grid_old_history {
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}
.aym_grid_history .aym_log_title {
  align-items: center;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  padding: 10px 5px;
  text-align: center;
}
.aym_grid_old_history .aym_log_title {
  align-items: center;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  padding: 10px 5px;
  text-align: center;
}
.aym_grid_history div {
  align-items: center;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
  text-align: center;
}
.aym_grid_old_history div {
  align-items: center;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
  text-align: center;
}

.aym_text_center  {
  text-align: center;
}
.aym_text_left  {
  justify-content: flex-start !important;
}
.aym_show_detail,
.aym_show_file {
  cursor: pointer;
  display: inline-block;
  height: 30px;
  width: 30px;
}
.aym_show_detail {
  background: url("/aym_image/aym_ico/aym_ico_detail.png") no-repeat center /
    100%;
}
.aym_show_file {
  background: url("/aym_image/aym_ico/aym_ico_file.png") no-repeat center / 100%;
}

.aym_wrap_view_log {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  padding: 0 15px 15px 15px;
  width: 100%;
}
.aym_wrap_view_log h2:nth-child(1) {
  border-bottom: 2px solid #911b21;
  width: 100%;
}
.aym_wrap_view_log div {
  text-align: left;
}
.aym_wrap_view_log p {
  display: inline-block;
}

/*FILE*/
/*GRID BRUTAL*/
.aym_wrap_file_grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 200px);
  padding: 15px 0;
}
.aym_wrap_file_grid .aym_title {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}
.aym_wrap_file_grid .aym_flex_center {
  align-items: center;
  display: flex;
  justify-content: center;
}
.aym_file_grid {
  border: 1px solid #e9e9e9;
  display: grid;
  font-size: 0.9em;
  grid-gap: 15px;
  grid-template-areas: "ico title title" "ico file file";
  grid-template-columns: 0.5fr 1.5fr;
  padding: 10px;
}
.aym_file_grid:hover {
  background-color: #eee;
}
.aym_file_grid:hover figure {
  border: 1px dashed #fff;
}
.aym_file_grid figure {
  align-items: center;
  border: 1px dashed #e9e9e9;
  display: flex;
  justify-content: center;
  grid-area: ico;
}
.aym_file_grid .aym_tit {
  font-size: 0.8em;
  grid-area: title;
}
.aym_file_grid .aym_siz {
  color: #c3c3c3;
  font-size: 0.8em;
  grid-area: file;
}

/* ACLARACIÓN */

#frm_clarification {
  box-shadow: unset !important;
  padding: 0 !important;
}
#frm_clarification h2 {
  font-size: 1.5em !important;
  color: #303030 !important;
}

/*SONDEO*/

.aym_poll_question > label {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}

/* VENTANA MODAL CON DETALLE DE MAPA*/
#aym_wrap_mapa_detail {
  width: 100%;
}
#aym_wrap_mapa_detail h2 {
  color: #911b21;
  width: 100%;
  text-align: left;
  font-size: 4em;
  text-transform: uppercase;
}
#aym_wrap_mapa_detail p {
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #911b21;
  margin: 10px 0;
}
#aym_wrap_mapa_detail table {
  width: 100% !important;
  border-collapse: collapse;
  margin-top: 10px;
}
#aym_wrap_mapa_detail table tr:nth-child(odd) {
  background-color: #e1e1e1;
}
#aym_wrap_mapa_detail table tr th {
  font-size: 1.2em;
  padding: 10px 5px;
  text-align: left;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
}
#aym_wrap_mapa_detail table tr td {
  font-size: 1.1em;
  padding: 10px 5px;
  border-right: 1px solid black;
}
#aym_wrap_mapa_detail table tr th,
#aym_wrap_mapa_detail table tr td {
  border-top: 1px solid black;
  border-left: 1px solid black;
}
#aym_wrap_mapa_detail table tr:last-child th,
#aym_wrap_mapa_detail table tr:last-child td {
  border-bottom: 1px solid black;
}

.aym_wrap_video h3 {
  margin: 10px 0;
  text-align: center;
  font-size: 1.3em;
  color: #911b21;
}
.aym_wrap_video .aym_video_wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.aym_wrap_video .aym_video_wrapper video {
  /* width: 100%; */
  height: auto;
}
.owl-prev, .owl-next {
  background-color: #fff!important;
  color: #911b21!important;
  font-size: 55px!important;
  padding: 0px;
  /* border-radius: 50%!important; */
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  cursor: pointer;
}
/* Ocultar bullets en pantallas grandes */
@media (min-width: 1250px) {
  .owl-dots {
      display: none;
  }
}

@media (max-width:1250px){
  .owl-prev, .owl-next{
    display: none!important;
  }
}
.owl-prev {
  left: -30px;
}

.owl-next {
  right: -30px;
}

main.aym_internal_turn {
  margin-top: 0;
}
main.aym_internal_turn section article {
  padding: 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
}
main.aym_internal_turn section article .aym_logo {
  width: 50%;
  padding: 30px;
}
main.aym_internal_turn section article .aym_logo figure {
  width: 80%;
  margin: auto 0;
}
main.aym_internal_turn section article .aym_table {
  width: 50%;
  padding: 30px;
}
main.aym_internal_turn section article .aym_table table {
  width: 100%;
  border-collapse: collapse;
}
main.aym_internal_turn section article .aym_table table thead tr th {
  font-size: 4.5em;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #7c0808;
  padding-bottom: 10px;
}
main.aym_internal_turn section article .aym_table table tbody tr td {
  font-size: 4em;
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  color: #7c0808;
  text-align: center;
  padding: 10px;
  border: 1px solid;
}
main.aym_internal_turn
  section
  article
  .aym_table
  table
  tbody
  tr:first-child
  td {
  background: #7c0808;
  color: #ffffff;
}

/* INTERNA DE MAPAOFICINAS */
#aym_wrap_form.aym_internal_map {
  padding: 20px;
  max-width: none;
  width: 80%;
  margin: auto;
}
#aym_wrap_form.aym_internal_map img {
  margin: 0 auto 40px;
}
#aym_wrap_form.aym_internal_map .table {
  margin-bottom: 40px;
  width: 100%;
  overflow: auto;
}
#aym_wrap_form.aym_internal_map .table table {
  border-collapse: collapse;
  width: 100%;
}
#aym_wrap_form.aym_internal_map .table table tr td {
  padding: 10px;
  border: 1px solid rgb(115, 115, 115);
}

/**************/

/* MEDIA SCREEN / RESPONSIVE */
@media screen and (max-width: 1590px) {
  #aym_wrap_banner_home .aym_banner_content figcaption h2 {
    font-size: 4em;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    font-size: 1em;
  }

  #aym_wrap_banner figure div {
    width: 60%;
  }
  #aym_wrap_banner figure div p {
    color: white;
    width: 90%;
  }
}

@media screen and (max-width: 1440px) {
  #aym_wrap_home_content h1 {
    margin: 30px 0;
  }
  #aym_wrap_home_content .aym_item {
    width: calc(33% - 40px);
    margin: 20px;
  }
  #aym_wrap_home_content .aym_item figure {
    height: 374px;
  }
  #aym_wrap_home_content .aym_item figcaption span {
    font-size: 1.3em;
  }
  #aym_wrap_home_content .aym_item figcaption p {
    font-size: 0.8em;
  }

  #aym_wrap_consult .aym_content_frm {
    width: 55%;
    padding: 50px 0;
  }
  #aym_wrap_consult .aym_content_frm form {
    width: 70%;
  }
  #aym_wrap_consult .aym_content_chat {
    width: 55%;
  }
  #aym_wrap_consult .aym_content_chat::before {
    height: 190px;
  }
  #aym_wrap_consult .aym_content_chat figure img {
    height: 457px;
  }
  #aym_wrap_consult .aym_content_chat figcaption img {
    width: 120px;
    margin: 0 auto 10px;
  }
  #aym_wrap_consult .aym_content_chat figcaption span.aym_title {
    font-size: 2em;
  }
  #aym_wrap_consult .aym_content_chat figcaption span {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1250px) {
  main > section,
  header > section,
  footer > section {
    width: 100%;
  }

  #aym_wrap_banner_home #aym_wrap_banner figure {
    height: 50vh;
  }

  #aym_wrap_banner figure div::before {
    width: 37px;
    transform: skew(-9deg);
  }
  #aym_wrap_banner figure h1,
  #aym_wrap_banner figure h2 {
    font-size: 2.5em;
    width: 95%;
  }

  #aym_wrap_banner_home .aym_banner_content figcaption h2 {
    font-size: 3em;
    margin: 0 0 20px auto;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    line-height: initial;
  }

  #aym_wrap_home_content .aym_item figure {
    height: 318px;
  }
  #aym_wrap_home_content .aym_item figcaption img {
    width: 70px;
    height: 70px;
    margin: 10px auto;
  }

  #aym_wrap_footer {
    padding: 30px 0;
  }
  #aym_wrap_footer > div {
    justify-content: center;
  }
  #aym_wrap_footer .aym_logo_footer img {
    max-width: none;
    width: 80%;
    margin: auto;
  }
  #aym_wrap_footer > div .aym_contact_info div p {
    font-size: 1em;
  }
  #aym_wrap_footer > div .aym_contact_info {
    padding: 0 10px 0 3%;
  }

  #aym_show_menu .aym_grid_form a .aym_link_form {
    padding: 20px 10px;
  }
  #aym_show_menu .aym_grid_form a .aym_link_form img {
    width: 65px;
    height: 65px;
  }

  main.aym_internal_turn section article .aym_logo {
    width: 40%;
  }
  main.aym_internal_turn section article .aym_logo figure {
    width: 100%;
  }
  main.aym_internal_turn section article .aym_table {
    width: 60%;
  }
}

@media screen and (max-width: 1100px) {
  form label {
    font-size: 1em;
  }

  /*FORMULARIOS*/
  .aym_grid_form {
    grid-template-columns: repeat(2, 1fr);
    margin: 35px 0;
  }

  #aym_wrap_menu ul li a {
    font-size: 0.8em;
    padding: 15px 10px;
  }

  #aym_wrap_header {
    width: 100%;
  }
  #aym_wrap_header > div {
    height: auto;
  }
  #aym_wrap_header > div .aym_figure_uno,
  #aym_wrap_header > div .aym_figure_dos {
    width: auto;
    display: flex;
    height: fit-content;
  }
  #aym_wrap_header > div .aym_figure_uno a {
    display: flex;
    height: fit-content;
  }
  #aym_wrap_header > div .aym_figure_uno img {
    width: auto;
    height: 80px;
  }
  #aym_wrap_header > div .aym_figure_dos img {
    width: auto;
    height: 60px;
  }
  #aym_wrap_header > div .aym_nav_bar {
    height: auto;
  }
  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 1em;
  }
  #aym_wrap_header > div .aym_nav_bar .submenu > ul {
    top: calc(100% + 40px);
    display: block;
  }
  #aym_wrap_header > div .aym_nav_bar .submenu:hover ul {
    height: auto;
  }
  #aym_wrap_header > div .aym_nav_bar .submenu > ul > li {
    padding: 5px;
    display: flex;
    height: fit-content;
  }
  #aym_wrap_header > div .aym_nav_bar .submenu > ul > li a {
    font-size: 0.7em;
    height: fit-content;
  }

  #aym_wrap_banner figure div img {
    width: 60px;
    height: 60px;
  }
  #aym_wrap_banner figure div p {
    font-size: 1em;
  }

  #aym_show_menu .aym_grid_form {
    grid-template-columns: repeat(3, 1fr);
  }
  #aym_show_menu .aym_grid_form h2 {
    grid-column-end: 4;
  }

  main {
    margin-top: 139px;
  }

  #aym_wrap_banner figure {
    height: 350px;
  }

  #aym_wrap_banner_home #aym_wrap_banner figure {
    height: auto;
  }
  #aym_wrap_banner_home::before {
    display: none;
  }
  #aym_wrap_banner_home .aym_banner_content {
    width: 100%;
    clip-path: none;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption h2 {
    font-size: 2em;
    margin: 20px 0 20px auto;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    width: 100%;
    margin: 0;
    line-height: initial;
  }

  #aym_wrap_home_content h1 {
    margin: 10px 0;
    font-size: 2em;
  }
  #aym_wrap_home_content .aym_item {
    width: calc(33% - 20px);
    margin: 10px;
  }
  #aym_wrap_home_content .aym_item figcaption span {
    font-size: 1em;
    padding-top: 10px;
  }
  #aym_wrap_home_content .aym_item figcaption img {
    width: 50px;
    height: 50px;
  }

  #aym_wrap_consult .aym_content_frm h2 {
    font-size: 1.5em;
    margin: 0 0 20px;
  }
  #aym_wrap_consult .aym_content_frm form {
    width: 75%;
  }
  #aym_wrap_consult .aym_content_frm form fieldset div {
    margin-bottom: 10px;
  }
  #aym_wrap_consult .aym_content_frm form input {
    padding: 5px 15px;
    height: 40px;
  }
  #aym_wrap_consult .aym_content_frm .aym_frm_submit a {
    font-size: 0.8em;
  }
  #aym_wrap_consult .aym_content_frm form button {
    font-size: 1em;
    padding: 5px 20px;
  }
  #aym_wrap_consult .aym_content_chat::before {
    height: 150px;
    top: 80px;
  }
  #aym_wrap_consult .aym_content_chat figure img {
    height: 343px;
  }
  #aym_wrap_consult .aym_content_chat figcaption {
    width: 80%;
    right: 2%;
  }
  #aym_wrap_consult .aym_content_chat figcaption img {
    width: 80px;
  }
  #aym_wrap_consult .aym_content_chat figcaption span {
    font-size: 1.2em;
  }
  #aym_wrap_consult .aym_content_chat figcaption span.aym_title {
    font-size: 1.5em;
  }

  #aym_wrap_map figure img {
    height: 300px;
  }

  #aym_wrap_logos div {
    padding: 30px 20px;
    width: 100%;
  }
  #aym_wrap_logos div figure {
    max-width: 220px;
  }
  #aym_wrap_logos div figure:last-child {
    max-width: 165px;
  }

  #aym_wrap_footer {
    padding: 30px 20px;
  }
  #aym_wrap_footer > div {
    flex-flow: wrap;
    justify-content: space-between;
  }
  #aym_wrap_footer .aym_logo_footer {
    width: 25%;
  }
  #aym_wrap_footer .aym_logo_footer img {
    width: 100%;
  }
  #aym_wrap_footer > div .aym_contact_info {
    width: 35%;
    padding: 10px;
  }
  #aym_wrap_footer > div .aym_contact_info div span {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
  #aym_wrap_footer > div .aym_contact_info div p {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 990px) {
  #aym_wrap_main {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  #aym_wrap_menu {
    display: none;
  }

  form .aym_four_column {
    grid-template-columns: repeat(2, 1fr);
  }

  #aym_menu_button {
    background: #e8e8e8;
    border-bottom: 3px solid #911b21;
    cursor: pointer;
    display: none;
    font-size: 1em;
    padding: 15px 10px;
  }
  #aym_menu_button:hover {
    background: #911b21;
    color: #fff !important;
  }
  #aym_menu_button.active {
    background: #911b21;
    color: #fff !important;
  }
  /*MENU FORMULARIOS*/
  #aym_wrap_menu ul {
    display: none;
    flex-flow: column;
    max-width: 200px;
    position: absolute;
    top: 54px;
    left: 0;
    background: #e8e8e8;
    z-index: 1;
  }
  #aym_wrap_menu ul li:nth-child(1) {
    display: none;
  }

  #aym_wrap_home_content .aym_item {
    width: calc(45% - 40px);
    margin: 20px auto;
  }
  #aym_wrap_home_content .aym_item figcaption img {
    width: 70px;
    height: 70px;
  }
  #aym_wrap_home_content .aym_item figcaption p {
    width: 100%;
    font-size: 0.8em;
  }

  #aym_wrap_banner figure div {
    clip-path: none;
    width: 100%;
    background: rgb(0 0 0 / 73%);
  }
  #aym_wrap_banner figure div::before {
    display: none;
  }
  #aym_wrap_banner figure h1,
  #aym_wrap_banner figure h2 {
    width: 100%;
  }
  #aym_wrap_banner figure div p {
    width: 100%;
  }

  form {
    padding: 0;
  }

  main.aym_internal_turn section article .aym_table {
    width: 100%;
  }
  main.aym_internal_turn section article .aym_logo {
    width: 30%;
  }

  #aym_wrap_form.aym_internal_map {
    width: 100%;
  }
}

@media screen and (min-width: 958px) {
  #aym_menu_button {
    display: none;
  }
  #aym_wrap_menu ul {
    display: flex !important;
  }
}

@media screen and (max-width: 949px) {
  #aym_wrap_menu {
    margin-top: 30px;
  }
  #aym_wrap_main {
    padding: 20px;
  }

  #aym_wrap_footer .aym_logo_footer {
    width: 100%;
    border-bottom: 3px solid #7c0808;
    margin-bottom: 10px;
  }
  #aym_wrap_footer .aym_logo_footer img {
    width: 45%;
  }
  #aym_wrap_footer > div {
    flex-flow: column;
    height: auto;
  }
  #aym_wrap_footer > div figure {
    padding-bottom: 20px;
  }
  #aym_wrap_footer > div .aym_contact_info.border {
    border-left: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 3px solid #7c0808;
    margin-bottom: 10px;
  }
  #aym_wrap_footer > div .aym_contact_info {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  #aym_wrap_footer > div .aym_contact_info div {
    padding: 5px 0;
  }
  #aym_wrap_footer > div .aym_contact_info div p {
    font-size: 1em;
    text-align: center;
  }

  .aym_border_header {
    height: 55px;
  }
  .aym_border_header div {
    border-right: 55px solid #911b21;
    border-top: 55px solid #303030;
    height: 55px;
    width: 15%;
  }

  #aym_wrap_banner figure div p {
    width: 100%;
  }
}

@media screen and (max-width: 899px) {
  .aym_grid_form {
    width: 90%;
    margin-bottom: 0 !important;
  }
  /*.aym_grid_form a:hover .aym_link_form {opacity: 0; visibility: hidden; z-index: -1;}
    .aym_grid_form a:hover .aym_link_form.text {opacity: 1; visibility: visible; z-index: 1;}*/

  /*GENERAL*/
  p,
  li {
    font-size: 1em;
  }

  /* MAIN */
  #aym_wrap_banner figure h1,
  #aym_wrap_banner figure h2 {
    font-size: 2em;
  }

  #aym_wrap_home_content > h2 {
    font-size: 2em;
  }

  /* CONSULTAR */
  #aym_wrap_consult {
    flex-flow: column;
  }
  #aym_wrap_consult .aym_content_frm h2 {
    font-size: 1.5em;
  }

  /*FOOTER*/
  #aym_wrap_politics div a {
    font-size: 1em;
  }

  .aym_wrap_video .aym_video_wrapper video {
    width: 100%;
  }
}

@media screen and (max-width: 890px) {
  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 0.9em;
  }

  #aym_wrap_consult .aym_content_frm {
    width: 100%;
    padding: 50px 0;
    clip-path: none;
  }
  #aym_wrap_consult .aym_content_frm form {
    width: 60%;
  }
  #aym_wrap_consult .aym_content_chat {
    width: 100%;
    margin: 0;
  }
  #aym_wrap_consult .aym_content_chat::before {
    height: 60%;
    top: 0;
  }
  #aym_wrap_consult .aym_content_chat figcaption {
    width: 100%;
    right: 0;
  }
  #aym_wrap_consult .aym_content_chat figcaption img {
    width: 120px;
    margin-top: -50px;
  }

  #aym_show_menu .aym_grid_form a {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  #aym_wrap_banner figure {
    height: 250px;
    min-height: auto;
  }
  #aym_wrap_banner figure div {
    border: 0;
    padding: 20px;
  }
  #aym_wrap_banner figure div::before {
    display: none;
  }

  #aym_wrap_banner_home .aym_banner_content {
    padding: 20px;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption h2 {
    font-size: 1.5em;
    margin: 0 auto 20px;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    font-size: 0.9em;
    text-align: left;
  }

  form .aym_two_column {
    grid-template-columns: 1fr;
  }
  form .aym_four_column {
    grid-template-columns: 1fr;
  }

  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 0.8em;
  }

  #aym_wrap_home_content h1 {
    font-size: 1.6em;
  }
  #aym_wrap_home_content .aym_item {
    width: calc(50% - 20px);
    margin: 10px auto;
  }

  #aym_wrap_politics {
    padding: 10px 20px;
  }
  #aym_wrap_politics > div {
    width: 100%;
  }
  #aym_wrap_politics div a {
    font-size: 0.85em;
  }

  #aym_show_menu .aym_grid_form a .aym_link_form span {
    font-size: 1em;
    min-height: fit-content;
  }
  #aym_show_menu .aym_grid_form a .aym_link_form img {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 699px) {
  #aym_wrap_banner figure {
    height: 200px;
  }
  #aym_wrap_banner figure h1,
  #aym_wrap_banner figure h2 {
    font-size: 1.5em;
    margin: 0;
  }
  #aym_wrap_banner figure div p {
    font-size: 0.9em;
  }
  #aym_wrap_banner figure div img {
    width: 30px;
    height: 30px;
  }

  #aym_wrap_header > div .aym_figure_uno img {
    height: 60px;
  }
  #aym_wrap_header > div .aym_figure_dos img {
    height: 50px;
  }

  main {
    margin-top: 119px;
  }

  #aym_wrap_banner_home .aym_banner_content {
    padding: 10px;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    font-size: 0.75em;
  }

  #aym_wrap_home_content .aym_item {
    width: calc(60% - 20px);
  }
  #aym_wrap_home_content .aym_item figure {
    height: 375px;
  }

  #aym_wrap_politics div a {
    text-align: right;
  }

  #aym_show_menu .aym_grid_form {
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-column-end: 3;
  }
  #aym_show_menu .aym_grid_form h2 {
    font-size: 1.8em;
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 630px) {
  #aym_wrap_home_content .aym_item {
    width: calc(80% - 20px);
  }
  #aym_wrap_home_content .aym_item figure {
    height: 452px;
  }
  #aym_wrap_header > div .aym_nav_bar a:nth-child(2) {
    display: none;
  }

  #aym_wrap_mapa_detail h2 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 599px) {
  /*FORMULARIOS*/
  .aym_grid_form {
    box-shadow: unset;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  #aym_wrap_home_content > p {
    display: none;
  }

  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 0.65em;
    display: contents;
  }
  #aym_wrap_header > div .aym_nav_bar .submenu > ul {
    top: calc(100% + 30px);
    width: 200px;
  }

  #aym_wrap_banner_home::before {
    display: none;
  }
  #aym_wrap_banner_home .aym_banner_content {
    width: 100%;
    clip-path: none;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    width: 100%;
  }

  #aym_wrap_home_content .aym_item {
    width: 90%;
  }
  #aym_wrap_home_content .aym_item figure {
    height: auto;
    max-height: 300px;
  }
  #aym_wrap_home_content .aym_item figure img {
    object-fit: cover;
    object-position: top;
  }

  #aym_wrap_consult .aym_content_frm {
    padding: 20px;
  }
  #aym_wrap_consult .aym_content_frm form {
    width: 95%;
  }
}

@media screen and (max-width: 568px) {
  .mapcontainer {
    width: 90%;
  }

  #aym_wrap_banner_home #aym_wrap_banner figure {
    height: 250px;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    font-size: 0.96em;
  }
  #aym_wrap_banner_home .aym_banner_content figure {
    width: 27%;
  }

  #aym_show_menu .aym_grid_form a {
    padding: 0;
  }

  #aym_wrap_form form h2 {
    font-size: 1.5em;
  }

  #aym_wrap_form.aym_internal_map .table table tr td {
    font-size: 0.9em;
    padding: 7px;
  }

  #aym_wrap_banner figure {
    height: 35vh;
  }
}

@media screen and (max-width: 500px) {
  #aym_activate_menu img {
    display: none;
  }
  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 0.6em;
  }
  #aym_wrap_header > div .aym_figure_uno img {
    height: 50px;
  }
  #aym_wrap_header > div .aym_figure_dos img {
    height: 40px;
  }

  #aym_wrap_banner_home .aym_banner_content figure {
    width: 30%;
  }

  main {
    margin-top: 109px;
  }

  #aym_wrap_home_content h1 {
    font-size: 1.3em;
  }

  #aym_show_menu .aym_grid_form {
    grid-template-columns: repeat(1, 1fr);
  }
  #aym_show_menu .aym_grid_form h2 {
    font-size: 1.5em;
    grid-column-end: 2;
  }
}

@media screen and (max-width: 450px) {
  #aym_wrap_banner figure h1,
  #aym_wrap_banner figure h2 {
    font-size: 1.3em;
  }

  #aym_wrap_banner_home .aym_wrap_nav {
    display: none !important;
  }
  .aym_border_header div {
    border-right: 20px solid #911b21 !important;
    width: 1% !important;
  }

  #aym_wrap_header > div .aym_nav_bar .submenu {
    width: auto !important;
  }

  #aym_wrap_header > div .aym_nav_bar a {
    font-size: 0.5em;
  }

  #aym_wrap_banner_home .aym_banner_content figure {
    order: 1;
    margin: 0 auto 10px;
    width: 30%;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption {
    order: 2;
    width: 100%;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption h2 {
    font-size: 1.2em;
    margin: 0 auto 10px;
  }
  #aym_wrap_banner_home .aym_banner_content figcaption p {
    font-size: 0.9em;
  }

  #aym_wrap_home_content h1 {
    font-size: 1.2em;
  }

  #aym_wrap_politics > div {
    font-size: 0.7em;
  }
}

/* File upload */

#fileList{
  border: 1px dashed #911b21;
  border-radius: 10px;
  padding: 10px;
  /* flex-wrap: wrap; */
  /* display: none; */
  margin-top: 10px;
  display: none;
}

#aym_loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  background: white;
  background-image: url(/aymsite/aym_image/aym_back/aym_preloader_back.jpg);
  background-size: cover;
  
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 900;
  margin: 0;
  opacity: 0.7 !important;
}

#aym_loading img {
  width: 290px;
  height: 290px;
  margin: auto;
}
#aym_loading div {
  display: inline-block;
  padding: 20px 0;
  position: relative;
}
#aym_loading div::after {
  animation: preloader 1s linear infinite;
  border: 3px solid #222;
  border-radius: 50%;
  border-top: 3px solid #5c1417;
  content: "";
  display: inline-block;
  height: 30px;
  position: relative;
  width: 30px;
}

/* Canales de atención - videos */

.canales_wrap_flex{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}


.canales_wrap_flex h3, .canales_wrap h3{
  margin: 10px 0;
  text-align: center;
  font-size: 1.3em;
  color: #911b21;
}
.canales_wrap_flex_home{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px; */
}
.canales_wrap_flex_home .video_item{
  max-width: 320px;
}

.canales_wrap_flex_home h3, .canales_wrap h3{
  margin: 10px 0;
  text-align: center;
  font-size: 1.3em;
  color: #911b21;
}
.canales_wrap{
  max-width: 600px;
  margin: auto;
  margin-bottom: 70px;
  padding-bottom: 20px;
}

.guiones{
  display: flex ;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px
}
.guiones img{
  margin: 10px auto;
}

.group-title {
  font-weight: bold;
  color: #333;
  background-color: #e0e0e0;
  font-style: italic;
  padding-left: 10px;
  font-size: 16px;
}


/* Estilos Botones de accesibilidad en el footer */
.botones-accesibilidad {
  position: fixed;
  top: 50%; /* mitad de la pantalla */
  right: 0;
  transform: translateY(-50%);
  background-color: #074982;
  border: 1px solid #074982;
  border-right: none;
  border-radius: 8px 0 0 8px;
  /* box-shadow: 0 0 5px rgba(0,0,0,0.2); */
  z-index: 9999;
  padding: 7px;
}

.botones-accesibilidad button {
  display: block;
  margin: 0;
  padding: 8px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  background-color: #00000000;
  font-weight: 700;
}

.botones-accesibilidad button:nth-child(1),
.botones-accesibilidad button:nth-child(2){
  border: solid #fff;
  border-width: 0 0 2px 0;
}

.botones-accesibilidad svg{
  width: 24px;
  height: 24px;
  margin-left: -3px;
}

.modo-contraste{
  background-color: #000!important;
}
.modo-contraste header,
.modo-contraste main,
.modo-contraste footer section{
   filter: invert(1) hue-rotate(180deg);
}


/** Custom style chat **/

/* Animación de entrada más visible */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px); /* más abajo */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo base */
#customChatBtn {
    cursor: pointer;
    position: fixed;
    bottom: 261px;
    right: 3px;
    z-index: 9999;
    width: 90px;
    height: auto;

    /* Animación de entrada */
    opacity: 0;
    animation: slideUpFade 0.9s ease-out forwards;
    /* animation-delay: 1.5s; */

    transition: transform 0.2s ease-in-out;
    will-change: transform;

    border: 2px solid #911b21;
    border-radius: 6px;
    background-color: #911b21;
    padding: 3px;
}

#customChatBtn:hover {
    transform: scale(1.08) !important;
}

/** End Custom style chat **/