#loading
{
    display : none;
}
#loading.show
{
    display : block;
    position : fixed;
    z-index: 100;
    background-image : url('ajax-loader.gif');
    /*opacity : 0.4;*/
    background-repeat : no-repeat;
    background-position : center;
    left : 0;
    bottom : 0;
    right : 0;
    top : 0;
}
#loadinggif.show
{
    left : 50%;
    top : 50%;
    position : absolute;
    z-index : 101;
    width : 32px;
    height : 32px;
    margin-left : -16px;
    margin-top : -16px;
}

.atnCard {
    background-color: transparent;
    width: 250px;
    height: 75px;
    cursor:pointer;
}

.atnCard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.atnCard:hover .atnCard-inner {
    transform: rotateY(360deg);
}

.atnCard-front {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    font-style: oblique;
    font-size: 23px;
    background-color: #F88017;
    color: white;
    text-decoration:none;
}
.atnCard-front a{
    color: white;
    text-decoration:none;
}
@keyframes jignotekf {
  0% {
    box-shadow: -5px -5px 10px #578ea5;
  }
  100% {
    box-shadow: 5px 5px 10px #578ea5;
  }
}