/*

Table of contents:
~~~~~~~~~~~~~~~~~
 0. Variables
 1. Reset
 2. Typography
 3. Links
 4. Useful classes
 5. Form elements
 6. Header
 7. Main menu
 8. Header call to action
 9. Hero
10. Social navigation
11. Featured media
12. Content
13. Home - Intro
14. Listings
15. Various elements
16. Sidebar widgets
17. Sales box
18. Footer
19. Player

*/
/* 0. Variables */
:root {
  --primary-color: #005151;
  --primary-alt-color: #ffffff;
  --secondary-color: #0e2d2d;
  --link-color: #85fff4;
  --border-color: #005151;
  --body-background-color: #0e2d2d;
  --body-text-color: #ffffff;
  --body-font: "Roboto", sans-serif;
  --headings-font: "Poppins", serif;
  --headings-font-weight: 600;
  --transition-duration: 0.3s;
  --tagcloud-color: #0e4343;

  --sb-track-color: #ffffff;
  --sb-thumb-color: #0e2d2d;
  --sb-size: 5px;
  --max-height-lg: 700px;
  --max-height-md: 700px;
}


body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 50px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 50px;

}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    scrollbar-width: thin;
  }
}

.sub-menu {
  /* max-height: 350px; */
  max-height: 500px;
  overflow-y: auto;
}

.sub-menu::-webkit-scrollbar {
  width: var(--sb-size, 10px);
}

.sub-menu::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

.sub-menu::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}


.sub-menu::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
  .sub-menu {
    scrollbar-color: var(--sb-thumb-color, #888) var(--sb-track-color, #f1f1f1);
    scrollbar-width: thin;
  }
}


/* 1. Reset */
*,
*:before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  scroll-behavior: smooth;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
}

.entry-content p {
  text-transform: none;
  letter-spacing: 0.1em;
}

/**Entry Info*/
.entry-info {
  letter-spacing: 0.1em;
  position: relative;
  width: 100%;
  margin: 0px 10px 0px 10px;
  padding: 1.5em;
  border-radius: 1.17em;
  background-color: #0d3737;
}

.entry-info p {
  text-transform: none;
  text-transform: none;
  color: #d6d2d2;
  letter-spacing: 0.05em;
}

.entry-info p a {
  text-transform: lowercase;
  color: var(--link-color);
}

.entry-info h2 {
  text-rendering: optimizespeed;
  font-size: 1.25em;
  text-transform: initial;
  margin: 1.75rem 0 1rem;
}

.entry-info h3 {
  text-rendering: optimizespeed;
  font-size: 1.1em;
  text-transform: initial;
  margin: 0.75rem 0 1rem;
}

.entry-info ol {
  list-style-type: decimal;
  margin-left: 30px;
}

.entry-info ol li {
  text-transform: none;
  color: #d6d2d2;
  letter-spacing: 0.05em;
}

.entry-info ol li a {
  text-transform: lowercase;
}

.entry-info ol li span {
  font-weight: bold;
  text-transform: lowercase;
}

.entry-info ul {
  list-style-type: none;
  margin-left: 30px;
}

.entry-info ul li {
  text-transform: none;
  list-style: auto;
  color: #d6d2d2;
  letter-spacing: 0.05em;
}

.entry-info ul li a {
  text-transform: lowercase;
  color: var(--link-color);
}

.entry-info ul li span {
  color: #ffff;
}

.entry-info ul li strong {
  text-transform: initial;
}

.entry-add-station {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.entry-add-station .form-group {
  margin-bottom: 1em;
}

.col-12.col-md-auto.entry-description p {
  text-transform: uppercase;
}

#contact_form input {
  text-transform: none;
}

#contact_form textarea {
  text-transform: none;
}

#ctable td {
  text-transform: none;
}

input#img {
  padding: 9px;
  border-radius: 5px;
  background: black;
  border-style: groove;
  width: 100%;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

b,
strong {
  font-weight: bold;
  text-transform: lowercase;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 2. Typography */
html {
  background-color: var(--body-background-color);
  font-size: 13.7px;
}

body {
  /* font-family: var(--body-font); */
  font-family: var(--headings-font);
  line-height: 1.5;
  background-color: inherit;
  color: var(--body-text-color);
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  font-family: var(--headings-font);
  font-weight: var(--headings-font-weight);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  /* margin: 2.75rem 0 1rem; */
  margin: 1.75rem 0 1rem;
  -epub-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
blockquote:first-child {
  margin-top: 0;
}

.link-d {
  text-transform: lowercase;
  color: var(--link-color);
}

h1 {
  text-rendering: optimizespeed;
  font-size: 1.8em;
}

h1.display {
  font-size: 1.8em;
}


h2 {
  color: #ffffff;
  text-rendering: optimizespeed;
  font-size: 1.5em;
  letter-spacing: 0.03em;
}

h3,
blockquote {
  font-size: 1.953em;
}

h4 {
  font-size: 1.563em;
}

h5 {
  font-size: 1.25em;
}

h3 {
  font-size: 1.3em;
  text-transform: initial;
}

h3.subtitle {
  /* font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
	opacity: 2.5; */

  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  opacity: 1.1;
  margin: 0px;
  margin-top: 15px;
}

/* p.subtitle {
  font-family: var(--headings-font);
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  opacity: 1.1;
  margin: 0px;
  margin-top: 10px;
  font-size: 1em;
} */

p.subtitle {
 font-family: var(--headings-font);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    color: #d6d2d2;
    margin: 0px;
    margin-top: 10px;
    font-size: 1.05rem;
}

h6 {
  font-size: 1em;
}

h6.subtitle {
  /* font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
	opacity: 2.5; */

  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  opacity: 1.1;
  margin: 0px;
  /* margin-top: 15px; */
}

p.message_global {
  font-family: var(--headings-font);
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  opacity: 1.1;
  margin: 0px;
  margin-top: 0px;
  font-size: 1em;
}

#msg-noti {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
}

#mjs_live {
  color: var(--link-color);
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 0.1em;
}

h3.flag-title {
  text-align: center;
  text-transform: normal;
}
p.notify_auth{
  color: #d6d2d2;
  text-align: center;
}
.notify_auth a{
    color: var(--link-color);
    text-decoration: underline;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
  color: inherit;
  text-decoration: none;
}

hr {
  background-color: var(--border-color);
  border: 0;
  height: 3px;
  margin-top: 3.25em;
  margin-bottom: 3.25em;
}

p,
ul,
ol,
dl,
table,
pre,
form,
video,
embed,
iframe,
object {
  margin: 0 0 1.25rem;
}

p:empty {
  display: none;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul ul {
  padding-left: 1em;
}

ol ol {
  padding-left: 1.3333em;
}

ul ul,
ol ul {
  list-style-type: circle;
}

ul ol,
ol ol {
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: decimal;
}

ul ul,
ul ol,
ol ol,
ol ul {
  font-size: inherit;
  margin: 0.33333em 0;
}

ul ul,
ol ul {
  padding-left: 1em;
}

ul ol,
ol ol {
  padding-left: 1.4em;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
  padding-left: 1.5em;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-width: 0;
  width: 100%;
}

caption {
  font-size: 1rem;
  text-align: left;
  caption-side: top;
}

th,
td {
  border-bottom: 1px solid #e8e8e8;
  padding: 0.75em 0.5em;
  text-align: left;
}

th {
  padding: 0.5em;
  text-align: inherit;
  font-weight: 700;
  border-bottom-width: 2px;
  vertical-align: bottom;
}

td {
  font-weight: 400;
  vertical-align: top;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

table> :last-child tr:last-child td {
  border-bottom: 0;
}

fieldset {
  border-width: 0;
  clear: both;
  margin: 0 0 1.65em;
  padding: 0;
}

fieldset> :last-child {
  margin-bottom: 0;
}

legend {
  border-bottom: 1px solid #ddd;
  color: inherit;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.625;
  margin-bottom: 1.625em;
  padding-bottom: 0.53846154em;
  text-transform: uppercase;
  width: 100%;
}

dfn,
cite,
em,
i,
q {
  font-style: italic;
}

blockquote {
  position: relative;
  margin: 1.75em 0 1.25em;
  padding-left: 2em;
  padding-right: 2em;
  line-height: 1.25;
}

blockquote:before {
  position: absolute;
  top: 0;
  left: 0.25em;
  content: "\F27E";
  font: normal normal normal 1.3em/1 "Material Design Icons";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0.25;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote cite {
  display: block;
  margin-top: 1.25em;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  color: #a2a2a2;
}

address {
  margin: 0 0 1.625em;
}

pre {
  background: #fafafa;
  border: 1px dotted #ddd;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code,
kbd,
tt,
var,
samp,
pre {
  font-family: "Menlo", "Monaco", "Consolas", "Courier New", monospace;
  -webkit-hyphens: none;
  hyphens: none;
  -ms-hyphens: none;
}

ins {
  /* padding: 0 0.3em; */
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--body-text-color);
  margin-bottom: 1.2em;
}

mark {
  padding: 0 0.3em;
  background-color: var(--secondary-color);
  color: var(--body-text-color);
}

abbr[title],
acronym[title] {
  text-decoration: none;
  border-bottom: 1px dotted #ddd;
  cursor: help;
}

img {
  border: 0;
  height: auto;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  vertical-align: middle;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

del {
  opacity: 0.6;
}

big,
.big-text {
  font-size: 114.2857%;
}

small,
.small-text {
  font-size: 85.7142%;
}

video {
  height: auto;
}

video,
embed,
iframe,
object {
  max-width: 100%;
}

/* Links */

a {
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
}

a:focus {
  outline: thin dotted;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* Useful classes */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0 none;
}

.clearfix:after,
.author-box:after,
.comment-body:after,
.entry-content:after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

.alignleft {
  float: left;
  margin-right: 1.25em;
  margin-bottom: 1.25rem;
}

.alignright {
  float: right;
  margin-left: 1.25em;
  margin-bottom: 1.25rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.no-margin-top {
  margin-top: 0 !important;
}

.double-margin-top {
  margin-top: 2.5rem !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.double-margin-bottom {
  margin-bottom: 2.5rem !important;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-strong {
  font-weight: 700;
}

.text-fade-out {
  opacity: 0.5;
}

.gallery {
  /* margin: 0 -1.1666667% 1.25rem; */
  margin: 0 -3.166667% 1.25rem;
  padding: 0;
  font-size: 0;
}

/*.gallery .gallery-item {
   display: inline-block;
	margin: 0;
	max-width: 33.33%;
	padding: 0 1.1400652% 2.2801304%;
	text-align: center;
	vertical-align: top;
	width: 100%;
	background: white;
    border: solid #080808;
    border-radius: 5px; 

  display: inline-block;
  margin: 0;
  max-width: 33.33%;
  padding: 0 0.140065% 1.28013%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  background: white;
  border: solid #080808 1px;
  border-radius: 3px;
}*/

ins.adsbygoogle{
    overflow: hidden;
}

.gallery .gallery-item {
  display: flex;
  margin: 0;
  max-width: 33.33%;
  padding: 0 2.140065% 0.28013%;
  text-align: center;
  vertical-align: top;
  margin: 1px 1px 1px;
  width: 100%;
  background: #ffffff;
  border-radius: 0.3rem !important;
  justify-content: center;
}

.gallery .gallery-item .gallery-icon a {
  display: block;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 48%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* .gallery-icon.landscape img {
    object-fit: none;
    filter: saturate(180%);
    border-radius: 5px;
} */
.gallery-icon.landscape img {
  filter: saturate(180%);
  object-fit: scale-down;
  /* padding: 1px; */
  width: 100%;
  height: 120px;
}

.wp-caption,
.gallery-caption {
  color: #a2a2a2;
  font-size: 0.857rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.5em 0 1.25em;
}

.alert,
.box {
  padding: 1em;
  margin-bottom: 1.25rem;
  background-color: var(--border-color);
  -webkit-box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset;
  box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset;
}

.box-color {
  min-height: 60px;
  margin-top: 8px;
  margin-bottom: 8px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

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

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

.box-color.primary-color {
  background-color: var(--primary-color);
}

.box-color.secondary-color {
  background-color: var(--secondary-color);
}

.box-color.link-color {
  background-color: var(--link-color);
}

.box-color.border-color {
  background-color: var(--border-color);
}

.min-box {
  min-height: 100px;
}

.alert:empty {
  display: none;
}

.alert.success {
  /* background-color: #2bff007d; */
  background-color: #0c161600
}

.alert.notice {
  background-color: #0c161600
}

.alert.error {
  background-color: #ff2600ba;
  color: #fff;
}

#alert-message {
  border-radius: 0.3rem !important;
}

.message-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  max-width: 480px;
  padding: 0 1rem;
  box-sizing: border-box;
  animation: popIn 0.6s ease-out;
  z-index: 5000;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.message-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 0.75rem;
  width: 100%;
  z-index: 5000;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  border-left: 5px solid;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.message-alert.success {
  background: rgba(40, 167, 69, 0.95);
  border-left-color: #2ecc71;
}

.message-alert.error {
  background: rgba(220, 53, 69, 0.95);
  border-left-color: #e74c3c;
}

.message-alert.warning {
  background: rgba(255, 193, 7, 0.95);
  border-left-color: #f39c12;
  color: #222;
}

.message-alert.info {
  background: rgba(23, 162, 184, 0.95);
  border-left-color: #17a2b8;
}

.message-text {
  flex: 1;
  text-align: center;
  word-break: break-word;
  padding-right: 1rem;
  text-transform: initial;
}

.message-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.message-close:hover {
  transform: scale(1.2);
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .message-alert {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .message-text {
    padding-right: 0;
    margin-bottom: 0.5rem;
    font-size: 12px;
    text-align: center;
  }

  .message-close {
    align-self: center;
  }
}

.tagcloud::-webkit-scrollbar-track,
.gallery::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

.tagcloud::-webkit-scrollbar-thumb,
.gallery::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}

.tagcloud::-webkit-scrollbar-thumb:hover,
.gallery::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-color);
}

/* Fallback para navegadores que no soportan ::-webkit-scrollbar */
@supports not selector(::-webkit-scrollbar) {

  .tagcloud,
  .gallery {
    scrollbar-color: var(--sb-thumb-color, #888) var(--sb-track-color, #f1f1f1);
    scrollbar-width: thin;
  }
}

/* Estilos para pantallas grandes (>= 992px) */

/* Estilos para pantallas medianas (>= 768px) */
@media (min-width: 768px) and (max-width:992px) {
  /* .tagcloud, .gallery {
    max-height: var(--max-height-lg);
  } */

  .tagcloud,
  .gallery {
    overflow-y: auto;
    transition: overflow-y 0.2s ease-in-out;
  }

  .tagcloud::-webkit-scrollbar,
  .gallery::-webkit-scrollbar {
    display: none;
  }

  .tagcloud {
    max-height: 900px;
  }

  .gallery {
    max-height: 800px;
  }
}

@media (min-width: 992px) {

  /* Selección de clases comunes */
  .tagcloud,
  .gallery {
    overflow-y: hidden;
    transition: overflow-y 0.2s ease-in-out;
  }

  /* Comportamiento en hover para ambas clases */
  .tagcloud:hover,
  .gallery:hover {
    overflow-y: auto;
  }

  .tagcloud::-webkit-scrollbar,
  .gallery::-webkit-scrollbar {
    width: var(--sb-size);
  }

  .tagcloud {
    /* max-height: 575px; */
    max-height: 800px;
  }

  .gallery {
    /* max-height: 735px; */
    max-height: 870px;

  }
}



/*Options views*/

.options {
  display: none;
  margin-top: 10px;
  list-style-type: none;
  padding: 1em;
  align-items: center;
  justify-content: space-evenly;
  background-color: #0d3232;
  border-radius: 0.4em;
  -webkit-box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset;
  box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset;
  margin-bottom: 10px;
}

.options li {
  display: inline;
  margin-right: 10px;
}

.options a {
  text-decoration: none;
}

.title-songs {
  position: absolute;
  color: white;
  font-family: var(--headings-font);
  letter-spacing: 0.3px;
  z-index: 123;
  left: 15px;
  font-size: small;
  user-select: none;
  white-space: nowrap;
  /* Previene que el texto se envuelva */
  text-overflow: ellipsis;
  /* Agrega "..." al final del texto si se desborda */
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

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

.marquee {
  animation: marquee 10s linear infinite;
}

.alert> :last-child,
.box> :last-child {
  margin-bottom: 0;
}

.box-typography {
  min-height: 60px;
  padding: 44px 15px;
  margin: 8px 0;
  text-align: center;
  font-size: 53px;
  background-color: var(--border-color);
}

.text-headings-font {
  font-family: var(--headings-font);
}

.text-weight-regular {
  font-weight: 400;
}

.text-headings-font.text-weight-semibold {
  font-weight: 600;
}

.text-body-font {
  font-family: var(--body-font);
}

.text-weight-regular {
  font-weight: 400;
}

.text-body-font.text-weight-semibold {
  font-weight: 500;
}

.text-body-font.text-weight-bold {
  font-weight: 700;
}

.line-link {
  position: relative;
  display: inline-block;
  padding-left: 55px;
  font-weight: 500;
  text-transform: uppercase;
  transition: var(--transition-duration) padding;
  margin-top: 15px;
}

.line-link:hover,
.line-link:focus {
  text-decoration: none;
}

.line-link:hover,
.line-link:focus {
  padding-left: 50px;
}

.line-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 35px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--primary-color);
  transition: var(--transition-duration) width;
}

.line-link:hover:before,
.line-link:focus:before {
  width: 30px;
}

.jump-point~.line-link {
  margin-left: 12px;
  text-transform: none;
}

.jump-point~.line-link:hover,
.jump-point~.line-link:focus,
.jump-point:hover~.line-link,
.jump-point:focus~.line-link {
  padding-left: 55px;
}

.jump-point~.line-link:hover:before,
.jump-point~.line-link:focus:before,
.jump-point:hover~.line-link:before,
.jump-point:focus~.line-link:before {
  width: 35px;
}

/* Tabs */
.tab-container {
  margin: 0 0 1.25rem 0;
}

.tab-container .tab-content {
  display: none;
  /* padding: 1.25rem 0; */
  padding: 0.25rem 0;
}

.tab-container .tab-content.active {
  display: block;
}

.tab-container .tab-content> :last-child {
  margin-bottom: 0;
}

.tab-container .tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1.5px solid var(--border-color);
  text-align: center;
}

.tab-container .tabs li {
  display: inline-block;
  margin: 0;
}

.tab-container .tabs li a {
  display: block;
  text-decoration: none;
  /* text-transform: uppercase; */
  padding: 1rem 1.2rem;
  color: inherit;
  outline: none;
  -webkit-transition: all var(--transition-duration);
  -o-transition: all var(--transition-duration);
  transition: all var(--transition-duration);

  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.99;
}

.tab-container .tabs li a:hover,
.tab-container .tabs li a:focus {
  color: var(--link-color);
}

@media (min-width: 768px) {
  .tab-container .tabs li a {
    /* padding: 1.75rem 2rem; */

    /* padding: 0.80rem 2rem; */
    padding: 0.9rem 2rem;
  }
}

.tab-container .tabs li.active a {
  position: relative;
  color: var(--link-color);
}

.tab-container .tabs li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background-color: var(--link-color);
}

/* Form elements */
label {
  display: block;
  color: #a2a2a2;
  font-size: 85.7142%;
  font-weight: 500;
  margin-bottom: 0.25em;
}

input,
select,
textarea {
  background-color: #fff;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

input {
  line-height: normal;
  overflow: visible;
}

input,
select,
textarea {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0));
  -webkit-transition: border-color var(--transition-duration);
  -o-transition: border-color var(--transition-duration);
  transition: border-color var(--transition-duration);
}

input[disabled],
button[disabled],
select[disabled],
textarea[disabled] {
  cursor: default;
  opacity: 0.5;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  display: inline-block;
  margin-right: 0.3em;
  padding: 0;
  position: relative;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::-webkit-input-placeholder {
  color: #a2a2a2;
}

:-moz-placeholder {
  color: #a2a2a2;
}

::-moz-placeholder {
  color: #a2a2a2;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #a2a2a2;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="tel"],
input[type="url"],
select,
textarea {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  line-height: 21px;
  /* margin-bottom: 1.25em; */
  padding: 10px 12px;
  border: 1.5px solid var(--border-color);
  width: 100%;
  /* border-radius: 2.5px; */
  border-radius: 0.5em;
  letter-spacing: 0.1em;
  text-transform: none;
  color: #d6d2d2;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="number"]:focus,
input[type="range"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(230, 230, 230, 0.25);
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: none;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMzFweCIgaGVpZ2h0PSI1cHgiIHZpZXdCb3g9IjAgMCAzMSA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMSA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggc3R5bGU9ImZpbGw6IzIyMjIyMiIgZD0iTTE1LjUsNUwxMSwwaDlMMTUuNSw1eiIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  padding: 10px 30px 10px 10px;
}

select::-ms-expand {
  display: none;
}

/* textarea {
	overflow: auto;
	resize: vertical;
	vertical-align: top;
} */
textarea {
  overflow: auto;
  resize: vertical;
  vertical-align: top;
  height: 120px;
  margin-bottom: 20px;
}

progress {
  vertical-align: baseline;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

button {
  border-radius: 0;
  text-transform: none;
}

button:focus {
  overflow: visible;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* .button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.pagination .page-numbers {
  display: inline-block;
  background: none;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background-color: transparent;
  color: var(--body-text-color);
  border: 2px solid var(--body-text-color);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.48;
  margin: 0 0.5em 0.75em 0;
  padding: 14px 40px 14px;
  cursor: pointer;
  border-radius: 3px;
  outline: 0;
  box-shadow: none;
  opacity: 1;
  transition: color var(--transition-duration),
    background-color var(--transition-duration),
    opacity var(--transition-duration);
} */

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.pagination .page-numbers {
  display: inline-block;
  background: none;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background-color: transparent;
  /* color: var(--body-text-color); */
  color: #d6d2d2;
  /* border: 1px solid var(--body-text-color); */
  border: 1px solid #717171ab;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.48;
  margin: 0 0.5em 0.75em 0;
  padding: 10px 20px 10px;
  cursor: pointer;
  border-radius: 0.5em;
  outline: 0;
  box-shadow: none;
  opacity: 1;
  transition: color var(--transition-duration), background-color var(--transition-duration), opacity var(--transition-duration);
}

.load-more-station {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.load-more-station a {
  border: 1px solid #717171ab;
}

.load-more-station span {
  border: 1px solid #717171ab;
}

.div-load-more-station {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.div-load-more-station a {
  border: 1px solid #717171ab;
}

.div-load-more-station span {
  border: 1px solid #717171ab;
}

.page-list-disabled {
  background: white;
  color: black;
}

.flex-single {
  padding: 0rem 0.09rem 0rem 0.09rem;
}

.button:hover,
button:hover,
input[type="button"]:hover,
button[type="submit"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.pagination a.page-numbers:hover,
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button[type="submit"]:focus,
.pagination a.page-numbers:focus,
.button.button-filled,
input[type="submit"].button-filled {
  background-color: var(--body-text-color);
  color: var(--body-background-color);
  text-decoration: none;
  user-select: none;
}

.button:active,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
.pagination a.page-numbers:active {
  opacity: 0.85;
}

.button.button-color,
button.button-color,
input[type="button"].button-color,
input[type="reset"].button-color,
input[type="submit"].button-color,
.pagination .page-numbers.current {
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.button.button-color:hover,
button.button-color:hover,
input[type="button"].button-color:hover,
button[type="submit"].button-color:hover,
input[type="reset"].button-color:hover,
input[type="submit"].button-color:hover,
.button.button-color:focus,
button.button-color:focus,
input[type="button"].button-color:focus,
input[type="submit"].button-color:focus,
input[type="reset"].button-color:focus,
button[type="submit"].button-color:focus,
.button.button-filled.button-color,
input[type="submit"].button-filled.button-color {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--primary-alt-color);
}

.button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.pagination a.page-numbers:focus {
  text-decoration: none;
}

.button-small {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
}

.button-wide {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
}

.button.button-underline {
  font-size: 0.85rem;
  padding: 5px 3px;
  border-radius: 0;
  border-width: 0 0 2px 0;
}

p>.button:last-child {
  margin-right: 0;
}

.button .mdi,
button .mdi {
  font-size: 1.5em;
  line-height: 0.5em;
  vertical-align: -25%;
}

iframe {
  /* background: white; */
  border-radius: 0.03em;
}

/* MailChimp Form */
.mc4wp-form {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.mc4wp-form .mc4wp-alert,
.mc4wp-form .mc4wp-error {
  padding: 0.5em 1em;
  background-color: #fffad4;
  border: 2px solid #fcf08d;
}

.mc4wp-form .mc4wp-alert p,
.mc4wp-form .mc4wp-error p {
  margin-bottom: 0;
}

.mc4wp-form .one-line input[type="email"] {
  max-width: 220px;
  margin-bottom: 0.5rem;
}

.mc4wp-form .one-line input[type="submit"] {
  padding-bottom: 13px;
  margin: 0 0 0 0.2rem;
  border: 0;
  background-color: var(--primary-color);
  color: var(--primary-alt-color);
}

@media (min-width: 768px) {
  .mc4wp-form .one-line input[type="email"] {
    margin-bottom: 0;
  }

  .mc4wp-form .one-line input[type="submit"] {
    margin: 0 0 0 -3px;
    border-radius: 0;
  }
}

/* 6. Header */
#top {
  position: relative;
  z-index: 80;
  background-color: var(--secondary-color);
  color: var(--primary-alt-color);
}

#top .navbar {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .navbar-is-sticky #top .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--body-text-color);
    background-color: var(--body-background-color);
  }
}

@media (min-width: 1200px) {
  #top .navbar {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

#top .row {
  position: relative;
}

.site-title h1 {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1;
}

.site-title h1 a {
  display: inline-block;
  text-decoration: none;
}

.site-title h1 img {
  display: inline-block;
}


.site-title p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1;
}

.site-title p a {
  display: inline-block;
  text-decoration: none;
}

.site-title p img {
  display: inline-block;
}


.site-title .text {
  font-size: 3.052rem;
  line-height: 1;
  letter-spacing: -0.1rem;
}


/*Home country css*/

.info-ulist li {
  padding: 0.4em;
  margin-left: 30px;
  /* color: #d6d2d2; */
  text-transform: initial;
  color: #d6d2d2;
}

.info-spanli,
.info-linka {
  color: #ffffff;
  font-weight: bold;
}


/* 7. Main menu */
.site-menu-toggle,
.no-js .site-menu-toggle {
  display: none;
     margin-right: 12px;
}

#site-menu a {
  color: inherit;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition-duration),
    opacity var(--transition-duration);
}

#site-menu li,
#site-menu ul ul {
  margin: 0;
}

#site-menu .current-menu-item>a,
#site-menu .current-menu-parent>a {
  color: var(--link-color);
}

#site-menu .menu-item-has-children {
  position: relative;
  z-index: 943;
}

@media (max-width: 991px) {

  .site-menu-toggle,
  .site-menu-toggle a {
    display: block;
  }

  .site-menu-toggle a {
    width: 30px;
    text-align: center;
    color: inherit;
  }

  #top .site-menu-toggle a:before {
    content: url("https://cdn.anii.io/svg/menu.svg");
    /* Reemplaza 'ruta/del/archivo.svg' con la ubicación real de tu archivo SVG */
    display: inline-block;
    width: 24px;
    /* Ajusta el ancho según tus necesidades */
    height: 30px;
    /* Ajusta la altura según tus necesidades */
  }

  #site-menu {
    display: none;
  }

  .mobile-menu-opened #site-menu {
    display: block;
  }

  #site-menu ul {
    padding-left: 0;
    list-style: none;
  }

  #site-menu>ul {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  #site-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  #site-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
  }

  #site-menu .current-menu-item>a {
    background-color: rgba(255, 255, 255, 0.08);
  }

  #site-menu .current-menu-item>a.menu-expand {
    background-color: transparent;
  }

  #site-menu ul ul a {
    padding-left: 30px;
  }

  #site-menu ul ul ul a {
    padding-left: 45px;
  }

  #site-menu ul ul ul ul a {
    padding-left: 60px;
  }

  #site-menu .menu-item-has-children>a:first-child {
    padding-right: 35px;
  }

  #site-menu .menu-item-has-children .menu-expand {
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    margin-top: -3px;
  }

  .no-js #site-menu .menu-item-has-children .menu-expand {
    display: none;
  }

  #site-menu .menu-item-has-children .menu-expand:before {
    content: none;
  }

  #site-menu .menu-item-has-children .menu-expand:after {
    display: inline-block;
		content: url(https://cdn.anii.io/svg/expand.svg);
		top: 0;
		right: 0;
  }

  #site-menu .menu-item-has-children.collapse>.menu-expand:after {
    display: inline-block;
		content: url(https://cdn.anii.io/svg/expand-affter.svg);
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
  }

  #site-menu .menu-expand {
    position: absolute;
    top: 0;
    right: 0;
  }

  #site-menu .menu-item-has-children ul {
    display: none;
  }

  #site-menu .menu-item-has-children.collapse>ul {
    display: block;
  }
}

@media (max-width: 1115px) and (min-width: 767px) {
  .widget_media_gallery .gallery {
    gap: 1px;
  }

  .gallery-columns-2 .gallery-item {
    max-width: 48%;
  }

  .gallery-icon.landscape img {
    /* padding: 8px; */
    height: 125px;
  }

  .gallery {
    margin: 0 -11.166667% 1.25rem;
  }
}

@media (max-width: 767px) and (min-width: 500px) {
  .gallery-columns-2 .gallery-item {
    max-width: 30%;
  }

  .gallery-icon.landscape img {
    padding: 8px;
  }
}

@media (max-width: 500px) and (min-width: 300px) {
  .gallery-columns-2 .gallery-item {
    max-width: 32%;
  }

  .gallery-icon.landscape img {
    padding: 3px;
    height: 118px;
  }
}

@media (max-width: 300px) {
  .gallery-columns-2 .gallery-item {
    max-width: 48%;
  }

  .gallery-icon.landscape img {
    height: 110px;
  }
}

@media (min-width: 992px) {
  #site-menu ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  #site-menu>ul {
    position: relative;
    padding-left: 21px;
  }

  #site-menu>ul:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 40px;
    margin-top: -20px;
    background-color: rgba(255, 255, 255, 0.08);
  }

  #site-menu li {
    display: inline-block;
  }

  #site-menu a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
  }

  .no-touch #site-menu a:hover,
  #site-menu .hover>a,
  #site-menu a:focus,
  #site-menu .current-menu-parent .current-menu-parent>a,
  #site-menu .current-menu-parent .current-menu-item>a {
    opacity: 0.8;
  }

  #site-menu .current-menu-parent .current-menu-parent>a,
  #site-menu .current-menu-parent .current-menu-item>a {
    color: inherit;
  }

  #site-menu .menu-expand {
    display: none;
  }

  #site-menu nav>ul>.current-menu-item>a,
  #site-menu nav>ul>.current-menu-parent>a {
    position: relative;
  }

  #site-menu .menu-item-has-children ul {
    visibility: hidden;
    position: absolute;
    z-index: 97;
    top: 100%;
    right: 50%;
    width: 15rem;
    margin-top: 0.5rem;
    margin-right: -7.5rem;
    padding-top: 10px;
    text-align: center;
    opacity: 0;
    border-radius: 0;
  }

  .no-touch #site-menu .menu-item-has-children:hover>ul,
  #site-menu .menu-item-has-children.hover>ul {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
  }

  .csstransitions #site-menu li.menu-item-has-children ul {
    transition: opacity var(--transition-duration),
      visibility var(--transition-duration), margin var(--transition-duration);
    transition-delay: 0.1s;
  }

  #site-menu .menu-item-has-children .menu-item-has-children ul {
    top: -1rem;
    left: 100%;
    margin: 0;
    padding-top: 0;
    font-size: 1em;
  }

  #site-menu .menu-item-has-children .menu-item-has-children ul:before {
    content: none;
  }

  #site-menu .menu-item-has-children li {
    display: block;
    background-color: var(--tagcloud-color);

  }

  #site-menu .menu-item-has-children li:first-child {
    padding-top: 1rem;
    border-radius: 0.2rem 0.2rem 0 0;
  }

  #site-menu .menu-item-has-children .menu-item-has-children li:first-child {
    border-radius: 0 0.2rem 0 0;
  }

  #site-menu .menu-item-has-children li:last-child {
    padding-bottom: 1rem;
    border-radius: 0 0 0.2rem 0.2rem;
  }

  #site-menu .menu-item-has-children .menu-item-has-children li:last-child {
    border-radius: 0 0 0.2rem 0;
  }

  #site-menu .menu-item-has-children li a {
    display: block;
    padding: 0.5rem;
    margin: 0;
  }

  #site-menu .menu-item-has-children li .menu-expand {
    display: none;
  }
}

@media (min-width: 1200px) {
  #site-menu>ul {
    padding-left: 41px;
  }

  #site-menu>ul:after {
    left: 10px;
  }
}

/* 8. Header call to action */
#top .call-to-action .button {
  margin: 0 0 0 0.5rem;
}

#top .call-to-action .button:first-child {
  margin-left: 0;
}

@media (max-width: 991px) {
  #top .call-to-action {
    /* padding-right: 25px; */
    padding-top: 10px;
    text-align: center;
    display: none;
  }

  .mobile-menu-opened #top .call-to-action {
    display: block;
  }
}

@media (min-width: 992px) {
  #top .call-to-action {
    position: relative;
    padding-left: 40px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  #top .call-to-action {
    padding-left: 65px;
  }
}

/* 9. Hero */
#featured {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.error404 #featured {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.home #featured {
  padding-bottom: 0;
}

#featured h1 {
  margin-bottom: 2rem;
}

#featured h1 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}


/*mejoras para countrys*/

.title-header-name {
  text-transform: initial;
}

.subtitle.sub-title-header {
  text-transform: initial;
}

.info_title{
  text-transform: initial;
  margin-top: 20px;
}

a#title_country {
  text-transform: initial;
}

p.title_country_subtitle {
  text-transform: initial;
  color: #d6d2d2;
}

.flag-content {
  margin-top: 50px;
  /* position: relative;
  width: 100%; */
}

.flag-content p {
  text-align: center;
  /* padding: 0.5rem; */
    color: #d6d2d2;
    text-transform: initial;
}

.flag-link {
  width: 100%;
  /* padding: 0rem 0.5rem 0rem 0.5rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  list-style: none;
}

.flag-link a {
  text-transform: initial;
  font-weight: initial;
  width: 60px;
}

.error404 .featured-content h1 {
  font-size: 4.4rem;
  margin-bottom: 0.5rem;
}

@-webkit-keyframes floating-letter {
  from {
    top: 0;
  }

  50% {
    top: -20px;
  }

  to {
    top: 0;
  }
}

@keyframes floating-letter {
  from {
    top: 0;
  }

  50% {
    top: -20px;
  }

  to {
    top: 0;
  }
}

@media (min-width: 768px) {
  #featured {
    padding-bottom: 4rem;
  }

  .error404 #featured {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  /* #featured div[class*="col-md"] h2:last-child,
  #featured div[class*="col-md"] p:last-child,
  #featured div[class*="col-md"] .button:last-child {
    margin-bottom: 0;
  } */

  #featured div[class*="col-md"] h1:last-child,
  #featured div[class*="col-md"] p:last-child,
  #featured div[class*="col-md"] .button:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  /* #featured h2:last-child,
  #featured p:last-child {
    margin-bottom: 0;
  } */

  #featured h1:last-child,
  #featured p:last-child {
    margin-bottom: 0;
  }
}

/* #featured h2 strong {
  color: var(--link-color);
  margin-left: 5px;
} */
#featured h1 strong {
  color: var(--link-color);
  /* margin-left: 5px; */
  text-transform: none;
}

@media (min-width: 992px) {
  #featured {
    /* padding-top: 28px; */
    padding-top: 20px;
  }

  #featured,
  .home #featured {
    /* padding-bottom: 56px; */
    padding-bottom: 25px;
  }

  .single-page #featured,
  .single-post #featured,
  .single-episode #featured {
    /* padding-top: 56px;
		padding-bottom: 72px; */
    padding-top: 50px;
    padding-bottom: 65px;
  }

  .error404 #featured {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media (min-width: 1200px) {
  #featured {
    /* padding-top: 56px; */
    padding-top: 10px;
  }

  #featured,
  .home #featured {
    /* padding-bottom: 84px; */
    padding-bottom: 23px;
  }

  .single-page #featured,
  .single-post #featured,
  .single-episode #featured {
    padding-top: 84px;
    padding-bottom: 112px;
  }

  .error404 #featured {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}

@media (min-width: 1440px) {
  #featured {
    /* padding-top: 30px; */
    padding-top: 10px;
  }

  #featured,
  .home #featured {
    /* padding-bottom: 100px; */
    padding-bottom: 23px;
  }

  .single-page #featured,
  .single-post #featured,
  .single-episode #featured {
    /* padding-top: 112px;
		padding-bottom: 140px; */
    padding-top: 84px;
    padding-bottom: 112px;
  }

  .error404 #featured {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}

#featured .social-navigation {
  position: absolute;
  z-index: 9;
  left: 15px;
  bottom: 215px;
  display: block;
}

.expand-featured-media #featured .social-navigation {
  position: relative;
  top: auto;
  bottom: auto;
  padding-bottom: 56px;
}

/* 11. Featured media */
.featured-media {
  position: relative;
  height: 240px;
  margin-top: 3rem;
  overflow: hidden;
}

.featured-media img {
  position: absolute;
  top: -25%;
  width: 100%;
}

.expand-featured-media .featured-media {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.expand-featured-media .featured-media {
  opacity: 0.3;
}

.expand-featured-media .featured-media img {
  position: relative;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 480px) {
  .featured-media {
    height: 280px;
  }

  .featured-media img {
    top: -30%;
  }
}

@media (min-width: 576px) {
  .featured-media {
    height: 320px;
  }

  .featured-media img {
    top: -35%;
  }
}

@media (min-width: 768px) {
  .featured-media {
    height: 360px;
  }

  .featured-media img {
    top: -40%;
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .featured-media {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 36%;
    height: 100%;
    margin-top: 0;
  }

  .featured-media img {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .featured-media {
    width: 43%;
  }
}

/* 12. Content */
#content {
  /* overflow-x: hidden; */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-sticky #content {
  /* position: relative;
	z-index: 1;
	background-color: inherit; */
  position: relative;
  z-index: 14;
  background-color: inherit;
}

@media (min-width: 768px) {
  #content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  #content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1200px) {
  #content {
    /* padding-top: 5rem; */
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}

/* 13. Home - Intro */
.home #intro-description {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .home #intro-description {
    padding-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .home #intro-description {
    padding-bottom: 4rem;
  }
}

@media (min-width: 1200px) {
  .home #intro-description {
    padding-bottom: 5rem;
  }
}

/* .home #intro-description h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
} */
.home #intro-description h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.feature-box h5,
.feature-box .feature-box-title {
  margin-top: 0.8rem;
}

@media (min-width: 1200px) {

  .feature-box h5,
  .feature-box .feature-box-title {
    margin-top: 1.3rem;
    margin-bottom: 2.3rem;
  }
}

.feature-box>span.mdi {
  float: left;
  margin-right: 1rem;
  font-size: 2rem;
  color: var(--primary-color);
}

@media (min-width: 1200px) {
  .feature-box>span.mdi {
    width: 4rem;
    height: 4rem;
    margin-right: 1.25rem;
    line-height: 4rem;
    font-size: 1.75rem;
    text-align: center;
    color: var(--primary-alt-color);
    background-color: var(--primary-color);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
  }
}

.feature-box p {
  color: #d6d2d2;
}

/* Home - Latest tab section */
.home #intro-description+#latest-tab-container {
  position: relative;
}

.home #intro-description+#latest-tab-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--border-color);
}

.home #latest-tab-container .tab-container {
  margin-bottom: 0;
}

.home #latest-tab-container .tab-container .tab-content {
  padding: 0;
}

/* 15. Various elements */
.tag {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.5rem;
  background-color: #f8f8f8;
  color: var(--link-color);
  border-radius: 3px;
  text-decoration: none;
}

.tag:hover,
.tag:focus {
  background-color: var(--link-color);
  color: #fff;
  text-decoration: none;
}

.pagination {
  margin-top: 1.25rem;
}

.pagination-load-more {
  text-align: center;
}

.share-entry {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--border-color);
}

.share-entry .share-title {
  margin-bottom: 0;
}

.share-entry .share-links {
  margin-left: -0.3rem;
}

.share-entry .share-links a {
  display: inline-block;
  width: 2rem;
  padding: 0.3rem;
  margin: 0 0.3rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.share-entry .share-links a:hover,
.share-entry .share-links a:focus {
  color: var(--link-color);
}

.share-entry .share-links a .mdi:before {
  font-size: 24px;
}

@media (min-width: 480px) {

  .share-entry .share-title,
  .share-entry .share-links {
    display: inline-block;
  }

  .share-entry .share-links {
    margin-left: 0.3rem;
    margin-bottom: 0;
  }
}

.share-entry .categories {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .share-entry .categories a {
    margin: 0.2rem 0 0.5rem 0.2rem;
  }
}

@media (min-width: 992px) {
  .share-entry .categories {
    margin-top: 0;
    text-align: right;
  }
}

.info_aside p{
  text-transform: none;
  color: #d6d2d2;
}

.info_aside ul li{
  padding: 0.4em;
  margin-left: 30px;
  text-transform: initial;
  color: #d6d2d2;
  letter-spacing: 0.05em;
}

.info_aside ul li span{
 color: #ffffff;
 font-weight: bold;
}

.info_aside ul li a{
 color: #ffffff;
 font-weight: bold;
}



ul li p {
  /* color: #d6d2d2; */
  text-transform: none;
}

span.song_post {
  color: white;
  font-weight: bold;
  text-transform: initial;
  font-size: 1.05em;
}

span.about-description {
    color: #d6d2d2;
    text-transform: none;
}

span.contact-description {
    color: #d6d2d2;
}

span.contact-description.web {
    text-transform: lowercase;
}
span.contact-description.email {
    text-transform: lowercase;
}
span.date-time-comment {
  /* color: #757473; */

  font-weight: bold;
}

.box-ui{
padding: 1.5em;
    border-radius: 0.5rem !important;
    margin-bottom: 1.25rem;
    background-color: #0d3232;
    /* -webkit-box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset;
    box-shadow: 0 -4px 0 0 rgba(255, 255, 255, 0.1) inset; */
}

.contact_blog ul {
  margin-top: 10px;
}

.contact_blog p {
  margin-top: 10px;

}

.contact_blog ul li {
  list-style: none;
  margin-top: 5px;
  text-rendering: optimizespeed;
  letter-spacing: 0.05em;
  padding: 0.3em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.author-box-title.info-data {
  text-transform: initial;
}

.about_blog ul li {
  list-style: none;
  margin-top: 10px;
  text-rendering: optimizespeed;
  letter-spacing: 0.05em;
}

.about_blog ul {
  margin-top: 10px;
}

.about_blog p {
  text-transform: none;
  margin-top: 10px;
  margin-left: 0.3em;
}

.div-load-more-coment {
  display: flex;
  justify-content: center;
}

.load-more-plus {
  display: flex;
  justify-content: center;
}

.comment-header {
  display: flex;
  align-items: self-start;
  margin-bottom: 5px;
}

.date-time-comment {
  color: #85fff4d6
}

.i-message-users {
  margin-right: 10px;
}

.i-rating-users {
  margin-top: -3px;
}

#rating-notes {
  color: #fdd663;
  font-weight: 900;
}

.comment-content {
  /* margin-left: 43px;  */
  margin: 0px 0px 0.7rem 43px;
  /* Para alinear con el contenido posterior al ícono */
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;

}

.comment-list-ul li {
  list-style: none;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding: 5px 5px 0px 5px;
  border-bottom: 1.5px solid var(--border-color);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #d6d2d2;
}

/* style songs list */
#single-title,
#playlist-title {
  text-align: center;
}

.song-title {
  margin: 0px 0px 0.7rem 0px;
  text-align: center;
}

.author-box {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1.5px solid var(--border-color);
}

.author-box-image img {
  width: 100%;
}

.author-box .author-box-title {
  margin-bottom: 1rem;
}

.author-box.no-description .author-box-title {
  margin-bottom: 0;
}

.author-box-description p {
  margin-bottom: 0;
}

.author-box {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.post-controls {
  margin-top: 0rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1.5px solid var(--border-color);
}

.post-controls a[rel="prev"],
.post-controls a[rel="next"] {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}

span.site_blog_ {
  text-transform: lowercase;
}

span.email-blog_ {
  text-transform: lowercase;
}

/* .i-rating-star, */
.i-report-site,
.i-web-site,
.i-email-site,
.i-edit-site {
  margin-top: -5px;
  background: #ffffff;
  border-radius: 0.9em;
}

img.i-rating-star {
  margin-top: -5px;
  height: 20px;
  width: 20px;
  user-select: none;
}

/* .i-rating-star:hover,  */
.i-report-site:hover,
.i-web-site:hover,
.i-email-site:hover,
.i-edit-site:hover {
  background: #0d3232;
  transition: color 0.3s ease;
}

.site_blog_icon,
.report_click_audio,
.email-blog_icon,
.edit_blog_icon {
  /* cursor: pointer;
  user-select: none; */
  text-transform: lowercase;
}

.rating-value {
  margin-left: 5px;
  font-weight: bold;
  color: #fdd663;
}

.like-value {
  color: #fdd663;
  font-weight: 900;
}


p.comment-notes {
  letter-spacing: 0.1em;
  text-transform: initial;
  font-family: var(--headings-font);
}

#post_content {
    text-transform: none;
    font-size: 0.9em;
    color: #d6d2d2;
    letter-spacing: 0.05em;
    font-weight: normal;

}

 
span#post_user {
  letter-spacing: 0.1em;
  padding: 0.4rem 0rem 0rem 0rem;

  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

p.comment-publisded {
  margin: 0px 0px 0.5rem 43px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
}

/* .post-controls h5 {
  margin-top: 1.25rem;
} */
.author-box-title {
  /* font-size: 1.25em; */
  font-size: 1.30em;
}

.post-controls .about_blog {
  margin-bottom: 1.25em;
}


@media (min-width: 992px) {
  /* .post-controls .about_blog {
    text-align: right;
  } */

  /* .post-controls .about_blog,
  .post-controls h5
   {
    margin-bottom: 0;
  } */
  .post-controls .about_blog,
  .post-controls,
  .author-box-title {
    margin-bottom: 0;
  }
}

#comments {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--border-color);
}

#comments .comment-form>p {
  margin-bottom: 0.5rem;
}

/* #comments .comment-respond > h5,
#comments .comment-form .comment-notes {
  margin-bottom: 2rem;
} */

.searchform {
  position: relative;
}

.searchform input {
  padding-right: 3rem;
  margin-bottom: 0;
}

.searchform button {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.8rem;
  height: 3.3rem;
  line-height: 3.4rem;
  padding: 0;
  border: 0;
  margin: 0;
  text-align: center;
  text-transform: none;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.searchform button:hover,
.searchform button:focus {
  background-color: transparent;
  color: inherit;
}

.tagcloud a {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem 0.5rem;
  font-family: var(--headings-font);
  background-color: var(--tagcloud-color);
  color: inherit;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: color 0.2s, background-color 0.2s;
  -o-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

.tagcloud a:hover,
.tagcloud a:focus {
  background-color: var(--body-text-color);
  color: var(--body-background-color);
}


@media (min-width: 1200px) {
  .tagcloud a {
    padding: 0.4rem 0.9rem;
    margin-bottom: 0.6rem;
  }
}

.tagcloud a:before {
  content: "";
  opacity: 0.5;
}

/* 16. Sidebar widgets */
.widget {
  /* margin-top: 1.25rem; editado el dia 17 de junio del 2024*/
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1.5px solid var(--border-color);
  border-radius: 0.5rem !important;
  border-color: rgba(230, 230, 230, 0.1);
}

.widget-title {
  font-size: 1.25em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--border-color);
  border-color: rgba(230, 230, 230, 0.1);
}

#sidebar,
.widget-title {
  text-align: center;
}

.widget .textwidget>p:last-child {
  margin-bottom: 0;
}

.widget ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.widget ul ul {
  padding-left: 1.1rem;
}

.widget li {
  margin-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
  letter-spacing: 0.05em;
}

.widget ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
}

.widget ul .current-cat>a {
  font-weight: bolder;
}

.widget ul a:hover,
.widget ul a:focus,
.widget ul .current-cat:before,
.widget ul .current-cat>a {
  /* color: var(--link-color); */
  color: #000000;
  font-weight: 500;
}

.widget_pages li:before,
.widget_archive li:before,
.widget_categories li:before,
.widget_product_categories li:before,
.widget_recent_comments li:before,
.widget_recent_entries li:before,
.widget_nav_menu li:before,
.widget_meta li:before,
.widget_pages li:after,
.widget_archive li:after,
.widget_categories li:after,
.widget_product_categories li:after,
.widget_recent_comments li:after,
.widget_recent_entries li:after,
.widget_nav_menu li:after,
.widget_meta li:after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: -20%;
  margin-right: 0.3em;
}

.widget_pages li:before {
  content: "\F214";
}

.widget_archive li:before,
.widget_product_categories li:before,
.widget_categories li:before {
  content: url("https://cdn.anii.io/svg/musicsingles.svg");
}

.widget_recent_comments li:before {
  content: "\F9EC";
  position: relative;
  top: 2px;
}

.widget_recent_entries li:before {
  content: "\F219";
}

.widget_nav_menu li:before {
  content: "\F534";
}

.widget_meta li:before {
  content: "\F0C3";
}

.widget_media_gallery .gallery {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 2px; */
}

#sidebar .widget_search,
#sidebar .widget_product_search {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.widget .searchform {
  margin-bottom: 0;
}

.widget_subscribe {
  background-color: var(--secondary-color);
  text-align: center;
}


/* Profile */
.user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.profile-card {
  background: #0d3232;
  padding: 30px;
  border-radius: 0.5em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

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

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #2a5298;
}

.profile-welcome {
  margin: 15px 0 5px;
}

.profile-name {
  margin: 15px 0 5px;
  color: white;
  font-weight: bold;
}

.profile-username {
  color: white;
  margin-bottom: 15px;
}

.profile-details p {
    margin: 5px 0;
    color: #d6d2d2;
    letter-spacing: 0.05em;
}

.profile-details {
  margin-bottom: 15px;
}

/* 18. Footer */
#footer {
  text-align: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-sticky #footer {
  position: relative;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin-top: -430px;
}


@media (min-width: 768px) {
  #footer {
    padding-top: 3rem;
    padding-bottom: 0rem;
  }
}

@media (min-width: 992px) {
  #footer {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}

@media (min-width: 1200px) {
  #footer {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
}

.wrapper {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper .footer-widget {
  position: relative;
  width: calc(30% - 30px);
  /* padding-right: 15px;
  padding-left: 15px; */
}

.wrapper .footer-widget:nth-child(1) {
  width: calc(40% - 40px);
  margin-right: 15px;
  margin-left: 15px;
}

.wrapper .footer-widget .logo {
  margin-bottom: 30px;
  vertical-align: middle;
}

.wrapper .footer-widget p {
  margin-bottom: 25px;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #d6d2d2;
}

.wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: solid 0.5px; */
}

.wrapper .footer-widget .socials li {
  list-style: none;
}

.wrapper .footer-widget .socials li a {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  color: #ffffff;
  background-color: rgb(255 255 255 / 4%);
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .socials li a:hover {
  background-color: #037ef3;
}

/* Estilos comunes para todos los iconos */
.socials a:after {
  position: relative;
  margin-top: 5px;
  font-size: 12px;
}

/* Icono de Android */
.socials a[href*="play.google.com"]:after,
.socials a[href*="play.google.com"]:after {
  content: url(https://cdn.anii.io/svg/social/android.svg);
}

/* Icono de Telegram */
.socials a[href*="t.me"]:after,
.socials a[href*="t.me"]:after {
  content: url(https://cdn.anii.io/svg/social/telegram.svg);
}

/* Icono de Whatsapp */
.socials a[href*="www.whatsapp.com"]:after,
.socials a[href*="whatsapp.com"]:after {
  content: url(https://cdn.anii.io/svg/social/whatsapp.svg);
}

/* Icono de Correo Electrónico */
.socials a[href*="mailto:"]:after {
  content: url(https://cdn.anii.io/svg/social/email.svg);
}

.wrapper .footer-widget h6 {
  margin: 10px 0 35px;
  font-size: 1.25em;
}

.wrapper .footer-widget h3 {
  margin: 10px 0 35px;
  font-size: 1.25em;
}

.wrapper .footer-widget .links li {
  list-style: none;
  letter-spacing: 0.05em;
}

.wrapper .footer-widget .links li a {
  text-decoration: none;
  text-transform: initial;
  line-height: 25px;
  transition: all 0.3s ease-out;
  font-weight: normal;
  /* letter-spacing: 0.05em; */
  color: white;
  color: #d6d2d2;
}

.wrapper .footer-widget .links li a:hover {
  /* color: #037ef3; */
  color: #04e9ffe8;
  font-weight: 700;
}

.copyright-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 15px;
  border-top: 1px solid rgba(88, 89, 120, 0.4);
}

.copyright-wrapper p {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-transform: none;
  color: #d6d2d2;
  letter-spacing: 0px;
}

.copyright-wrapper p a {
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease-out;
  color: #ffffffe8;
}

.copyright-wrapper p a:hover {
  /* color: #04e9ffe8; */
  font-weight: 700;
}

@media (max-width: 992px) and (min-width: 768px) {

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: calc(50% - 30px);
  }
}

@media (min-width: 990px) and (max-width: 996px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -500px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -630px;
  }
}

@media (max-width: 768px) {

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: 100%;
    margin: 0 15px 50px;
  }
}

@media (max-width: 319px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -430px;
  }
}

@media (min-width: 320px) and (max-width: 479px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -980px;
  }
}

@media (min-width: 480px) and (max-width: 500px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -900px;
  }
}

@media (min-width: 500px) and (max-width: 560px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -890px;
  }
}

@media (min-width: 560px) and (max-width: 640px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -950px;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .footer-sticky #footer {
    position: relative;
    margin-top: -900px;
  }
}

/* End Footer*/

/*19. Player*/
@media (max-width: 767px) {
  input#tags {
    margin-top: 12px;
  }

  h1 {
    font-size: 1.8em;
  }
}


@media screen and (max-width: 500px) {
  .audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1245;
    border-radius: 0px;
  }

  .footer-sticky #footer {
    position: relative;
    z-index: 1;
    margin-bottom: 75px;
  }

  h1 {
    font-size: 1.6em;
  }

  .msj_title_flex {
    text-align: center;
  }

  #mjs_title_ubi {
    text-align: center;
  }

  .audio-player .controls .main-controls {
    margin-right: 20px;
  }

  .profile-card {
    padding: 20px;
  }

  .profile-welcome {
    font-size: 14px;
  }

  .profile-name {
    font-size: 13px;
  }

  .profile-username {
    font-size: 11px;
  }

  .profile-details {
    margin-bottom: 10px;
  }
}