/*
GRIS grupperejse prisberegning
(C) Check Point Travel
*/
/* 
    Created on : May 23, 2019, 10:44:20 AM
    Author     : dongfang
*/

body {
   margin: 0; 
   padding: 0;
}

#splash {
   position: fixed;
   margin-left: auto;
   width: 50%;
   height: auto;
   top: 10%;
   left: 25%;
   z-index: -100;
   animation: moment-on 1s linear 2s;
   animation-fill-mode: forwards;
   text-align: center;
}

#wrapper {
   opacity: 0;
   animation: moment-off 0s linear 2s;
   animation-fill-mode: forwards;
}

#content {
   opacity: 0;
   animation: moment-off 0s linear 2s;
   animation-fill-mode: forwards;
}

@keyframes moment-on {
   from {opacity: 1;} 
   10% {opacity: 0.1;}
   to {opacity: 0;}
}

@keyframes moment-off {
   from {opacity: 0;} 
   to {opacity: 1;}
}
