@charset "UTF-8";

@font-face {
    font-family: "Vazir";
    src: url("../fonts/Vazir.eot"); /* IE9 Compat Modes */
    src: url("../fonts/Vazir.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/Vazir.otf") format("opentype"),
        /* Open Type Font */ url("../fonts/Vazir.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../fonts/Vazir.woff") format("woff");
    /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "Vazir";
}

body {
    direction: rtl;
}

/*for scrollbar*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: silver;
    border-radius: 10px;
    right: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: silver;
}

/*for scrollbar*/

.bg-main-body {
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.bg-header {
    background: white;
    width: 100%;
    position: fixed;
    z-index: 10;
}

.img-header {
    width: 65%;
}

.btn-mobile {
    width: 35px;
    height: 35px;
    line-height: 25px;
}

.pt-main {
    padding-top: 100px;
}

.file-upload {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 20px;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed #1FB264;
    position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #1FB264;
    border: 4px dashed #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.reg-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: green;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #0f5132;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.reg-image:hover {
    background: #0f5132;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.reg-image:active {
    border: 0;
    transition: all .2s ease;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}