﻿#Fashion HomeLoader,#Giris {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    z-index: 9999999;
    
}

#Giris {
    display: block;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 99999;
    background-image: url("../images/grs.jpg");
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#SagLoad, #SolLoad {
    width: calc(50% + 104px);
    -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-name: example;
    animation-duration: 4s;
}

#SagLoad {
    float: right;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
    from {
        width: 0px;
    }

    to {
        width: calc(50% + 104px);
    }
}

/* Standard syntax */
@keyframes example {
    from {
        width: 0px;
    }

    to {
        width: calc(50% + 104px);
    }
}
