/*------------------------------------------------------------------------------ demo switcher */
#demo-switcher {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    right: 1%;
    width: 98%;
}

#demo-switcher .demo-switcher-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba( 0, 0, 0, 0.75 ); 
    z-index: 99800;
    display: none;
}

/*------------------------------------------------------------------------------ demo-switcher-button */
#demo-switcher .demo-switcher-button {
    background: #313131;
    color: #fff;
    padding: 15px;
    font-size: 13px;
    width: 101px;
    right: 1%;
    position: absolute;
    z-index: 99999;
    top: -44px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
    cursor: pointer;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

#demo-switcher .demo-switcher-button.bottom-radius {
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

#demo-switcher .demo-switcher-button:hover {
    background: #252525;
}

#demo-switcher .demo-switcher-button i {
    color: #fff;
    margin-right: 15px;
}

/*------------------------------------------------------------------------------ demo-switcher-title */
#demo-switcher .demo-switcher-title {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: -150px;
    display: none;
}

#demo-switcher .demo-switcher-title h3 {
    font-size: 36px;
    color: #fff;
    text-shadow: 0 1px 0 rgba( 0, 0, 0, 0.5 );
    font-weight: 300;
}

#demo-switcher .demo-switcher-title h3 span {
    font-weight: 800;
    color: #fff;
}

#demo-switcher .demo-switcher-title p {
    font-size: 13px;
    color: #fff;
    margin-top: 20px;
}

#demo-switcher .demo-switcher-title p .button {
    display: inline-block;
    margin-left: 15px;
}

/*------------------------------------------------------------------------------ demo-switcher-content */
#demo-switcher .demo-switcher-content {
    background: #fafafa;
    font-size: 0;
    height: 0;
    position: absolute;
    z-index: 99999;
    width: 100%;
    bottom: 0;
}

#demo-switcher .demo-switcher-content .demo-switcher-single-demo {
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: inline-block;
    width: 20%;
    vertical-align: top;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#demo-switcher .demo-switcher-content .demo-switcher-single-demo:hover {
    background-size: 165%;
}

#demo-switcher .demo-switcher-content .demo-switcher-single-demo .padding {
    background-image: -webkit-linear-gradient( rgba( 25, 25, 25, 0 ) 0%, rgba( 25, 25, 25, 0.7 ) 100% );
    background-image: -moz-linear-gradient( rgba( 25, 25, 25, 0 ) 0%, rgba( 25, 25, 25, 0.7 ) 100% );
    background-image: linear-gradient( rgba( 25, 25, 25, 0 ) 0%, rgba( 25, 25, 25, 0.7 ) 100% );
    padding: 30px;
    position: relative;
}

#demo-switcher .demo-switcher-content .demo-switcher-single-demo h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    bottom: 30px;
}

/*------------------------------------------------------------------------------ responsive */
@media (max-width: 949px) {

    #demo-switcher {
        display: none;
    }
}