#md {
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  opacity: 1;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  visibility: visible;
}
#md.h {
  opacity: 0;
}
#md[data-m="0"] {
  width: 0px;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#md > div {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
  -webkit-transition: transform .3s;
  transition: transform .3s;
}	
#md > div > span#cb {
  padding:0px;
  position: absolute;
  right: -18px;
  top: -18px;
  height: 16px;
  width: 16px;
  text-align: center;
  display: block;
  background:url(https://www.gofast.swiss/assets/img/mdx2.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 1020px) {
  #md > div > span#cb {
	background:url(https://www.gofast.swiss/assets/img/mdx2.png);
    position: fixed;
    right: 12px;
    top: 12px;
    width: 20px;
    height: 20px;
    margin: 4px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    -webkit-transition: top 0.2s ease-out;
    transition: top 0.2s ease-out;
  }
  #md.s > div > span#cb {
    top: 12px;
  }
}
#md > div > div {
  -webkit-transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transform: scale(1);
  opacity: 1;
}
#md > div > div > div.mod-share {
  display: none
}
#md[data-m="0"] > div > div {
  transform: scale(0.75);
  opacity: 0;
}
#md[data-m^="adv100th_"] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#md[data-m^="adv100th_"] > div {
  max-width: 960px;
  display: -webkit-flex;
  display: flex;
  align-items: center; /*webkit for IE*/
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  height: auto;
}
#md[data-m^="adv100th_"] > div > span#cb {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  transition-delay: 1s;
  opacity: 1;
}
#md[data-m^="adv100th_"] > div > div {
  width: 100%;
  position: relative;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.95);
  animation: bounceIn 0.8s ease-out forwards;
}
#md[data-m^="adv100th_"] > div > div > div { /*//:not(#cb)*/
  padding: 0;
  background: rgb(0,150,220);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
#md[data-m^="adv100th_"] .ani {
  position: absolute;
  left: 0;
  top: 0;
  display:none;
  width: 0px;
  height: 0px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#md[data-m^="adv100th_"] .ani2 {
  position: absolute;
  left: 0;
  top: 0;
  display:none;
  width: 0px;
  height: 0px;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.075);
  }
  80% {
    opacity: 1; transform: scale(0.975);
  }
  100% {
    opacity: 1; transform: scale(1);
  }
}
.rotate-in-down-left {
  animation: rotate-in-down-left 1s ease;
  animation-fill-mode: forwards;
}
@keyframes rotate-in-down-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotate-in-up-left {
  animation: rotate-in-up-left 1s ease;
  animation-fill-mode: forwards;
}
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.roll-in {
  animation: roll-in 1s ease;
  animation-fill-mode: forwards;
}
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.roll-out {
  animation: roll-out 1s ease;
  animation-fill-mode: forwards;
}
@keyframes roll-out {
    0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.fade-in-left {
  animation: fade-in-left 1s ease;
  animation-fill-mode: forwards;
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-out-right {
  animation: fade-out-right 1s ease;
  animation-fill-mode: forwards;
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}
.bounce-in {
  animation: bounce-in 1s ease;
  animation-fill-mode: forwards;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { opacity: 1; transform: scale(.9); }
  100% { opacity: 1; transform: scale(1); }
}
.bounce-out {
  animation: bounce-out 1s ease;
  animation-fill-mode: forwards;
}
@keyframes bounce-out {
  0% { opacity: 1; transform: scale(1); }
  25% { opacity: 1; transform: scale(.95); }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(.3);
  } 
}
.pulse-in {
  animation: pulse-in 0.75s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes pulse-in {
  0%   { transform: scale(0.975); }
  25%  { transform: scale(1.015); }
  50%  { transform: scale(0.975); }
  75%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}