﻿.overlay,
.animation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.overlay {
    background: url(/images/communications/overlay.png);
    background: rgba(255,255,255, 0.85);
    z-index: 10000;
}

.animation {
    z-index: 10001;
}

.animation .content {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font: 700 26px/32px "Open Sans Condensed", Arial;
    text-shadow: 0 1px 0 #fff;
    text-align: center;
    text-transform: uppercase;
    color: #c36121;
}

.animation .content .tbl {
    display: table;
    width: 100%;
    height: 100%;
}

.animation .content .tcell {
    display: table-cell;
    vertical-align: middle;
}

.animation .content p {
    padding: 20px 0 0 0;
    margin: 0;
}

.animation .content p:first-child {
    padding-top: 0;
}

.animation .content ul {
    padding: 0;
    margin: 0;
}

.animation .content ul li {
    display: inline-block;
    list-style: none;
    padding: 0 5px;
}

.animation .content a {
    color: #c36121;
    transition: color 200ms ease-in;
    -webkit-transition: color 200ms ease-in;
}

.animation .content a:hover {
    color: #a74d12;
}

.animation .bird {
    position: absolute;
    width: 25%;
}

.animation .bird.bird-01 {
    left: 40px;
    bottom: 30px;
    z-index: 3;
}

.animation .bird.bird-02 {
    left: 30px;
    bottom: 40px;
    z-index: 2;
}

.animation .bird.bird-03 {
    left: 20px;
    bottom: 50px;
    z-index: 1;
}

.animation .close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 27px;
    height: 27px;
    font: 0/0 a;
    background: url(/images/communications/close.png);
}

@media only screen and (max-width: 767px) {

    .animation .content {
        font-size: 22px;
        line-height: 28px;
    }

}

@media only screen and (max-width: 567px) {

    .animation .content {
        font-size: 18px;
        line-height: 24px;
    }

    .animation .content ul li {
        display: block;
        padding: 10px 0 0 0;
    }

}