/* ===== PRELOADER ===== */
div#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
}

div#status {
    display: none;
}

.preload-center {
    position: fixed;
    text-align: center;
    width: 300px;
}

.preload-center img {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 0 auto 14px;
}

.preload-center h1 {
    color: #525866;
    font-size: 36px;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px;
}

/* Animasyonlu noktalar */
.preload-center span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -10px;
}

.preload-center span:nth-child(3) {
    background: #1a53ff;
    -webkit-animation: kiri 1.2s infinite linear;
    animation: kiri 1.2s infinite linear;
}
.preload-center span:nth-child(4) {
    background: #ffff1a;
    z-index: 100;
}
.preload-center span:nth-child(5) {
    background: #ff00bf;
    -webkit-animation: kanan 1.2s infinite linear;
    animation: kanan 1.2s infinite linear;
}

@keyframes kanan {
    0%   { transform: translateX(20px); }
    50%  { transform: translateX(-20px); }
    100% { transform: translateX(20px); z-index: 200; }
}
@-webkit-keyframes kanan {
    0%   { -webkit-transform: translateX(20px); }
    50%  { -webkit-transform: translateX(-20px); }
    100% { -webkit-transform: translateX(20px); z-index: 200; }
}

@keyframes kiri {
    0%   { transform: translateX(-20px); z-index: 200; }
    50%  { transform: translateX(20px); }
    100% { transform: translateX(-20px); }
}
@-webkit-keyframes kiri {
    0%   { -webkit-transform: translateX(-20px); z-index: 200; }
    50%  { -webkit-transform: translateX(20px); }
    100% { -webkit-transform: translateX(-20px); }
}
