* {
    margin: 0;
    padding: 0;
    font-family: iranyekan, serif;
    direction: rtl;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    vertical-align: top;
}

:root,
:host {
    --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
}

@font-face {
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 100;
    font-display: block;
    src: url("../fonts/fa-thin-100.woff2") format("woff2"), url("../fonts/fa-thin-100.ttf") format("truetype");
}

.fat,
.fa-thin {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 100;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;

}

.colors {
    background: #0ac480;
}

html,
body {
    width: 100%;
    position: relative;
    background-color: #fbfbfb;
    scroll-behavior: smooth;
}

/* SignIn and SignUp */

::selection {
    background: #3a3a3a;
    color: #fff;
}

.app-container {
    width: 100%;
    padding-bottom: 40px;
    position: relative;
    text-align: center;
    padding-top: 60px;

}

.sign-in-form {
    height: 100vh;
}

.copyright-area {
    font-size: 13px;
    font-weight: 300;
    width: 100%;
    padding: 5px;
    background: #565656;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

.register-container {
    width: 400px;
    margin-top: 100px;
    display: inline-block;
}

.signup-form {
    margin-top: 30px !important;
}

.login-form-container {
    width: 100%;
    background: white;
    padding: 30px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.342);
    display: inline-block;
    border-radius: 30px;
    position: relative;
}

.login-logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: -50px;
    padding: 15px;
    right: 0px;
    left: 0px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    z-index: 999;
}

.login-logo-container img {
    width: 100%;
}

.login-form-title {
    width: 100%;
    display: inline-block;
    padding: 2px;
    font-size: 18px;
    font-weight: 300;
    color: #0ac480;
    margin-bottom: 20px;
    border-bottom: 5px solid #0ac480;
    padding-bottom: 10px;
    text-align: center;
}


.login-form-items {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 5px;
    overflow: hidden;
}

.login-form-items input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    color: #525252;
    padding-top: 20px;
    font-size: 15px;
    direction: ltr;
    text-align: right;
}

.login-form-items select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    color: #525252;
    padding-top: 20px;
    font-size: 15px;
    direction: ltr;
    text-align: right;
}

.direction-rtl {
    direction: rtl !important;
}

.login-form-items label {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 14px;
    font-weight: 300;
    color: gray;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid #95989f;
}

.login-form-items label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #2b98e6;
    bottom: -1px;
    right: 0px;
    transform: translateX(+100%);
    transition: transform 0.3s ease;
}

.login-label-content {
    position: absolute;
    bottom: 5px;
    right: 0px;
    transition: all 0.3s ease;

}

.login-label-content i {
    font-size: 12px;
    margin-top: 3px;
    margin-left: 5px;
}

.login-form-items input:focus+.login-input-labels .login-label-content,
.login-form-items input:valid+.login-input-labels .login-label-content {
    transform: translateY(-180%);
    font-size: 13px;
    color: #2b98e6;
}

.login-form-items input:focus+.login-input-labels::after,
.login-form-items input:valid+.login-input-labels::after {
    transform: translateX(0%);

}


.date-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.date-input {
    width: 31% !important;

}

.date-container select {
    width: 31%;
    padding: 5px;
    border: none;
    border-bottom: 1px solid #95989f;
    outline: none;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 300;
    font-size: 14px;
    color: #525252;
}

.date-container option {
    font-size: 15px;
    font-weight: 300;
}


.captcha-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}


.captcha-input {
    width: 50% !important;
}

.captcha-container button {
    height: 40px;
    width: 40px;
    border: none;
    background: #efefef;
    padding: 10px;
    outline: none;
    font-size: 14px;
    direction: ltr;
    text-align: center;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 4px !important;
    cursor: pointer;
    margin-top: 20px;
    padding-top: 5px;

}

.captcha-container svg {
    width: 20px;
    margin-top: 5px;

}

.captcha-container button:hover>svg {
    animation: captcha-reload 1s ease;
    transform-origin: center;
    transform-box: fill-box;
}


@keyframes captcha-reload {
    from {
        transform: rotateZ(0deg);

    }

    to {
        transform: rotateZ(360deg);

    }
}

.login-form-button {
    width: 100%;
    height: 45px;
    border: none;
    padding: 10px;
    outline: none;
    font-size: 15px;
    direction: ltr;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 30px;
    border-radius: 30px;
    background-color: #0ac480;
    cursor: pointer;
    color: white;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.login-form-button:hover {
    background: #1ed894;
}

.login-form-text {
    width: 100%;
    padding: 5px;
    font-size: 13px;
    font-weight: 300;
    color: #1bac59;
    text-align: right;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.login-form-text a {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

.sign-up-messages {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 300;
}

.sign-up-messages a {
    font-weight: 700;
    color: #0ac480;
}

.hvr-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
    background-color: #0ac480;
    color: white;
}

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #ffffff;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}


/* header and layout */


.header {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    background: #c4240a;
    display: inline-block;
    text-align: center;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 9999999;
}

.mainlogo-area {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0 0 10px 10px;
    width: 120px;
    height: 68px;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 10px;
    z-index: 99999;
}

.mainlogo-area img {
    height: 100%;
    display: inline-block;
}

.menu-icon {
    height: 40px;
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: white;
}

.menu-btn i {
    font-size: 30px;
}

.menu-icon span {
    font-size: 12px;
    font-weight: 300;
    margin-left: 0 10px;
    display: inline-block;
    vertical-align: top;
}

.float-right {
    float: right;
    margin-right: 10px;
}

.float-left {
    float: left;
    margin-left: 10px;
}

.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: rgb(22, 22, 22);
}

.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: rgb(0, 0, 0);
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

@-webkit-keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.hvr-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
    -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* categury and main */

.catergury-container {
    width: 100%;
    padding: 10px;
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.categury-item {
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    padding: 10px;
    border-radius: 15px;
    width: 150px;
    margin: 15px;
    cursor: pointer;
}

.categuries .categury-item {
    width: 200px;
}

.categury-item img {
    width: 100%;
    display: inline-block;
}

.categury-item div {
    width: 100%;
    padding: 2px 0;
    font-size: 15px;
    font-weight: 300;
}

.hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-shrink:hover,
.hvr-shrink:focus,
.hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.listing-area {
    width: 100%;
    padding: 20px;
}

.categury-box-title {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    border-bottom: 1px dotted #0ac480;
    margin-bottom: 20px;
    vertical-align: top;
    display: inline-block
}

.categury-box-title span {
    font-weight: 700;
    font-size: 16px;
    vertical-align: top;
    margin-top: -2px;
    display: inline-block;
}

.attention-msg {
    padding: 5px 25px;
    border-radius: 30px;
    background: rgb(255, 193, 6);
    font-size: 15px;
    font-weight: 300;
    color: rgb(0, 0, 0);
    cursor: default;
    display: inline-block
}

.attention-msg i {
    font-size: 20px;
    margin-left: 5px;
}

.products-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0px;
    align-content: flex-start;
    align-items: flex-start;
}

.products-item {
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    padding: 10px;
    border-radius: 15px;
    width: 250px;
    cursor: default;
    text-align: center;
    padding-bottom: 65px;
    overflow: hidden;
    position: relative;
    margin: 20px;
}

.products-item img {
    width: 100%;
}

.product-title {
    width: 100%;
    padding: 10px 0px;
    font-size: 15px;
    font-weight: 500;
}

.count-area {
    display: flex;
    justify-content: space-between;
}

.count-area button {
    background: rgb(216, 216, 216);
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    padding: 5px;
    padding-top: 10px;
    transition: all 0.3s ease;
}

.count-area button:hover {
    background: gray;
    color: white;
}

.count-area button:first-child {
    border-radius: 0 5px 5px 0;
}

.count-area button:last-child {
    border-radius: 5px 0 0 5px;
}

.count-area input {
    border: 1px solid rgb(202, 202, 202);
    height: 35px;
    text-align: center;
    padding: 5px;
    font-size: 15px;
    font-weight: 300;
    flex-grow: 1;
}

.count-area input:hover,
.count-area input:active,
.count-area input:focus {
    outline: none;
}

.add-to-cart {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 50px;
    width: 100%;
    background-color: #0ac480;
    color: white;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 0 0 15px 15px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    padding: 0px 10px;
    vertical-align: top;
}

.price {
    float: right;
}

.price span {
    font-weight: 300;
    font-size: 11px;
    vertical-align: top;
    margin-top: 5px;
    margin-right: 5px;
    display: inline-block;
}

.cart-icon {
    float: left;
}

.cart-icon span {
    display: inline-block;
    font-size: 11px;
    font-weight: 300;
    margin-top: 5px;
}

.cart-icon i {
    font-size: 20px;
    color: #094b33;
    text-shadow: 0px 0px 4px #65ffc7;
    margin-top: 2px;
    margin-right: 2px;
}

.hvr-bounce-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;

}

.hvr-bounce-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #09a36b;
    border-radius: 0 0 15px 15px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
    color: white;
}

.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.count-msg {
    padding: 10px 0;
    width: 100%;
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    color: rgb(251, 11, 71);
}

.count-msg span {
    font-weight: 700;
    font-size: 14px;
}

.view-gallery-container {
    position: fixed;
    padding: 30px;
    background: rgba(0, 0, 0, 0.85);
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 9999999;
    width: 100%;
    height: 100%;
}

#imageGallery {
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

.view-gallery-container img {
    height: 100%;
}

.view-gallery-container i {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    font-size: 50px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-gallery-container i:hover {
    color: #fb0b47;
}

/* detail page */

.detail-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-right: auto;
    margin-left: auto;
}


.detail-photo-area {
    width: 350px;
    padding: 20px;
}

.detail-img-slider {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    background: white;
    position: relative;
}

.detail-img-slider img {
    width: 100%;
}

.detail-img-slider i:not(.customFaIcon) {
    font-size: 25px;
    color: white;
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.detail-img-slider i:hover:not(.customFaIcon) {
    background: rgba(0, 0, 0, 0.8);
}

.thumbnail-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    padding: 10px;
    background-color: white;
    margin-top: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}

.thumbnail-area div {
    width: 80px;
    height: 80px;
    margin: 5px;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #c8c8c8;
    text-align: center;
    background-position-x: center;
    border: 2px solid #c8c8c8;
    cursor: pointer;
}

.detail-content {
    padding: 20px;
    text-align: right;
}

.detail-title {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 700;
    cursor: default;
}

.color-count {
    font-size: 14px;
    margin-top: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    cursor: default;
}

.color-count div {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    background: #0ac480;
    color: white;
    font-weight: 700;
    font-size: 17px;
    margin-right: 5px;
}

.order-container {
    width: 300px;
    padding: 10px;
    background: #eeeeee;
    margin-top: 20px;
    border-radius: 15px;
    cursor: default;
}

.order-container .count-msg {
    color: black;
    text-align: center;
}

.fabric-type {
    width: 300px;
    display: inline-block;
    padding: 15px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
    text-align: justify;
}

.fabric-type div {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
}

.detail-price {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #fb0b47;
    cursor: default;
}

.detail-price span {
    font-weight: 300;
    font-size: 11px;
}

.detail-add-to-card {
    width: 300px;
    margin-top: 20px;
    padding: 10px;
    font-size: 18px;
    border-radius: 30px;
    background: #0ac480;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.detail-add-to-card i {
    font-size: 24px;
    margin-right: 15px;
}

.hvr-rectangle-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #09a36b;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 30px;
}

.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
    color: white;
}

.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.comment-area {
    flex-grow: 1;
    padding: 20px;
    padding-right: 50px;
    width: 200px;
}

.comment-area .title {
    margin-top: 30px;
    text-align: right;
    width: 100%;
    font-weight: 300;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #0ac480;
}

.comment-area textarea {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    height: 120px;
    resize: none;
    border: 1px solid rgb(211, 211, 211);
    padding: 10px;
    outline: none;
    font-size: 14px;
    font-weight: 300;
}

.comment-area button {
    padding: 7px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    float: left;
    background: #eeeeee;
    font-size: 14px;
}

@-webkit-keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

@keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

.hvr-back-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.hvr-back-pulse:hover,
.hvr-back-pulse:focus,
.hvr-back-pulse:active {
    -webkit-animation-name: hvr-back-pulse;
    animation-name: hvr-back-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #2098D1;
    background-color: #2098d1;
    color: white;
}

.comments {
    margin-top: 40px;
    width: 100%;
    display: inline-block;
}

.comments div {
    width: 100%;
    padding: 15px;
    background: white;
    text-align: justify;
    font-size: 14px;
    font-weight: 300;
    cursor: default;
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
}

.share-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fb0b47;
    position: fixed;
    left: 40px;
    bottom: 40px;
    border: 4px solid white;
    color: white;
    outline: none;
    cursor: pointer;
    font-size: 30px;
    padding-top: 12px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #d1093b;
}

.install-btn {
    border-radius: 50px;
    background: #fb0b47;
    position: fixed;
    right: 40px;
    bottom: 40px;
    border: 4px solid white;
    color: white;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.install-btn i {
    font-size: 30px;
    margin-right: 20px;
}

.install-btn:hover {
    background: #d1093b;
}

.sidebar-menu {
    position: fixed;
    right: 0px;
    top: 60px;
    bottom: 0px;
    width: 250px;
    background-color: #2b2b2b;
    z-index: 8888;
    display: none;
}

.sidebar-menu-items {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 300;
    text-align: right;
    width: 250px;
    color: white;
    cursor: pointer;
    display: inline-block;
    border-bottom: 1px solid #3e3e3e;
    transition: all 0.3s ease;
}

.sidebar-menu-items:hover {
    background: #1f1f1f;
}

.sidebar-menu-items i {
    font-size: 18px;
    margin-left: 10px;
}

.navigation-btn {
    width: 100%;
    position: fixed;
    bottom: 25px;
    right: 0px;
    left: 0px;
    height: 90px;
    background: #212121;
    text-align: center;
    z-index: 999999;
    border-radius: 20px 20px 0 0;
    display: none;
}

.navigation-btn button {
    width: 100px;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation-btn button:hover {
    background: #424242;
}

.navigation-btn i {
    width: 100%;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 10px;
}

.navigation-btn span {
    width: 100%;
    font-size: 10px;
    font-weight: 300;
    margin: 5px 0;
    vertical-align: top;
}

/* tables */

.table-container {
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    margin-top: 40px;
    overflow: auto;
}

.Report-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    border: 10px solid #888888;
    margin-top: none;
}

.Report-table th,
td {
    color: white;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    text-align: center;
}

.Report-table th {
    background: #888888;
    font-weight: 700;
}

.Report-table td {
    font-weight: 300;
    color: black;
    font-size: 14px;
    height: 50px;
    padding-top: 25px;
    min-width: 150px;
}

.Report-table tr {
    border-bottom: 1px solid white;
}

.Report-table tr:nth-child(odd) {
    background: #e9e9e9
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: #4286e6;
    color: white;
    cursor: pointer;
    margin-top: -5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    margin-left: 5px;
    margin-right: 5px;
}

.action-btn:hover {
    background: #255292;
}

.action-btn i {
    margin-top: 3px;
}

.status-paid {
    background: #d6f5ea;
}

.status-cancel {
    background: #f5d6d6;
}

.status-wait {
    background: #f4f5d6;
}

.status-delivery-pay {
    background: #bec2aa;
}

/* static */

.static-container {
    width: 100%;
    padding: 40px;
}

.static-content {
    width: 100%;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    padding: 20px;
    border-radius: 15px;
    text-align: justify;
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
}

.static-title {
    width: 100%;
    display: inline-block;
    padding: 10px;
    background: #d1d1d1;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* cart */
.cart-container {
    width: 100%;
    padding: 40px;
    text-align: center;
}

.cart-entity-container {
    width: 800px;
    padding: 20px;
    display: inline-block
}

.cart-entity {
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.cart-img-container {
    width: 50px;
    flex-grow: 1;
    padding: 5px;
    background: #c9c9c9;
}

.cart-img-container img {
    width: 100%;

}

.cart-title-container {
    text-align: right;
    padding: 0 20px;
    flex-grow: 5;
}

.cart-count {
    flex-grow: 1;
    width: 100px;
    padding: 10px;
}

.cart-count input {
    width: 70px;
    flex-grow: initial;
}

.cart-delete-btn-container {
    width: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(225, 225, 225);
    flex-grow: 1;
    height: 130px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 20px;
    color: black;
    cursor: pointer;
}

.cart-delete-btn-container:hover {
    background: #e31235;
    color: white;
}

.cart-detail {
    width: 100%;
    margin-top: 20px;
    overflow: auto;
}

.cart-detail td {
    padding-top: 15px !important;
}

.final-pay {
    background: #a4e8cf;
}

.cart-pay-btn {
    width: 250px;
    padding: 5px;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    border: none;
    background: #0ac480;
    color: white;
    border-radius: 50px;
    float: right;
    cursor: pointer;
}

.cart-pay-btn i {
    font-size: 20px;
    margin-right: 10px;
}

/* cart final  */

.address-select {
    width: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.address-select input {
    padding: 10px;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.address {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    text-align: right;
    flex-grow: 1;
    padding: 10px;
}

.address .state,
.city,
.postal-code {
    font-weight: 700;
}

.address .divider {
    margin-left: 15px;
    margin-right: 15px;
    color: #0ac480;
    font-weight: 700;
}

.add-address {
    background: #2098D1;
    float: left;
}

.new-address-container {
    width: 100%;
    display: none;
    justify-content: space-around;
    margin: 20px 0px;
    margin-top: 90px;
    background-color: white;
    padding: 20px;
    border: 1px dashed #c3c3c3;
    border-radius: 3px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

/* .new-address-container .login-form-items {
    width: 45%;
} */

.send-type {
    width: 100%;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;

}

.send-type select {
    width: 45%;
    padding: 5px;
    border: none;
    border-bottom: 1px solid #95989f;
    outline: none;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 300;
    font-size: 14px;
    color: #525252;
}

.send-type option {
    font-size: 15px;
    font-weight: 300;
}

#categury-flag {
    padding-top: 80px;
    margin-top: -80px;
}

.payment-type {
    font-size: 14px;
    font-weight: 300;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.payment-type input {
    width: 18px;
    height: 18px;
    margin-left: 25px;
    cursor: pointer;
    margin-right: 5px;
}

.payment-type span {
    font-weight: 500;
    margin-left: 10px;

}

/* responsive */
@media screen and (max-width:1100px) {
    .detail-container {
        flex-wrap: wrap;
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .comment-area {
        width: 100%;
    }
}

@media screen and (min-width:850px) {
    .navigation-btn {
        display: none !important;
    }
}

@media screen and (max-width:850px) {
    .responsive-hidden {
        display: none;
    }

    .navigation-btn {
        display: inline-block;
    }

    .share-btn {
        bottom: 122px;
    }

    .cart-entity-container {
        width: 100%;
        padding-bottom: 80px;
    }

    .cart-title-container {
        flex-grow: initial;
        display: inline-block;
        width: calc(100% - 290px);
        padding: 0px 5px;
    }

    .cart-count {
        flex-grow: initial;
        display: inline-block;
        width: 165px;
        font-size: 0px;
    }

    .cart-entity {
        display: inline-block;
        width: 100%;
    }

    .cart-img-container {
        width: 100px;
        display: inline-block;
    }

    .cart-delete-btn-container {
        width: 100%;
        height: 40px;
        margin-top: 10px;
    }

    .install-btn {
        bottom: 130px;
        right: 10px;
    }
}

@media screen and (max-width:650px) {
    .cart-title-container {
        width: calc(100% - 110px);
    }

    .cart-container {
        padding: 0px;
    }

    .send-type {
        flex-wrap: wrap;
    }

    .send-type select {
        width: 100%;
    }

    .register-install {
        bottom: 0px;
        right: 0px;
        left: 0px;
        border-radius: 0px;
        text-align: center;
        justify-content: center;
    }

    .app-container {
        padding-bottom: 60px;
    }
}

@media screen and (max-width:450px) {
    .navigation-btn button {
        width: 80px;
    }

    .float-left {
        font-size: 25px;
    }

    .view-gallery-container img {
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .products-item {
        width: 100%;
    }

    .share-btn {
        left: 20px;
    }

    .register-container {
        width: 100%;
    }

    .register-container {
        padding: 20px;
    }

    .app-container {
        padding-bottom: 80px;
    }

    .cart-img-container {
        width: 70px;
        display: inline-block;
    }

    .cart-title-container {
        width: calc(100% - 80px);
    }

    .cart-pay-btn {
        width: 100%;
    }

    .menu-icon span {
        display: none;
    }

    .sign-in-form,
    .sign-up-form {
        padding-top: 0px !important;
    }

    .comment-area {
        padding-right: 20px;
    }

    .detail-photo-area {
        width: 100%;
        padding: 0;
        margin-top: -30px;
    }

    .detail-img-slider {
        border-radius: 0 0 50px 50px;
        padding: 20px;
    }

    .detail-content {
        padding: 10px;
        width: 100%;
    }

    .fabric-type {
        width: 100%;
    }

    .order-container {
        width: 100%;
    }

    .detail-add-to-card {
        width: 100%;
    }

}

@media screen and (max-width:380px) {
    .categury-item {
        width: 130px;
        margin: 10px;
    }

    .navigation-btn button {
        width: 70px;
    }

    .float-left {
        margin-left: 0px;
    }
}

#forgotpasswordrea {
    display: none;
}

#cartCount {
    display: inline;
    margin-left: -10px;
}

#imageShow {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

img {
    cursor: pointer;
}

.product-title {
    cursor: pointer;
}

.alertNoArticle {
    background-color: rgb(223, 77, 113);
}

#backHomeButton {
    font-size: medium;
    color: #ffffff;
}

#paymentArea {
    margin-right: 2%;
    overflow-x: auto;
}

.payAmount {
    font-size: x-large;
    margin-right: 2%;
    margin-top: 2%;
}



/* profile */

.profile-container {
    width: 400px;
    margin-top: 30px;
    display: inline-block;
}

.profile-form-container {
    width: 100%;
    background: white;
    padding: 30px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.342);
    display: inline-block;
    border-radius: 30px;
    position: relative;
    padding-top: 70px;
}

.profile-logo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: -60px;
    right: 0px;
    left: 0px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    z-index: 999;
    overflow: hidden;
    border: 3px solid white;
}

.profile-logo-container img {
    width: 100%;
}

.profile-fields {
    width: 100%;
    margin-top: 5px;
    border-radius: 3px;
    font-weight: 300;
    font-size: 13px;
    background: #eeeeee;
    padding: 10px 15px;
    text-align: center;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-fields span {
    font-weight: 500;
    font-size: 16px;
    display: flex;
}

.profile-fields .unit {
    font-size: 10px;
    margin: 5px;
    font-weight: 300;
    align-items: flex-end
}

.profile-address {
    border-radius: 3px;
    padding: 5px;
}

.profile-address i {
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    color: red;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.profile-address i:hover {
    background: red;
    color: white;
}

.profile-title {
    width: 100%;
    display: inline-block;
    padding: 5px;
    border-bottom: 1px solid #0ac480;
    color: #0ac480;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 300;
}

.categories .categury-item {
    width: 200px;
}

.product-list .products-item {
    width: 300px;
}

@media screen and (max-width:380px) {
    .categury-item {
        width: 130px;
        margin: 10px;
    }

    .navigation-btn button {
        width: 70px;
    }

    .float-left {
        margin-left: 0px;
    }

    #paymentArea {
        margin-right: 2%;
    }
}

#backCategory:hover {
    color: hotpink;
}


/* Loading */

.CenterPayText {
    position: absolute;
    max-width: 100%;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    /* margin is -0.5 * dimension */
    margin-top: -25px;
    font-size: xx-large;
}

.loader {
    position: absolute;
    left: 50%;
    top: 40%;
    margin-left: -27.5px;
    margin-top: -27.5px;
}

.indexLoader {
    position: absolute;
    left: 50%;
    top: 70%;
    margin-left: -27.5px;
    margin-top: -27.5px;
}

.square {
    background: rgb(216, 231, 0);
    width: 15px;
    height: 15px;
    float: left;
    top: -10px;
    margin-right: 5px;
    margin-top: 5px;
    position: relative;
    opacity: 0;
    -webkit-animation: enter 6s infinite;
    animation: enter 6s infinite;
}

.enter {
    top: 0px;
    opacity: 1;
}

.square:nth-child(1) {
    -webkit-animation-delay: 1.8s;
    -moz-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.square:nth-child(2) {
    -webkit-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.square:nth-child(3) {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    animation-delay: 2.4s;
    background: #0c0a06;
}

.square:nth-child(4) {
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.square:nth-child(5) {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.square:nth-child(6) {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.square:nth-child(8) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.square:nth-child(9) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.clear {
    clear: both;
}

.last {
    margin-right: 0;
}


.update-address-btn {
    width: 250px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    border: none;
    background: #0ac480;
    color: white;
    border-radius: 50px;
    margin-top: 5px;
    float: right;
    cursor: pointer;
}

.alert-field {
    width: 90%;
    border: none;
    padding: 8px;
    direction: rtl;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3px;
    border-radius: 4px;
    outline-color: green;
}

.alert {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

#closeIcon {
    color: red;
    cursor: pointer;
    font-size: larger;
    background-color: white;
    padding: 5px;
}

#alertUpdateAddress {
    background-color: gainsboro;
    padding: 5%;
}

#description {
    width: 100%;
    height: 100px;
    padding-top: 35px;
    padding-right: 10px;
}

#cartCount {
    display: inline;
    margin-left: -10px;
    background: rgb(71 71 71 / 39%);
    border-radius: 50%;
    border: 1px solid white;
    height: 25px;
    width: 25px;
    font-size: 11px;
    padding: 3px;
    position: absolute;
    right: -13px;
    top: 0px;
}

.red-color {
    background: #ff3838;
}

.swal-modal .swal-text {
    text-align: justify;
}

.login-timer {
    width: 100%;
    padding: 3px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

#verifyCodeInputArea {
    display: none;
}

#resendVerifyButton {
    display: none;
    width: 50%;
    background-color: darkblue;
    opacity: 0.5;
}

#registerButton {
    display: none;
}

#verifyCode {
    display: none;
}

@media all and (display-mode: standalone) {
    .install-button {
        display: none;
    }
}

.g-recaptcha {
    transform: scale(0.77);
    direction: ltr;
}

#togglePassword {
    margin-top: 5px;
    float: left;
    cursor: pointer;
}

.addBtnArticle {
    border-radius: 0 5px 5px 0;
}

.enamad-area {
    width: 100px;
    position: fixed;
    left: 0px;
    bottom: 130px;
    overflow: hidden;
    border-radius: 0 15px 15px 0;
    background: white;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 35%);
    z-index: 99999;
    padding: 10px;

}

.enamad-area img {
    width: 100%;
}

.enamad-area-sidebar {
    width: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.enamad-area-sidebar a {
    width: 100px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 35%);
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.enamad-area-sidebar img {
    width: 100%;
}

@media screen and (max-width:650px) {
    .enamad-area {
        display: none;
    }
}

.detail-img-slider {
    position: relative;

}

.sell-label {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0px;
    left: 10px;
    background: orangered;
    font-size: 15px;
    font-weight: 700;
    color: white;
    border-radius: 0px 0px 15px 15px;
    padding: 5px;
    padding-top: 20px;
    border: 0px solid white;
    border-top: none;
    box-shadow: 0px 3px 7px 0px rgb(255 69 0 / 40%);
}

#paymentIssues {
    margin-bottom: 100px;
}

#btnPay {
    margin-top: 10px;
}


.customFaIcon {
    cursor: pointer;   
    padding: 2px;
    font-size: 15px;
}
.btnDownloadImage{
    border-radius: 13px;   
    background-color: #0ac480;
    color: white;
    border: white solid 1px;
    padding: 5px;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.8s ease;
}
.btnDownloadImage:hover{
    opacity: 1;
}