/* ========================CARRUSEL=================================*/
body {
  margin: 0px;
  font-family: "Muli", sans-serif;
}

:root {
  --carousel-item-height: 250px;
}
.carousel {
  width: 100%;
  overflow-x: scroll;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  scroll-behavior: smooth;
  background-color: #f2f2f2;
}
.carousel__container {
  white-space: nowrap;
  margin: 70px 0px;
  padding-bottom: 10px;
}
.carousel-item {
  background-color: #000000;
  width: 200px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 10px;
  display: inline-block;
  cursor: pointer;
  transition: 450ms all;
  transform-origin: center left;
  position: relative;
}
.carousel-item:hover ~ .carousel-item {
  transform: translate3d(100px, 0, 0);
}
.carousel__container:hover .carousel-item {
  opacity: 0.3;
}
.carousel__container:hover .carousel-item:hover {
  transform: scale(1.5);
  opacity: 1;
}
.carousel-item__img {
  width: 200px;
  height: var(--carousel-item-height);
  object-fit: cover;
}
.carousel-item__details {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  font-size: 10px;
  color: #f2f2f2;
  opacity: 0;
  transition: 450ms opacity;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  white-space: normal;
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.carousel-item__details:hover {
  opacity: 1;
}
.carousel-item__details--title {
  font-size: 15px;
}
.carousel-item__details--subtitle {
}
.carousel-item__details--icons {
  color: #ff0000;
}
.carousel::-webkit-scrollbar {
  height: 5px;
}

.carousel::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.carousel::-webkit-scrollbar-track-piece {
  max-width: 100px;
}
.carousel::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: rgb(255, 0, 0);
}
.scroll-left {
  display: block;
  position: absolute;
  top: calc(var(--carousel-item-height) - 30px);
  left: 0;
  z-index: 1;
}
.scroll-right {
  display: block;
  position: absolute;
  top: calc(var(--carousel-item-height) - 30px);
  right: 0;
  z-index: 2;
}
.scroll-chevron {
  font-size: 2.5rem;
  cursor: pointer;
  color: #1900ff;
}



.main {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f2f2f2;
}

@media screen and (max-width: 600px) {
  .main {
    padding: 10px;
  }
}


@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }

}
@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */

  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }

}
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ 

  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }

}


@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ 

  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }

}
@media (min-width:1281px) { /* hi-res laptops and desktops */ 

  .main {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
  }}




/* ========================BOTON WSP=================================*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:18px;
	right:140px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}


.fa-play-circle{
  color: #ff0000;
}


/* ========================BOTON WSP=================================*/


/* ========================SECCION NOTICIAS=================================*/



/* ========================BOTON NOTICIAS=================================*/
.btn {
  border: none; 
  color: white; 
  padding: 14px 28px; 
  cursor: pointer; 
  border-radius: 5px; 
  text-align: center;
}

.primary {background-color: #002955;} 

