@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.load {
    width: 100px;
    height: 100px;
    margin: 110px auto 0;
    border: solid 10px #132c6c;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    transition: all 0.5s ease-in;
    animation-name: rotate;
    animation-duration: 1.0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@font-face {
    font-family: LurpakSans;
    src: url("http://www.lurpakpromo.com/fonts/en/LurpakSans.eot");
    /* IE9 Compat Modes */
    src: url("http://www.lurpakpromo.com/fonts/en/LurpakSans.eot?#iefix") format('embedded-opentype'),
        /* IE6-IE8 */ url("http://www.lurpakpromo.com/fonts/en/LurpakSans.woff2") format('woff2'),
        /* Super Modern Browsers */ url("http://www.lurpakpromo.com/fonts/en/LurpakSans.woff") format('woff'),
        /* Pretty Modern Browsers */ url("http://www.lurpakpromo.com/fonts/en/LurpakSans.ttf") format('truetype'),
        /* Safari, Android, iOS */ url("http://www.lurpakpromo.com/fonts/en/LurpakSans.svg#svgFontName") format('svg');
    /* Legacy iOS */
    font-weight: 400;
    font-style: normal;
}

html,
body,
* {
    font-family: 'Kanun AR' !important;
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}

ul {
    font-family: 'Kanun AR';
    margin: 0;
    padding: 0;
}

.kanun {
    font-family: LurpakSans !important;
}

li {
    direction: rtl;
}

li:before {
    content: "";
    margin-right: -50px;
}

@media only screen and (max-width: 600px) {

    li:before {
        content: "";
        margin-right: -40px;
    }

}

.pc li::before {
    content: "";
    margin-right: 0px;
}

.blue {
    color: #132c6c;
}

html,
body {

    text-align: center;
}

body {

    background: lightgray;
}

h2 {
    font-family: 'Kanun AR';

    font-size: 26px;
    line-height: 1;

    margin-bottom: 0;
}

p {
    font-family: 'Kanun AR';
    font-size: 18px;
    color: #5f6982;
}

.uploader {
    display: block;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;

    border-radius: 7px;
    border: 3px solid #eee;
    transition: all 0.2s ease;
    user-select: none;
}

.uploader label:hover {
    border-color: #454cad;
}

.uploader label.hover {
    border: 3px solid #454cad;
    box-shadow: inset 0 0 0 6px #eee;
}

.uploader label.hover #start i.fa {
    transform: scale(0.8);
    opacity: 0.3;
}

.uploader #start {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #start.hidden {
    display: none;
}

.uploader #start i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
}

.uploader #response {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #response.hidden {
    display: none;
}

.uploader #response #messages {
    margin-bottom: 0.5rem;
}

.uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
}

.uploader #file-image.hidden {
    display: none;
}

.uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
}

.uploader #notimage.hidden {
    display: none;
}

.uploader progress,
.uploader .progress {
    display: none;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    height: 8px;
    border: 0;
    border-radius: 4px;
    background-color: #eee;
    overflow: hidden;
}

.uploader .progress[value]::-webkit-progress-bar {
    border-radius: 4px;
    background-color: #eee;
}

.uploader .progress[value]::-webkit-progress-value {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader .progress[value]::-moz-progress-bar {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
}

.uploader input[type="file"] {
    display: none;
}

.uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
}

.uploader .btn {
    display: inline-block;
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    clear: both;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: initial;
    border: none;
    border-radius: 0.2rem;
    outline: none;
    padding: 0 1rem;
    height: 36px;
    line-height: 36px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    background: #454cad;
    border-color: #454cad;
    cursor: pointer;
}