﻿body {
    background: #f1f1f1;
    font-family: arial;
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

span {
    display: block;
    padding: 35px 0;
    font-size: 17px;
}

.frame {
    margin: 250px auto;
    max-width: 470px;
    min-height: 158px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.4);
    background: #000e31;
    padding-bottom: 10px;
    text-align: center;
}

.logo_1 {
    display: inline-block;
    vertical-align: middle;
}

.logo_2 {
    display: inline-block;
    vertical-align: middle;
}

.loading_gif {
    display: inline-block;
    width: 50px;
    height: 37px;
    /*background: url(/Assets/images/layout/ajax-loader_blue.gif) center 0 no-repeat;*/
    vertical-align: middle;
    margin: 0 11px 0 6px;
}

#countdown {
    display: inline-block;
    width: 20px;
    height: 19px;
    vertical-align: middle;
    margin: 0 11px 0 6px;
    font-weight: bold;
}

.spinner {
  margin: 7px auto 0;
  width: 50px;
  text-align: center;
}

.spinner > div {
  width: 11px;
  height: 11px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

@media only screen and (max-width: 410px) {
    .loading_gif{
        display:block;
        width: auto;
    }
    
    span{
        padding: 20px 0;
    }

    .frame {
        margin: 100px auto;
    }
}