/*
Author: Younes
Author URI: https://www.linkedin.com/in/younes-darabi-0951b3200
Version: 1.0
*/


:root {
    --primary-color: #f79219;
    --secondery-color: #404042;
    --text-color: #404042;
    --message-color: #ff4800;
    --shadow-first: 0 4px 16px rgba(0, 0, 0, 0.16);
    --shadow-second: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@font-face {
    font-family: 'irs';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('../fonts/IRANSansWeb.eot');
    src: url('../fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb.woff') format('woff'),
        url('../fonts/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: 'irs';
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: url('../fonts/IRANSansWeb_Bold.eot');
    src: url('../fonts/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IRANSansWeb_Bold.woff') format('woff'),
        url('../fonts/IRANSansWeb_Bold.ttf') format('truetype');
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0px auto;
    padding: 0px;
    background: #ffffff;
    font-family: irs;
    color: var(--text-color);
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
}

body.applogin {
    background-image: url(../images/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a,
li {
    transition: all 0.2s ease-out 0.15s;
    -webkit-transition: all 0.2s ease-out 0.15s;
    -moz-transition: all 0.2s ease-out 0.15s;
    color: var(--primary-color);
}

table {
    width: 100%;
    text-align: right;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 15px;
}

.hidden {
    display: none;
}

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

.hide-scroll {
    overflow: hidden;
}

.hidescrollbar::-webkit-scrollbar {
    display: none;
}

.hidescrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center;
}

.flex.space-between {
    justify-content: space-between;
}

.flex.nowrap {
    flex-wrap: nowrap;
}

.flex.align-center {
    align-items: center;
}

.flex.end {
    justify-content: end;
}

.flex.column {
    flex-direction: column;
}

.row {
    position: relative;
    width: 100%;
}

.col {
    position: relative;
}


.col-10 {
    width: 10%;
}

.col-15 {
    width: 15%;
}

.col-20 {
    width: 20%;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-33 {
    width: 33.33333%;
}

.col-40 {
    width: 40%;
}

.col-45 {
    width: 45%;
}

.col-50 {
    width: 50%;
}

.col-55 {
    width: 55%;
}

.col-60 {
    width: 60%;
}

.col-70 {
    width: 70%;
}

.col-75 {
    width: 75%;
}

.col-80 {
    width: 80%;
}

.col-90 {
    width: 90%;
}

.col-100 {
    width: 100%;
}

.padding-7 {
    padding: 7px;
}

.gap-21 {
    gap: 21px;
}

.container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.btn {
    box-shadow: var(--shadow-first);
    padding: 6px 15px;
    border-radius: 12px;
    background: var(--primary-color);
    border: 3px solid #fff;
    color: #fff;
    font-weight: 700;
}

.btn:hover {
    background: var(--secondery-color);
    box-shadow: var(--shadow-second);
}

.btn.dark {
    background: var(--secondery-color);
    color: #fff;
}

.btn.dark:hover {
    background: var(--primary-color);
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9;
}

.overlay.light {
    background: rgba(0, 0, 0, 0.2);
}

.message {
    text-align: center;
    margin: 15px 0 0;
    color: var(--message-color);
    font-weight: 700;
    font-size: 15px;
}

.popup {
    max-width: 500px;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 500px;
    overflow-x: hidden;
    padding: 20px;
    border-radius: 7px;
    box-shadow: var(--shadow-second);
    z-index: 10;
    display: none;
}

.popup .close-box-btn,
.cart-box .close-box-btn,
.mobile-nav .close-box-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    cursor: pointer;
}

.popup .logo {
    margin: 0 auto;
}

.popup p label {
    font-weight: 700;
    font-size: 15px;
}

.popup .title h1 {
    text-align: center;
    font-size: 21px;
    margin: 30px 0;
}

.popup p {
    margin: 10px 0;
}

.login-box p.message {
    text-align: center;
    font-size: 14px;
    color: var(--message-color);
}

input,
select,
textarea {
    background: #fff;
    border: 0 none;
    border-radius: 12px;
    box-shadow: var(--shadow-first);
    padding: 10px 15px;
    font-family: irs;
    font-size: 15px;
    width: 100%;
    outline: 0;
}

input[type="checkbox"] {
    width: auto;
}

input[type="number"] {
    -moz-appearance: textfield;
    text-align: center;
    direction: ltr;
}

input[type="email"] {
    direction: ltr;
    text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.popup p a {
    display: block;
    width: auto;
    margin: 0 auto;
    text-align: center;
}

.loginbox {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 21px;
    box-shadow: var(--shadow-second);
    text-align: center;
}

.loginbox img {
    width: 180px;
    margin: 0 auto 30px;
}

.loginbox .metatools a {
    font-size: 12px;
    background: var(--secondery-color);
    padding: 4px 7px;
    border-radius: 5px;
}

span.mobile {
    font-size: 14px;
    font-weight: 700;
    color: var(--message-color);
}

.loginbox .metatools a.timer.active {
    background: var(--primary-color);
    color: #fff;
}

@media screen and (max-width:480px) {
    body {
        padding: 21px;
    }
}