﻿/*body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}*/

.alert_ls {
    background: rgba(255,255,255,1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    padding: 10px;
}

    .alert_ls ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

        .alert_ls ul li b {
            color: #589;
            font-weight: 600;
            font-family: Arial, sans-serif;
        }

#container_ls {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: absolute;
    z-index: 1000000;
}

#wallpaper_ls {
    background-image: url('../../Image/MainScreen.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
}

    #wallpaper_ls.slideUp {
        transition: all 0.6s ease;
        transform: translateY(-100%);
        /*display: none !important;*/
    }

    #wallpaper_ls.slideDown {
        transition: all 0.6s linear;
        transform: translateY(0%);
        /*display:block !important;*/
    }

#container_ls.LS_HIDE {
    display: none !important;
}
#container_ls.LS_SHOW {
    display: block !important;
}

.icons_ls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0.5em;
}

    .icons_ls i {
        color: #fff;
        margin-top: 0.7em;
        margin-right: 2em;
    }

#date_cont_ls {
    position: absolute;
    top: 50%;
    left: 31%;
    animation: slideInFast 0.25s 0.25s linear forwards;
    visibility: hidden;
    transform: translateY(150%);
    transition: all 0.6s ease both;
    text-align: center;
}

@keyframes slideInFast {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateY(0%);
    }
}

#time_ls {
    font-size: 8em;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    color: #fff;
    margin: 0;
    margin-left: -15px;
    padding: 0;
}

#date_ls {
    font-size: 2.5em;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #fff;
    margin-top: -0.6em;
    /*   padding-left: 0.4em; */
}
