* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.2s linear;
}
.audio-player {
  height: 85px;
  width: 100%;
  background-color: #fff !important;
  box-shadow: 0 0 3px rgb(133 255 244);
  overflow: hidden;
  display: grid;
  grid-template-rows: 20px auto;
  max-width: 500px;
}

.audio-player .timeline {
  background: #0a0a0aa3;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #0008;
  overflow: hidden;
}

.audio-player .timeline .progress {
  position: absolute; /*add new logic*/
  background-color: #0e2d2d;
  height: 100%;
  transition: 0.25s;
  width: 0%;
}

/* .audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
} */
.audio-player .controls {
  display: flex;
  /* justify-content: space-around;
  align-items: stretch; */
}

.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #0000;
  border-left: 13px solid white;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}

.audio-player .controls .main-audio-player {
  display: flex;
  padding: 0 25px;
}

.audio-player .controls .main-controls {
  display: flex;
  flex: 1;
  justify-content: space-around;
}
/*flex*/
/*Colores*/
@media (prefers-color-scheme: dark) {
  .audio-player {
    background-color: white !important;
  }
}

/* .flex-single {
new version anii
  margin-top: -20px;
} */
#loading-icon > img {
  background: #0e2d2d;
  border-radius: 50%;
  height: 53px;
  width: auto;
  user-select: none;
}

#IconPlay > svg {
  background: #0e2d2d;
  border-radius: 50%;
  fill: #fff;
  height: 53px;
  width: auto;
  user-select: none;
}

#IconVol > svg {
  /* height: 30px; */
  height: 35px;
  width: auto;
  user-select: none;
}

#IconLike > svg {
  /* height: 27px; */
  height: 32px;
  width: auto;
  user-select: none;
}

#IconReport > svg {
  /* height: 31.5px; */
  height: 33.5px;
  width: auto;
  user-select: none;
}

#IconFollow > svg {
  height: 36px;
  width: auto;
  user-select: none;
}


svg.i-sync-load {
  /* height: 28px; */
  height: 30.5px;
  width: auto;
  user-select: none;
    fill: #a7a6a6de;
}

#svg-icon-in {
  /* fill:#afaa9bc2; */
  /* fill: #92918fc2; */
  fill: #a7a6a6de;
  user-select: none;
}

#svg-icon-in:hover {
  /* fill: #768383cc; */
  fill:#129191fc;
  transform: scale(1.1);
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}
svg.i-sync-load:hover{
  fill:#129191fc;
  transform: scale(1.1);
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}

svg.i-go {
  fill: lightskyblue;
}
svg.i-copy {
  fill: aliceblue;
}

.i-go:hover {
  fill: #768383cc;
  transform: scale(1.1);
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}

.i-copy:hover {
  fill: #768383cc;
  transform: scale(1.1);
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}

/* Estilo por defecto */
span.search-icon-class {
  position: absolute;
  right: 0;
  top: 0px;
  height: 42px;
  line-height: 42px;
  padding: 0px 16px;
  cursor: pointer;
  /* transition: transform 0.2s, color 0.2s; */
}
.search-icon-class:hover {
  color: blue; /* Cambia el color del ícono a azul */
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
  cursor: pointer; /* Cambia el cursor a un puntero */
  transform: scale(1.1); /* Aumenta ligeramente el tamaño del ícono */
}

#search-two .search-icon-class {
  right: 17px;
}


/* Media query para 992 píxeles o menos */
@media (max-width: 990px) {
  span.search-icon-class {
    margin-top: 10px;
    height: 42px;
  }
  input#input-search-id {
    width: 100%;
    text-align: center;
  }
  
}

.flex-single .heading {
  text-align: center;
  padding: 10px;
  color: #333;
  font-size: 35px;
  border-bottom: 3px solid #333;
}

/* .flex-single .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3px;
  padding: 10px 0%;
} */

.box-container li {
  list-style: none;
}
.flex-single .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px 2px;
  /* padding: 10px 0%; */
}
.flex-single .box-container.active {
  padding-bottom: 150px;
}

.flex-single .box-container .box {
  border-radius: 0.3rem !important;
  background-color: #fff !important;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
  box-shadow: 0 5px 10px rgb(255 255 255 / 20%);
  padding: 10px;
  cursor: pointer;
  margin-bottom: 0px;
}

.flex-single .box-container .box .image {
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
}

.flex-single .box-container .box .image img {
  object-fit: scale-down;
  height: 100%;
  width: 100%;
  filter: saturate(165%);
  image-rendering: -webkit-optimize-contrast;
}

.flex-single .box-container .box .image .play {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}

.flex-single .box-container .box:hover .image .play {
  display: flex;
}

.flex-single .box-container .box .image .play i {
  font-size: 100px;
  color: #fff;
}

/* .flex-single .box-container .box .content {
  margin-top: 12px;
} */

.flex-single .box-container .box .content h3 {
  font-size: 11.5px;
  color: #000000b8;
  text-align: center;
}

.flex-single .box-container .box .content h2 {
  font-size: 11.5px;
  color: #000000b8;
  text-align: center;
}

.flex-single .box-container .box .content p {
  font-size: 11.5px;
  color: #000000b8;
  text-align: center;
}
.flex-single .box-container .box .content {
  /* margin-top: 12px;
  font-size: 11.5px;
  color: #000000b8;
  text-align: center; */

  font-size: 11.5px;
    color: #000000b8;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (prefers-color-scheme: dark) {
  .flex-single .box-container .box {
    background-color: white !important;
  }
}
.music-player {
  position: fixed;
  bottom: -125px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
}

.music-player.active {
  bottom: 0;
}

.music-player .music-title {
  font-size: 25px;
  margin-bottom: 5px;
  border-top: 3px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
  color: #333;
  padding: 10px;
}

.music-player audio {
  width: 100%;
}

.music-player audio::-webkit-media-controls-enclosure {
  border-radius: 0;
  background: #fff;
}

.music-player #close-player {
  position: absolute;
  top: -50px;
  right: 5px;
  height: 50px;
  width: 55px;
  line-height: 50px;
  cursor: pointer;
  font-size: 30px;
  color: #333;
  background: #fff;
  border: 3px solid #333;
  border-bottom: none;
  text-align: center;
}

/* .comment-input-users,
.list-comment-users {
  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;
} */
#g-recaptcha {
  margin-bottom: 15px;
}
.comment-input-users p {
  letter-spacing: 0.05em;
  /* color: #d6d2d2; */
  color: #d6d2d2;
}
.add_blobal {
  margin-top: -16px;
}
form#commentform {
  margin-top: 10px;
}

.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating>input {
  display: none;
}

.rating>label {
  cursor: pointer;
  width: 37px;
  height: 37px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}


.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji-wrapper:before {
  top: 0;
  /* background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%); */
}

.emoji-wrapper:after {
  bottom: 0;
  /* background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%); */
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}


.emoji img {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked~.emoji-wrapper>.emoji {
  transform: translateY(-100px);
}

#rating-2:checked~.emoji-wrapper>.emoji {
  transform: translateY(-200px);
}

#rating-3:checked~.emoji-wrapper>.emoji {
  transform: translateY(-300px);
}

#rating-4:checked~.emoji-wrapper>.emoji {
  transform: translateY(-400px);
}

#rating-5:checked~.emoji-wrapper>.emoji {
  transform: translateY(-500px);
}

.feedback {
  background-color: #7272720a;
  width: 100%;
  padding: 20px;
  border-radius: 0.9em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
  .audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1245;
    border-radius: 0px;
    grid-template-rows: 15px auto;
  }
  .title-songs{
    font-size: x-small;
  }
  #IconPlay > svg {
    height: 48px;
    width: auto;
  }
  #loading-icon > img {
    height: 48px;
    width: auto;
  }
  #IconVol > svg {
    height: 30px;
    width: auto;
  }

  #IconLike > svg {
    height: 28px;
    width: auto;
  }
  #IconFollow > svg{
    height: 30px;
    width: auto;
  }

  #IconReport > svg {
    height: 28px;
    width: auto;
  }

  svg.i-sync-load {
    height: 28px;
    width: auto;
  }
  /* .footer-sticky #footer {
    position: relative;
    z-index: 1;
    margin-bottom: 75px;
    padding-top: 50px;
    margin-top: -1000px;
  } */

  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;
  }
}
@media (min-width: 1800px) {
  input#input-search-id {
    width: 267px;
  }
}
@media (min-width: 1400px) {
  .audio-player {
    height: 90px;
    grid-template-rows: 20px auto;
  }
  .title-songs {
    font-size: small;
  }
}
@media (min-width: 1400px) and (max-width: 1800px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  }
  .flex-single .box-container .box {
    border-radius: 0px;
    padding: 5px;
  }
  input#input-search-id {
    width: 265px;
  }
}
@media (min-width: 1199px) and (max-width: 1400px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(127px, 1fr));
  }
  .flex-single .box-container .box {
    border-radius: 0px;
    padding: 5px;
  }
  input#input-search-id {
    width: 265px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
  .flex-single .box-container .box {
    border-radius: 0px;
    padding: 5px;
  }
  input#input-search-id {
    width: 260px;
  }
}
@media (min-width: 500px) {
  /* Aplicar border-radius a partir de 500px */
  .audio-player {
    border-radius: 0.5em;
  }
  .i-message-users{
    width:34px;
    height: 34px;
  }
}

@media (max-width: 768px) and (min-width: 600px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  }
}

@media (max-width: 600px) and (min-width: 500px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  #featured {
    padding-top: 1rem;
  }
}
@media (max-width: 500px) and (min-width: 450px) {
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  }
  .i-message-users{
    width:33px;
    height: 33px;
  }
  #featured {
    padding-top: 1rem;
  }
  .flex-single .box-container .box {
    padding: 5px;
  }
}
@media (max-width: 450px) and (min-width: 412px) {
  #featured {
    padding-top: 0.8rem;
  }
  .flex-single .box-container .box {
    padding: 5px;
   }
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
  .flex-single .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
  }
  .flex-single .box-container .box .image {
    height: 74px;
  }
  .prev-post.col-12.col-lg-6.col-xl-5 ul li {
    margin-top: 5px;
    font-size: 00.99em;
  }
  .next-post.col-12.col-lg-6.col-xl-5.offset-xl-2 ul li {
    margin-top: 5px;
    font-size: 00.99em;
  }
  .flex-single .box-container .box .content h2 {
    font-size: 11.5px;
  }

  .i-message-users{
    width:32px;
    height: 32px;
  }


  h1 {
    font-size: 1.7em;
  }

  h2{
  font-size: 1.3em;
  }

  h3{
    font-size: 1.2em;
  }

  .button{
    font-size: 00.99em;

  }
  
  .widget-title {
    font-size: 1.3em;
  }

  .tagcloud a {
    font-size: 00.99em;
  }

  p.subtitle {
    font-size: 00.99em;
  }

  .comment-input-users p {
    letter-spacing: 0.05em;
    font-size: 00.99em;
  }

  .comment-list-ul li {
    font-size: 00.99em;
  }

  input#submit {
    font-size: 00.99em;
  }

  .info_aside p {
    font-size: 00.99em;
  }
  .c-group-content p {
    font-size: 00.99em;
  }

  .c-group-content-link a {
    width: 80px;
  }

  .info_aside ul li{
    font-size: 00.99em;
  }

  .info_aside ol li{
    font-size: 00.99em;
  }

  .c-group-content span {
    font-size: 00.99em;
  }

  #mjs_title_ubi {
    font-size: 00.99em;
  }

  .wrapper .footer-widget p {
    font-size: 00.99em;
  }

  .wrapper .footer-widget .links li a {
    font-size: 00.99em;
  }

  .wrapper .footer-widget h6 {
    font-size: 1.3em;
  }

  #site-menu ul ul a {
    font-size: 00.99em;
  }
  #site-menu a {
    font-size: 00.99em;
  }

  input#input-search-id {
    font-size: 00.99em;
  }
  
}
@media (max-width: 412px) and (min-width: 300px) {
  #featured {
    padding-top: 0.7rem;
  }
  .flex-single .box-container .box {
    padding: 5px;
  }
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  }
  #email-notes, .date-time-comment {
    font-size: 0.9em;
  }

  .i-message-users{
    width:30px;
    height: 30px;
  }

  .prev-post.col-12.col-lg-6.col-xl-5 ul li {
    margin-top: 7px;
    font-size: 00.98em;
  }
  .next-post.col-12.col-lg-6.col-xl-5.offset-xl-2 ul li {
    margin-top: 7px;
    font-size: 00.98em;
  }
  .flex-single .box-container .box .content h2 {
    font-size: 10.5px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2{
  font-size: 1.3em;
  }

  h3{
    font-size: 1.2em;
  }

  .button{
    font-size: 00.98em;

  }
  
  .widget-title {
    font-size: 1.3em;
  }

  .tagcloud a {
    font-size: 00.98em;
  }

  p.subtitle {
    font-size: 00.98em;
  }

  .comment-input-users p {
    letter-spacing: 0.05em;
    font-size: 00.98em;
  }

  .comment-list-ul li {
    font-size: 00.98em;
  }

  input#submit {
    font-size: 00.98em;
  }

  .info_aside p {
    font-size: 00.98em;
  }

  .c-group-content p {
    font-size: 00.98em;
  }

  .c-group-content-link a {
    width: 70px;
  }
  .info_aside ul li{
    font-size: 00.98em;
  }

  .info_aside ol li{
    font-size: 00.98em;
  }

  .c-group-content span {
    font-size: 00.98em;
  }

  #mjs_title_ubi {
    font-size: 00.98em;
  }

  .wrapper .footer-widget p {
    font-size: 00.98em;
  }

  .wrapper .footer-widget .links li a {
    font-size: 00.98em;
  }

  .wrapper .footer-widget h6 {
    font-size: 1.3em;
  }

  #site-menu ul ul a {
    font-size: 00.98em;
  }
  #site-menu a {
    font-size: 00.98em;
  }

  input#input-search-id {
    font-size: 00.98em;
  }

  .flex-single .box-container .box .image {
    height: 80px;
  }

}
@media (max-width: 300px) and (min-width: 280px) {
  #featured {
    padding-top: 0.5rem;
  }
  .flex-single .box-container .box {
    padding: 5px;
}
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  #email-notes, .date-time-comment {
    font-size: 0.9em;
  }
  
  .i-message-users{
    width:29px;
    height: 29px;
  }

  .prev-post.col-12.col-lg-6.col-xl-5 ul li {
    margin-top: 7px;
    font-size: 00.95em;
  }
  .next-post.col-12.col-lg-6.col-xl-5.offset-xl-2 ul li {
    margin-top: 7px;
    font-size: 00.95em;
  }
  .flex-single .box-container .box .content h2 {
    font-size: 10px;
  }
  
  h1 {
    font-size: 1.4em;
  }

  h2{
  font-size: 1.2em;
  }

  h3{
    font-size: 1.1em;
  }

  
  .button{
    font-size: 00.95em;
  }
  
  .widget-title {
    font-size: 1.2em;
  }

  .tagcloud a {
    font-size: 00.95em;
  }

  p.subtitle {
    font-size: 00.95em;
  }

  .comment-input-users p {
    letter-spacing: 0.05em;
    font-size: 00.95em;
  }

  .comment-list-ul li {
    font-size: 00.95em;
  }

  input#submit {
    font-size: 00.95em;
  }

  .info_aside p {
    font-size: 00.95em;
  }

  .c-group-content p {
    font-size: 00.95em;
  }

  .c-group-content-link a {
    width: 75px;
  }

  .info_aside ul li{
    font-size: 00.95em;
  }

  .info_aside ol li{
    font-size: 00.95em;
  }

  .c-group-content span {
    font-size: 00.95em;
  }

  #mjs_title_ubi {
    font-size: 00.95em;
  }

  .wrapper .footer-widget p {
    font-size: 00.95em;
  }

  .wrapper .footer-widget .links li a {
    font-size: 00.95em;
  }

  .wrapper .footer-widget h6 {
    font-size: 1.2em;
  }

  #site-menu ul ul a {
    font-size: 00.95em;
  }
  #site-menu a {
    font-size: 00.95em;
  }

  input#input-search-id {
    font-size: 00.95em;
  }

  .flex-single .box-container .box .image {
    height: 75px;
  }
}
/* @media (max-width: 280px) and (min-width: 100px)  */
@media (max-width: 280px){

  #featured {
    padding-top: 0.5rem;
  }
  .flex-single .box-container .box {
    padding: 5px;
  }
  .flex-single .box-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .i-sync-load{
    display: none;
  }


  #email-notes {
    font-size: 0.8em;
  }

  .prev-post.col-12.col-lg-6.col-xl-5 ul li {
    margin-top: 7px;
    font-size: 00.90em;
  }

  .next-post.col-12.col-lg-6.col-xl-5.offset-xl-2 ul li {
    margin-top: 7px;
    font-size: 00.90em;
  }
  .flex-single .box-container .box .content h2 {
    font-size: 9px;
  }

  h1 {
    font-size: 1.2em;
  }

  h2{
  font-size: 1.1em;
  }

  h3{
    font-size: 1em;
  }
  
  .button{
    font-size: 00.90em;
  }
  
  .widget-title {
    font-size: 1.1em;
  }

  .tagcloud a {
    font-size: 00.90em;
  }

  p.subtitle {
    font-size: 00.90em;
  }

  .comment-input-users p {
    letter-spacing: 0.05em;
    font-size: 00.90em;
  }

  .comment-list-ul li {
    font-size: 00.90em;
  }

  input#submit {
    font-size: 00.90em;
  }

  .info_aside p {
    font-size: 00.90em;
  }

  .c-group-content p {
    font-size: 00.90em;

  }

  .c-group-content-link a {
    width: 60px;
  }

  .info_aside ul li{
    font-size: 00.90em;
  }

  .info_aside ol li{
    font-size: 00.90em;
  }

  .c-group-content span {
    font-size: 00.90em;
  }

  #mjs_title_ubi {
    font-size: 00.90em;
  }

  .wrapper .footer-widget p {
    font-size: 00.90em;
  }

  .wrapper .footer-widget .links li a {
    font-size: 00.90em;
  }

  .wrapper .footer-widget h6 {
    font-size: 1.1em;
  }

  #site-menu ul ul a {
    font-size: 00.90em;
  }
  #site-menu a {
    font-size: 00.90em;
  }

  input#input-search-id {
    font-size: 00.90em;
  }

  .flex-single .box-container .box .image {
    height: 70px;
  }

}
