/* Mixins
================================================== */
/* Breakpoints
================================================== */
/* Warning messages
================================================== */
.warning {
  display: none;
  background: #ffa500;
  color: #000;
  text-align: center;
  margin: 0;
  font-weight: bold;
  z-index: 9999;
  position: fixed;
  width: 100%;
  padding: 1em;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.warning a {
  text-decoration: underline;
  color: #000 !important;
}
.warning > span {
  display: inline-block;
}

.nojs-warn {
  top: 0;
  display: block;
}

.ie10 .datedbrowser-warn,
.ie11 .datedbrowser-warn {
  top: 0;
  display: block;
}

.warning.privacy-popup {
  bottom: 0;
}
.warning.privacy-popup .btn {
  margin: 1em;
}
.warning.privacy-popup.active {
  display: block;
}

/* Rotate messge
================================================== */
@keyframes smartphone {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(-90deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotatemessage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: -99;
  text-align: center;
}
.rotatemessage p {
  margin-bottom: 0.75em;
}
.rotatemessage .icon {
  width: 3em;
  transition: 2s;
  transform: rotate(0deg);
  animation: smartphone 2s ease-in-out infinite;
}
@media screen and (orientation: landscape) and (max-width: 700px) {
  .rotatemessage {
    pointer-events: auto;
    opacity: 1;
    z-index: 999;
    /*
    		.icon {
    			@include transform(rotate(0));
    		}
    */
  }
}