/*********** INFORMATION *****************************

- document:  SlideIt - CSS3 fixed sliding elements
- author:    Capelle @ Codecanyon
- profile:   http://codecanyon.net/user/Capelle

*****************************************************/

@import url(http://fonts.googleapis.com/css?family=Lato:300);

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #585A69;
}

#slideit-Top * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: 300;
    font-style: normal;
    font-size: 100%;
    font-family: Lato, sans-serif;
    vertical-align: baseline;
    line-height: normal;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#slideit-Top a {
    text-decoration: none
}

#slideit-Top label {
    cursor: pointer
}

#slideit-Top input[type=radio] {
    display: none
}

#slideit-Top {
    z-index: 9999;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0
}

    #slideit-Top section {
        margin: 0;
        overflow: hidden;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        position: absolute;
        z-index: 10;
        background: #000000;
        border-bottom: 6px solid #A7ABC6;
        -webkit-backface-visibility: hidden
    }

    #slideit-Top input#close-itemT:checked ~ section,
    #slideit-Top section {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    #slideit-Top input#open-itemT:checked ~ section {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    #slideit-Top section .wrap {
        padding: 30px;
        position: relative;
        float: left;
        text-align: center;
        width: 100%
    }

    #slideit-Top .title {
        display: block;
        text-transform: uppercase;
        font-size: 16px;
        color: #222
    }

    #slideit-Top .links a {
        color: #bbb;
        font-size: 12px;
        display: inline-block;
        margin: 16px 10px 10px
    }

        #slideit-Top .links a:focus,
        #slideit-Top .links a:hover {
            color: #222
        }

        #slideit-Top .links a:before {
            content: "\25CF";
            padding-right: 4px
        }

    #slideit-Top label.close,
    #slideit-Top label.open {
        text-align: center;
        position: absolute
    }

    #slideit-Top label.open {
        font-size: 11px;
        color: #fff;
        background: #222;
        width: 100px;
        top: -50px;
        left: 0;
        right: 0;
        bottom: auto;
        margin: 0 auto;
        padding: 10px 0;
        text-transform: uppercase;
        z-index: 1
    }

    #slideit-Top input#close-itemT:checked ~ label.open {
        top: 0
    }

    #slideit-Top label.open:focus,
    #slideit-Top label.open:hover {
        background: #585A69;
        color: #fff
    }

    #slideit-Top label.close {
        right: 30px;
        left: auto;
        top: 0;
        bottom: auto;
        font-size: 20px;
        background: #9ea3c5;
        color: #fff;
        width: 22px;
        z-index: 999
    }

        #slideit-Top label.close:focus,
        #slideit-Top label.close:hover {
            background: #757786
        }

    #slideit-Top a,
    #slideit-Top label {
        -webkit-transition: all .1s ease-in-out;
        -moz-transition: all .1s ease-in-out;
        -ms-transition: all .1s ease-in-out;
        -o-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out
    }

    #slideit-Top section {
        -webkit-transition: all .4s cubic-bezier(0.2, .6, .3, 1);
        -moz-transition: all .4s cubic-bezier(0.2, .6, .3, 1);
        -ms-transition: all .4s cubic-bezier(0.2, .6, .3, 1);
        -o-transition: all .4s cubic-bezier(0.2, .6, .3, 1);
        transition: all .4s cubic-bezier(0.2, .6, .3, 1)
    }

    #slideit-Top input#close-itemT:checked ~ label.open {
        -webkit-transition: top .3s ease .4s, background .1s ease, color .1s ease;
        -moz-transition: top .3s ease .4s, background .1s ease, color .1s ease;
        -ms-transition: top .3s ease .4s, background .1s ease, color .1s ease;
        -o-transition: top .3s ease .4s, background .1s ease, color .1s ease;
        transition: top .3s ease .4s, background .1s ease, color .1s ease
    }

@media screen and (max-width:480px) {
    #slideit-Top section .wrap {
        text-align: left
    }

    #slideit-Top .links a {
        width: 100%;
        display: block;
        margin-left: 0
    }
}
