﻿#seatmapWidgetContainer {
    /*position: fixed;*/
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99998;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: auto;
}

    #seatmapWidgetContainer > div {
        width: 1280px;
        height: auto;
        /*overflow-y: scroll;*/
        position: relative;
        margin: 0 auto;
        padding: 5px 20px 13px 20px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background: #fff;
    }




/* Load Animation
 http://www.alessioatzeni.com/blog/css3-loading-animation-loop/
---------------------------------------------*/
#smwLoadingContainer {
    width: 106px;
    height: 39px;
    position: fixed;
    top: 45%;
    left: 45%;
    padding: 13px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #ffa500;
    z-index: 9998;
}

.smwHidden {
    display: none;
    pointer-events: none;
}

.smwBarlittle {
    background-color: #2187e7;
    background-image: -moz-linear-gradient(45deg, #2187e7 25%, #a0eaff);
    background-image: -webkit-linear-gradient(45deg, #2187e7 25%, #a0eaff);
    border-left: 1px solid #111;
    border-top: 1px solid #111;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    width: 10px;
    height: 10px;
    float: left;
    margin-left: 5px;
    opacity: 0.1;
    -moz-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-animation: smwMove 1s infinite linear;
    -webkit-animation: smwMove 1s infinite linear;
    z-index: 9999;
}

#smwBlock_1 {
    -moz-animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

#smwBlock_2 {
    -moz-animation-delay: .3s;
    -webkit-animation-delay: .3s;
}

#smwBlock_3 {
    -moz-animation-delay: .2s;
    -webkit-animation-delay: .2s;
}

#smwBlock_4 {
    -moz-animation-delay: .3s;
    -webkit-animation-delay: .3s;
}

#smwBlock_5 {
    -moz-animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

@-moz-keyframes smwMove {
    0% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(0.7);
        opacity: 0.1;
    }

    ;
}

@-webkit-keyframes smwMove {
    0% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.7);
        opacity: 0.1;
    }

}
