@font-face {
  font-family: 'myFont';
  src: url("/fonts/Poppins-Regular.ttf");
}
@keyframes overlayanimation1 {
  0% {
    transform: perspective(1500px) rotateY(90deg);
  }
  10% {
    transform: perspective(1500px) rotateY(0deg);
  }
  90% {
    transform: perspective(1500px) rotateY(0deg);
  }
  100% {
    transform: perspective(1500px) rotateY(-90deg);
  }
}
@keyframes overlayanimation2 {
  40% {
    transform: perspective(1500px) rotateX(0deg);
  }
  45% {
    transform: perspective(1500px) rotateX(-30deg);
  }
  55% {
    transform: perspective(1500px) rotateX(30deg);
  }
  60% {
    transform: perspective(1500px) rotateX(0deg);
  }
}
.animation1 {
  animation-name: overlayanimation1;
  animation-duration: 10s;
  animation-repeat: infinite;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-fill-mode: none;
}
.animation2 {
  animation-name: overlayanimation2;
  animation-duration: 10s;
  animation-repeat: infinite;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-fill-mode: none;
}
.box-bottom {
  padding: 5px 20px 5px 75px;
  font-weight: bold;
  background-color: #2e3e4e;
  height: 70px;
}
.slide {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 20px 30px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  color: #DDD;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, .7);
  backdrop-filter: blur(10px);
}
.box-bottom .network-limited {
  position: absolute;
}
.slide.WhatsApp .box-bottom {
  background-color: #37bb23;
}
.slide.WhatsApp .box-bottom::after {
  content: "\e900";
  font: normal normal normal 12px/1 medias;
  font-size: 12px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
.slide.Messenger .box-bottom {
  background-color: #006AFF;
}
.slide.Messenger .box-bottom::after {
  content: "\e90b";
  font: normal normal normal 12px/1 medias;
  font-size: 12px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
.slide.Facebook .box-bottom {
  background-color: #4267B2;
}
.slide.Facebook .box-bottom::after {
  content: "\e904";
  font: normal normal normal 12px/1 medias;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
.slide.SMS .box-bottom {
  background-color: #5BC236;
}
.slide.SMS .box-bottom::after {
  content: "\e90c";
  font: normal normal normal 12px/1 medias;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
.slide.Form .box-bottom {
  background-color: #21AABD;
}
.slide.Form .box-bottom::after {
  content: "\f15c";
  font: normal normal normal 12px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
.slide.form .box-bottom {
  background-color: #21AABD;
}
.slide.form .box-bottom::after {
  content: "\f15c";
  font: normal normal normal 12px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  float: right;
  padding-top: 12px;
}
#allslides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation-name: animation;
  animation-duration: 10s;
  animation-repeat: infinite;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-fill-mode: none;
}
.hashtag {
	color: #66add6;
}
.w1000px {
    width: 1000px;
}
@keyframes animation {
  0% {
    transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
  }
  50% {
    transform: perspective(1500px) rotateY(5deg) rotateX(-2deg);
  }
  100% {
    transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
  }
}