@import url(//fonts.googleapis.com/css?family=Raleway:300,700);
#side-popup {
  background: #fff;
  border: 0;
  display: block;
  margin-left: 0;
  border-radius: 10px;
  bottom: 50px;
  left: 20px;
  top: auto !important;
  right: auto !important;
  padding: 0;
  position: fixed;
  text-align: right;
  width: 350px;
  z-index: 99999;
  font-family: "Open Sans";
  font-weight: 400;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  box-sizing: border-box;
  background-color: #2ab200;
  border-style: solid;
  border-color: #000000;
  border-width: 0 0 0 0px;
  padding-right: 25px;
  
}
#side-popup img {
  cursor: pointer;
  float: left;
  max-height:70px;
  max-width: 120px;
  width: auto;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
#side-popup p {
  color: #444;
  float: left;
  font-size: 18px;
  margin: 10px;
  width: auto;
  padding: 0px 0px 0 0;
  line-height: 20px;
}
#side-popup p a {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 0;
  background-color: transparent;
}
#side-popup p small {
  display: block;
  font-size: 10px;
  margin-bottom: 8px;
}
#side-popup #side-popup-close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.2;
  background: url(https://s3.amazonaws.com/fomo-static-assets/close.png);
  width: 16px;
  height: 16px;
  background-size: cover;
}
#side-popup #side-popup-close:hover {
  opacity: 1;
}
#side-popup.fade-in {
  opacity: 0;
  animation-name: nFadeIn;
  animation-duration: 2s;
  animation-fill-mode: both;
}
#side-popup.fade-out {
  opacity: 0;
  animation-name: nFadeOut;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes nFadeIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes nFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes nFadeIn {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  #side-popup {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100%;
    box-sizing: border-box;
    max-width: auto !important;
    margin-left: 0;
    height: auto;
    padding: 0;
    text-align: right;
    border-radius: 10px 10px 0px 0px;
  }
  #side-popup.fade-in {
    opacity: 0;
    animation-name: nFadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  #side-popup.fade-out {
    opacity: 0;
    animation-name: nFadeOut;
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  #side-popup img {
    max-width: 20%;
    max-height: auto;
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-right: 10;
    border-radius: 0px;
  }
  #side-popup p {
    font-size: 11px;
    width: 85%;
    float: left;
    margin: 0px;
    padding: 10px;
  }
  #side-popup p a {
    font-size: 14px;
    height: auto;
    width: auto;
    margin-left: 0px;
    float: none;
    padding: 0px;
    margin-top: 0px;
  }

  @keyframes nFadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
      bottom: 0;
    }
  }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 1, 0px) rotate3d(0, 1, 0, 180deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 360deg);
    animation-timing-function: ease-in;
  }
}