/*  BURGER
========================================== */

.burger {
    width: 50px;
    height: 40px;
    position: relative;
    border-radius: 4px;
    z-index: 20;
    float: right;
}

.burger span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}

.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 30px;
    height: 2px;
    background-color: rgb(95, 95, 95);
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.burger span::before,
.burger span::after {
    position: absolute;
    content: "";
}

.burger span::before {
    top: -9px;
}

.burger span::after {
    top: 9px;
}

.burger.clicked span {
    background-color: transparent;
}

.burger.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before,
.burger.clicked span:after {
    background-color: #adadad;
}

.burger:hover {
    cursor: pointer;
}


/*  NAV
========================================== */

.rnav nav {
    background-color: #fff;
    position: fixed;
    z-index: 18;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 300px;
    width: 100%;
    /*padding:0 20px 70px 20px;*/
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.rnav nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

.rnav nav.show ul.main-xs li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

.rnav nav.show ul.main-xs li:nth-child(1) {
    transition-delay: 0.15s;
}

.rnav nav.show ul.main-xs li:nth-child(2) {
    transition-delay: 0.3s;
}

.rnav nav.show ul.main-xs li:nth-child(3) {
    transition-delay: 0.45s;
}

.rnav nav.show ul.main-xs li:nth-child(4) {
    transition-delay: 0.6s;
}

.rnav nav.show ul.main-xs li:nth-child(5) {
    transition-delay: 0.75s;
}

.rnav nav.show ul.main-xs li:nth-child(6) {
    transition-delay: 0.9s;
}

.rnav nav.show ul.main-xs li:nth-child(7) {
    transition-delay: 1.05s;
}

.rnav nav.show ul.main-xs li:nth-child(8) {
    transition-delay: 1.2s;
}

.rnav nav.show ul.main-xs li:nth-child(9) {
    transition-delay: 1.35s;
}

.rnav nav.show .about,
.rnav nav.show .social,
.rnav nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

@media (min-width: 667px) {
    /*.rnav nav { padding: 120px 90px 70px 90px; }*/
}

.rnav nav .main-xs {
    list-style-type: none;
    width: 100%;
    padding: 0;
    background: #f7f7f7 !important;
    margin-bottom: 0;
}

.rnav nav ul.main-xs li {
    border-bottom: 1px solid #dcdada;
    /*margin-bottom: 3px;*/
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rnav nav ul.main-xs li:last-of-type {
    margin-bottom: 0px;
}

.rnav nav ul.main-xs li a {
    color: #000;
    font-family: IRAN-sans;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    padding: 11px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: none !important;
    width: 100%;
    text-align: center;
}

.rnav nav ul.main-xs li a span {
    color: #ce0a0a;
    padding-left: 5px;
    font-size: 16px;
}

.ul-icon-xs li {
    margin: 0 18px;
}

.ul-icon-xs {
    background: #b7b49c;
}

.rnav nav ul.main-xs li a:hover {
    color: #b7ac7f;
}

.rnav nav .about {
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.rnav nav .about p {
    color: #ffffff;
    font-family: "Spectral", serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 170%;
}

nav .social {
    margin-top: 40px;
    position: relative;
    padding-bottom: 30px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.rnav nav .social:after {
    content: "";
    width: 230px;
    height: 2px;
    background-color: #b7ac7f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.rnav nav .social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 25px;
}

.rnav nav .social a:last-of-type {
    margin-right: 0px;
}

.rnav nav .social a:hover svg path,
.rnav nav .social a:hover svg circle {
    fill: #b7ac7f;
}

.rnav nav .social a svg {
    width: 100%;
    height: 100%;
}

.rnav nav .social a svg path,
nav .social a svg circle {
    fill: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rnav nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.rnav nav ul.sub li {
    margin-bottom: 10px;
}

.rnav nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

.rnav nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rnav nav ul.sub li a:hover {
    color: #b7ac7f;
}


/*  OVERLAY
========================================== */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #b7ac7f;
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
}

.top-nav-xs {
    /*background:#f7f7f7;*/
    padding: 5px 5px 7px;
    /*position: fixed;*/
    width: 100%;
    z-index: 9;
    top: 0;
}

.info-xs .circle {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    margin: auto;
    border: 2px solid #f7f7f7;
    background: #dee2d5;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.info-xs .circle span {
    font-size: 3em;
    color: #868686;
}

.name-xs {
    margin-top: 10px;
    display: inline-block;
    color: #e7e7e7;
    line-height: 2;
    font-size: .9em;
}

.info-xs .circle img {
    width: 100%;
    height: 100%;
}

.logout-burger {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    direction: ltr;
    color: #efefef;
}

.logout-burger .exit {
    font-size: 12px;
}

.ul-icon-xs {
    /*position: fixed;*/
    bottom: 0;
    width: 100%;
    left: 0;
    background: #f3efd2;
    padding: 8px;
}

.ul-icon-xs li {
    margin: 0 8px;
}

.img-logo-hamburger {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid rgb(223, 223, 223);
}

.img-logo-hamburger img {
    width: 160px;
    margin: 10px 0;
}

.img-logo-hamburger p {
    font-size: 13px;
}

.ul-icon-xs li a span {
    font-size: 18px;
}

.ul-icon-xs li a {
    padding: 0.65rem 0.5rem !important;
    border-bottom: none !important;
    color: rgb(130, 130, 130);
}

.ul-icon-xs li a img {
    width: 16px;
    filter: brightness(55%);
}

.dnl-xs {
    display: flex;
    justify-content: center;
    background: rgb(0, 125, 132);
    color: #fff;
}

.dnl-xs a,
.dnl-xs a span {
    color: #fff !important;
}


/*بنر*/

.logo-xs img {
    width: 85px;
}

.cart-ico i {
    font-size: 2em;
    color: rgb(109, 109, 109);
}

.cart-ico {
    position: relative;
    top: 3px;
}


/*آکوردیون*/


/* accordion styles */

.accordion .card-header {
    cursor: pointer;
}

.accordion.heading-right .card-title {
    position: absolute;
    right: 50px;
}

.accordion.indicator-plus .card-header:after {
    font-family: 'icomoon';
    content: "\e93b";
    float: right;
}

.accordion.indicator-plus .card-header.collapsed:after {
    content: "\e93b";
}

.accordion.indicator-plus-before.round-indicator .card-titlek:before {
    font-family: 'icomoon';
    font-size: 13pt;
    content: "\e9a3";
    margin-left: 6px;
}

.accordion.indicator-plus-before.round-indicator .card-titlek.collapsed:before {
    content: "\e93b";
    color: #000;
}

.accordion.indicator-plus-before .card-titlek:before {
    /*font-family: 'FontAwesome';*/
    /*content: "\f068";*/
    float: right;
}

.accordion.indicator-plus-before .card-titlek.collapsed:before {
    content: "\f067";
}

.accordion.indicator-chevron .card-titlek:after {
    /*font-family: 'FontAwesome';*/
    /*content: "\f078";*/
    float: right;
}

.accordion.background-none [class^="card"] {
    background: transparent;
}

.accordion.border-0 .card {
    border: 0;
}

.acc-in .card-header,
.acc-in .card {
    background: #fff;
    border: none;
}

.body-in {
    padding: 5px 10px;
}

.body-in .card-body a {
    display: block;
    line-height: 2;
    color: rgb(102, 102, 102);
}

.body-in a {
    line-height: 2;
    color: rgb(102, 102, 102);
    display: block;
    padding: 8px 26px 8px 0;
    font-size: 14px;
}

.accordion-menu .card-header {
    padding: 0 20px 0 0;
    display: flex;
    align-items: center;
}

.accordion-menu .card-header a {
    padding: 0.75rem 0.25rem;
    width: 100%;
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    color: rgb(52, 58, 64);
}

.part-menu-xs {
    width: 50%;
    font-size: 13px;
    background: #ffefc8;
    border-left: 1px solid #e2e2e2;
    text-align: center;
}

.link-menu-xs:before {
    display: none;
}

.link-menu-xs a {
    color: #272727;
}

.ul-icon-xs {
    position: absolute;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

.rnav .social-head ul li a {
    color: #7b7b7b;
}

.rnav .clicked {
    left: -230px;
}

.fix-head {
    position: fixed;
    width: 100%;
    z-index: 12;
    background: #fff;
    top: 0;
}

.top-head-xs {
    border-top: 3px solid rgb(62, 144, 161);
    padding: 8px 0;
}

.head-btm-xs .box-baner-moshavere,
.head-btm-xs .btn-moshaver {
    width: auto;
    font-size: 14px;
}

.head-btm-xs {
    padding: 10px 0;
    background: rgb(233, 236, 239);
}

.ul-left-baner>li {
    padding: 0 8px;
    border-left: 1px solid rgb(107, 161, 173);
}

.ul-left-baner li a .ico-srch-xs {
    font-size: 23px;
    color: rgb(62, 144, 161);
}

.btn-user-xs {
    padding: 0 8px 0 0 !important;
    border: none !important;
}

.btn-user-xs .drop-user {
    background: transparent;
    border: none;
    color: rgb(62, 144, 161);
}

.btn-user-xs .drop-user span {
    font-size: 27px;
    color: rgb(62, 144, 161);
}

.ul-pro-xs li a {
    padding: 10px 20px;
    color: rgb(101, 101, 101);
    display: block;
    font-size: 15px;
}

.ul-pro-xs li a span {
    margin-left: 3px;
    font-size: 13px;
}

.social-head {
    padding: 10px 0;
}

.ul-user {
    margin: 0;
}

.ul-user li a {
    padding: 10px;
    display: block;
    border-bottom: 1px solid #eaeaea;
    text-align: right;
    color: rgb(62, 144, 161);
    font-size: 15px;
}

.ul-user li a i {
    margin-left: 4px;
}

.par-drop-user {
    padding: 0;
}