 * {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;

 }

 a {
     text-decoration: none;
     transition: all .4s ease-in-out;
     color: inherit;
 }

 a,
 button,
 input[type="button"] {
     cursor: pointer;
     transition: all .5s ease-in-out;
 }

 a:focus,
 a:hover {
     text-decoration: none;
     color: inherit;
 }

 button {
     background: transparent;
     border: none;
 }

 button:focus {
     outline: none
 }

 .list-inline-item:not(:last-child),
 ul {
     margin-right: 0;
 }

 ul {
     padding-left: 0;
     padding-right: 0;
     transition: all .4s ease-in-out;
     margin: 0;
 }

 ul li {
     list-style-type: none
 }

 :focus {
     outline: none;
 }

 .text-center {
     text-align: center;
 }

 .text-right {
     text-align: right
 }

 .text-left {
     text-align: left
 }

 /*
 .row {
     margin-left: 0;
     margin-right: 0;
 }
*/
 .padd-0 {
     padding-left: 0;
     padding-right: 0
 }

 .padd-5 {
     padding-left: 5px;
     padding-right: 5px
 }

 .sec-marg {
     margin-top: 40px;
     margin-bottom: 40px
 }

 .sec-padd {
     padding-top: 50px;
     padding-bottom: 50px;
 }

 .pl-10 {
     padding-left: 10px;
 }

 .pr-10 {
     padding-right: 10px;
 }

 .pt-10 {
     padding-top: 10px;
 }

 .pb-10 {
     padding-bottom: 10px;
 }

 .pl-20 {
     padding-left: 20px;
 }

 .pr-20 {
     padding-right: 20px;
 }

 .pt-20 {
     padding-top: 20px;
 }

 .pb-20 {
     padding-bottom: 20px;
 }

 .ml-10 {
     margin-left: 10px;
 }

 .mr-10 {
     margin-right: 10px;
 }

 .mt-10 {
     margin-top: 10px;
 }

 .mb-10 {
     margin-bottom: 10px;
 }

 .ml-20 {
     margin-left: 20px;
 }

 .mr-20 {
     margin-right: 20px;
 }

 .mt-20 {
     margin-top: 20px;
 }

 .mb-20 {
     margin-bottom: 20px;
 }

 .m-20 {
     margin: 20px;
 }

 .p-15 {
     padding: 15px;
 }

 .r-0 {
     border-radius: 0 !important;
 }

 .p-0 {
     padding: 0 !important;
 }

 .f-b {
     font-weight: 600;
 }


 .mx-1 {
     margin-left: .25rem !important;
 }

 :focus {
     box-shadow: none !important;
     border-color: inherit;
 }

 .d-none {
     display: none
 }

 .d-block {
     display: block
 }

 .owl-carousel {
     direction: ltr
 }

 .dropdown-toggle::after {
     display: none
 }

 .dropdown {
     display: inline-block;
 }

 .dropdown-menu {
     float: none;
     text-align: start;
 }

 select.form-control:not([size]):not([multiple]) {
     height: auto;
 }

 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 p {
     margin: 0;
 }

 .flex-grow-1 {
     flex-grow: 1
 }

 input[type=checkbox],
 input[type=radio] {
     position: relative;
     width: 20px;
     height: 20px;
     vertical-align: middle;
 }

 input[type=checkbox]:before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     border: 2px solid var(--main);
     content: "";
     position: absolute;
     background: #FFF;
     border-radius: 0;
 }

 input[type=checkbox]::after {
     background: transparent;
     border: 2px solid var(--main);
     top: 0px;
     left: 7px;
     width: 6px;
     height: 15px;
     content: "";
     position: absolute;
     border-top-color: transparent;
     border-left-color: transparent;
     transform: rotate(0deg) scale(0);
     transition: all 0.2s linear 0s;
 }

 input[type=checkbox]:checked::after {
     transform: rotate(45deg) scale(1);
 }

 input[type=radio]:before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     border: 2px solid var(--main);
     content: "";
     position: absolute;
     background: #fff;
     border-radius: 50%;
 }

 input[type=radio]:after {
     top: 50%;
     left: 50%;
     width: 12px;
     height: 12px;
     content: "";
     position: absolute;
     transform: translate(-50%, -50%) scale(0);
     background: var(--main);
     border-radius: 50%;
     transition: all 0.2s linear 0s;
 }

 input[type=radio]:checked::after {
     transform: translate(-50%, -50%) scale(1);
 }

 :root {
     --main: #F39200;
     --white: #ffffff;
     --gray: #7C7B7B;
 }

 .main-color {
     color: var(--main) !important;
 }

 .red-color {
     color: #FE8686
 }

 .red-back {
     background-color: #FE8686 !important
 }

 .green-back {
     background-color: #C1D354 !important
 }

 .grey-color {
     color: var(--gray);
 }

 .green-color {
     color: #C1D354
 }

 .font-11 {
     font-size: 11px;
 }

 .font-18 {
     font-size: 18px;
 }

 .font-20 {
     font-size: 20px;
 }

 .under-line {
     text-decoration: underline;
 }

 .overflow-auto {
     overflow: auto;
 }

 .btn-main {
     display: block;
     background: var(--main);
     color: var(--white) !important;
     width: 380px;
     max-width: 100%;
     padding: 0;
     border-radius: 6px;
     text-align: center;
     text-shadow: 0 0;
     margin: 20px auto;
     height: 51px;
     line-height: 51px;
 }

 .btn-main-w {
     background: #fff;
     color: var(--main) !important;
     border: 1px solid var(--main)
 }

 textarea {
     resize: none;
 }

 @font-face {
     font-family: "myFont";
     src: url(../fonts/JF-Flat-regular.ttf);

 }

 .rounded {
     border-radius: 12px !important;
 }

 .po_R {
     position: relative;
 }

 .overflow-hidden {
     overflow: hidden;
 }
 
 .container {
    max-width: 1210px;
}

 body {
     direction: rtl;
     text-align: right;
     font-family: "myFont";
     word-spacing: 1px;
     background: #FFFFFF;
     color: #000000;
     font-size: 15px;
     text-shadow: 0 0;
     overflow-x: hidden
 }
 
.allSecMargHome .sec-marg:first-child , 
.allSecMargHome .sec-marg:nth-child(2){
    display: none;
}

 header {
     background: #FFFFFF;
     box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
 }

 .top_header {
     padding: 8px 0;
 }

 .top_header .niceSelect {
     height: auto;
     line-height: normal;
     padding: 0 5px !important;
     border: none;
 }

 .top_header .nice-select:after {
     display: none
 }


 .under_header {
     border-top: 1px solid #EEE;
     border-bottom: 1px solid #EEE;
     padding: 10px 0
 }

 .the_logo {
     margin-inline-end: 50px
 }

 .the_logo img {
     max-width: 93px;
     max-height: 94px;
 }

 .search {
     display: flex;
     align-items: center;
     flex-grow: 1
 }

 .search .form-control {
     border-radius: 0 6px 6px 0;
     border-inline-end: none;
     height: 52px;
     background: #FFF
 }

 .search .btn-main {
    width: auto;
    line-height: normal;
    padding: 13px 27px;
    margin: 0;
    border-radius: 6px 0 0 6px;
    height: 52px;
 }


 .top_link {
     display: flex;
     align-items: center;
     gap: 40px;
     margin: 0 60px 0 50px;
 }

 .top_link a {
     width: 45px;
     height: 45px;
     border: 1px solid #EEE;
     display: block;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative
 }

 .top_link a img {
     width: 17px
 }

 .top_link a span {
     position: absolute;
     width: 15px;
     height: 15px;
     background: var(--main);
     display: flex;
     justify-content: center;
     align-items: center;
     color: #FFF;
     border-radius: 50%;
     left: -10px;
     font-size: 10px;
 }

 .under_header .dropdown img {
     width: 35px;
     height: 35px;
     margin-inline-end: 4px;
     border-radius: 5px;
     border: 1px solid #42484C;
 }

 .under_header .dropdown.show .dropdown-toggle span {
     color: #42484C !important
 }

 .under_header .dropdown.show .dropdown-toggle span > i {
     transform: rotate(270deg);
 }

 .dropdown-menu {
     padding: 0;
     border-radius: 5px;
     top: 6px !important;
     width: 240px;
 }

 .dropdown-menu:after {
     content: "";
     position: absolute;
     border-width: 6px;
     border-style: solid;
     border-color: var(--main) transparent transparent var(--main);
     top: 0;
     left: 25px;
     transform: translateY(-50%) rotate(45deg);
 }

 .dropdown-menu .dropdown-item {
     padding: 13px 20px;
     color: #42484C;
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-radius: 6px;
     position: relative;
 }

.dropdown-menu .dropdown-item:hover{
        background-color: #f8f9fa !important;
}

 .dropdown-menu .dropdown-item:not(:last-child):after {
     content: "";
     position: absolute;
     display: block;
     width: calc(100% - 15%);
     height: 1px;
     background: #EEE;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);

 }


 .nav_bar {
     padding: 16px 10%;
     background: #000000;
     color: #FFF;
     display: flex;
     justify-content: space-between;
     box-shadow: 0 5px 5px 0 #000000c9;
     gap: 30px;
     width: 100%;
     top: 0;
     left: 0;
     overflow: auto;
 }

 .nav_bar a{
     white-space: nowrap;
 }

 .nav_bar.nav_bar_Fixed {
     position: fixed;
     z-index: 50
 }

 .noti_A span {
     position: absolute;
     right: -6px;
     top: -8px;
     background: crimson;
     color: #FFFFFF;
     width: 22px;
     height: 22px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     overflow: hidden;
     border: 1px solid #FFFFFF;
 }

 .nav_bar li.active {
     color: var(--main);
 }

 .close-open-nav {
     width: 25px;
     height: 25px;
     margin-inline-start: 4px;
     position: relative;
     display: none;
 }

 .close-open-nav > div {
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     width: 100%;
     height: 100%;
     cursor: pointer;
 }

 .close-open-nav > div span {
     width: 100%;
     height: 3px;
     background: var(--main);
     border-radius: 20px;
     display: block;
     transition: all 0.3s linear 0s;
 }

 .close-open-nav.active span:first-of-type {
     transform: translateY(7px) rotate(45deg);
 }

 .close-open-nav.active span:nth-child(2) {
     opacity: 0;
 }

 .close-open-nav.active span:last-of-type {
     transform: translateY(-9px) rotate(-45deg);
 }

 .owl-index img {
     width: 100%;
     height: 475px;
     /*object-fit: cover;*/
     filter: brightness(0.7)
 }

 .owl-index .owl-dots {
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
     bottom: 12px;
     left: 50%;
     transform: translateX(-50%);
     gap: 5px
 }

 .owl-index .owl-dot {
     width: 22px;
     height: 22px;
     border-radius: 50px;
     background: #FFF;
     position: relative;
 }

 .owl-index .owl-dot:after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0);
     width: 100%;
     height: 100%;
     background: var(--main);
     border-radius: 50%;
     transition: all 0.3s linear 0s
 }

 .owl-index .owl-dot.active:after {
     transform: translate(-50%, -50%) scale(1);
 }


.owl-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px
}

.owl-nav > div{
    background: var(--main);
    color: #FFF;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 22px;
}

.owl-index .owl-nav {
    margin: 0
}
 .owl-index .owl-nav > div {
     background: #FFF;
     color: #000000;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     left: 8%;
     transition: all 0.2s linear 0s;
     opacity: 0.4
 }

 .owl-index .owl-nav > div.owl-prev {
     right: unset;
     right: 8%;
 }

 .owl-index .owl-nav > div:hover {
     background: var(--main);
     color: #FFF;
     opacity: 1
 }



 .title_LARG {
     display: flex;
     align-items: center;
     gap: 25px;
     margin-bottom: 22px
 }

 .title_LARG:after,
 .title_LARG:before {
     content: "";
     display: block;
     flex-grow: 1;
     height: 4px;
     background: #000000
 }

 .all_sections {
    display: grid;
    grid-gap: 7px;
    grid-template-columns: repeat(7, 1fr);
 }

 .all_sections .item {
    text-align: center;
    background: #000000;
    padding: 17px 10px;
    border-radius: 9px;
    color: #FFF;
    font-size: 18px;
 }

 .all_sections .item img {
     width: 100px;
     height: 60px;
     object-fit: contain;
     margin-bottom: 9px
 }

 .btn-main_ss {
     width: 150px
 }

 .title_SEC {
     /*width: 150px;*/
     /*text-align: center;*/
     /*text-shadow: 0 0;*/
     /*height: 51px;*/
     /*line-height: 51px;*/
     /*color: #FFF;*/
     /*background: #000000;*/
     /*border-radius: 6px;*/
 }
 
 .title_SEC + .btn-main_ss{
         background: none;
    color: var(--main) !important;
    height: auto;
    line-height: normal;
    width: auto;
 }
 

 .box_product {
border: 1px solid #EEE;
    box-shadow: 0 0 5px 0 #fffbf6;
    margin: 10px 0;
    border-radius: 8px;
    overflow: hidden;
    font-size: 17px;
    position: relative;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 }

 .box_product img {
     width: 170px !important;
     height: 180px;
     display: block;
     object-fit: cover;
     margin: auto;
     margin-bottom: 15px;
     max-width: 100%;
 }

 .box_product .info {
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .box_product .discr {
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .jq-ry-normal-group svg {
     stroke: #FFC107;
     stroke-width: 15;

 }

 .salary_Discount {
     color: var(--gray);
     text-decoration: line-through
 }

 .box_product .btn {
     text-align: center;
     display: block;
     padding: 14px 5px;
     background: #000000;
     color: #FFF;
     border: none;
     border-radius: 0;
     transition: all 0.2s linear 0s
 }

 .box_product > span {
     content: "";
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: 2px solid transparent;
     border-radius: 8px;
     z-index: -1;
     transition: all 0.2s linear 0s
 }

 .box_product .btn:hover + span {
     border-color: var(--main);
 }

 .box_product .btn:hover {
     background: var(--main);
 }

 .btn_favor {
     color: #e1dfe1;
     display: flex;
     font-size: 27px;
     cursor: pointer;
     position: absolute;
     left: 10px;
     top: 10px;
     z-index: 3;
     transition: all 0.3s linear 0s;
 }

 .btn_favor.active {
     color: #FE8686 !important;
 }

 .modal-dialog {
     max-width: 700px;
 }

 .modal .close {
     width: 30px;
     height: 30px;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 1;
     border-radius: 50%;
     font-size: 32px;
     color: crimson !important;
     text-shadow: none;
     border: 2px solid crimson !important;
     position: absolute;
     top: 1rem;
     right: 1rem;
 }

 .modal-content {
     border: none;
     border-radius: 25px;
 }

 .forms_password > div:not(:first-child) {
     display: none
 }

 .the_Title {
     margin-bottom: 40px
 }

 .the_Title p {
     color: var(--gray);
     max-width: 325px;
     margin: auto;
 }

 .TERMS {
     line-height: 1.8;
     color: #57565C;
     font-size: 16px;
 }


 .info_connectUs {
     display: flex;
     flex-direction: column;
     gap: 35px
 }


 .info_connectUs ul {
     display: flex;
     flex-wrap: wrap;
     gap: 22px
 }


 .info_connectUs ul img {
     width: 44px;
     height: 44px;
     border-radius: 50%;
 }


 .info_connectUs ul li {
     display: flex;
     align-items: center;
     gap: 15px;
     font-weight: bold
 }

 .nav-pills {
     gap: 20px;
     flex-wrap: nowrap
 }

 .nav-pills .nav-item {
     width: 220px;
     max-width: 100%;
     margin: 10px 0;
 }

 .nav-pills .nav-link {
     border-radius: 2px;
     padding: 13px 20px;
     text-align: center;
     background: #F3F3F3;
     width: 100%;
 }


 .nav-pills .nav-link.active,
 .nav-pills .show > .nav-link {
     background-color: var(--main);
 }

 .box_order {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap-reverse;
     padding: 10px 20px;
     border: 1px solid #EEE;
     border-radius: 7px;
     margin: 10px 0
 }

 .box_order ul li {
     display: flex;
     margin: 10px 0
 }

 .box_order ul li aside {
     margin-inline-end: 18px;
     color: var(--gray);
 }


 .box_order .box_info {
     background: var(--main);
     color: #FFF;
     padding: 9px 18px;
     border-radius: 2px;
     margin-right: auto
 }


 .box_vehicles {
     display: flex;
     justify-content: space-between;
     padding: 10px 5px;
     border-bottom: 1px solid #EEE;
     margin: 10px 0
 }

 .box_vehicles ul:first-child {
     max-width: 220px;
 }


 .box_vehicles ul li {
     margin: 5px 0
 }

 .box_vehicles .info li {
     max-width: 185px;
 }


 .outer_logins_page {
     display: flex;
 }

 .outer_logins_page > div {
     flex: 1;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .outer_logins_page .paner_login {
     background: #000000;
     color: #FFF;
     position: sticky;
     top: 0;
     left: 0;
     height: 100%;
     text-align: center
 }

 .paner_login img {
     max-width: 200px;
     max-height: 150px;
 }

 .outer_logins_page .form-content {
     flex-basis: 450px;
 }

 .form-content .title_L {
     font-size: 22px;
     margin-bottom: 15px;
 }



 .form-group {
     margin-bottom: 12px;
 }

 .form-content .form-group > label:first-child {
     display: inline-block;
     margin-bottom: 6px;
     color: #8A8A8A;
     font-size: 13px;
 }

 .form-control {
     padding: 15px 10px;
     border-radius: 6px;
     font-size: 13px;
     border-color: #EEE;
     background: #FBFBFB
 }



 .outer_logins_page > div .form-control,
 .modal-body .form-control {
     background: #FFF
 }

 .form-control:focus {
     border-color: var(--main) !important
 }


 textarea.form-control {
     height: 140px
 }

 .icon_fa {
     position: absolute;
     font-size: 18px;
     left: 10px;
     color: #707070;
     top: 50%;
     transform: translateY(-50%)
 }

 .chose_lphone {
     position: absolute;
     top: 50%;
     left: 1px;
     height: calc(100% - 21px);
     transform: translateY(-50%);
     padding: 0;
     padding-inline-end: 22px;
     padding-inline-start: 4px;
     border-radius: 0;
     line-height: 31px;
     border: none;
     border-inline-start: 1px solid #EEE;
     z-index: 5;
     background: transparent
 }

 .chose_lphone:after {
     right: unset;
     left: 6px;
 }

 label.error {
     font-size: 13px;
     font-weight: bold;
     margin: 0;
     color: crimson;
 }

 .form-content input[type=checkbox]:before {
     border: 1px solid #ced4da;
 }

 /*--------------------------------*/

 .images-upload-block {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     border: 1px solid var(--main);
     position: relative
 }


 .images-upload-block .upload-img,
 .images-upload-block .uploaded-block .close {
     position: absolute;
     width: 27px;
     height: 27px;
     border-radius: 50%;
     background: var(--main);
     overflow: hidden;
     display: flex;
     color: #FFFFFF;
     font-size: 12px;
     opacity: 1;
     justify-content: center;
     align-items: center;
     z-index: 3;
     right: -6px;
     bottom: 5px;
     margin: 0;
     border: 2px solid #FFF;
 }


 .images-upload-block .image-uploader {

     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0
 }

 .images-upload-block img {
     border-radius: 50%;
     max-width: 100%;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .images-upload-block .uploaded-block {
     position: absolute;
     top: 0px;
     left: 0px;
     width: 100%;
     height: 100%;
     border-radius: 50%;
 }


 .select2-container {
     width: 100% !important;
 }

 .select2-container--default .select2-selection--single .select2-selection__rendered {
     line-height: 51px;
     padding: 0px 13px;
     font-size: 13px;
     color: #495057;
 }

 .select2-container .select2-selection--single {
     height: 51px;
     border-radius: 5px;
     border-color: #EEE;
     background: #FBFBFB
 }

 .select2-container--default .select2-selection--single .select2-selection__arrow {
     top: 50%;
     transform: translateY(-50%);
     left: 11px;
 }

 .select2-container--default .select2-selection--single .select2-selection__arrow b {
     border-width: 2px;
     width: 10px;
     height: 10px;
     border-color: #888 transparent transparent #888;
     transform: rotate(-45deg);
     transition: all 0.1s linear 0s;
 }

 .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
     border-width: 2px;
     width: 10px;
     height: 10px;
     border-color: #888 transparent transparent #888;
     transform: rotate(-135deg);
 }

 .select2-container--default .select2-results__option--highlighted[aria-selected] {
     background-color: var(--main);
 }

 .select2-dropdown {
     border: 1px solid #EEE;
 }

 /*--------------------------------*/

 .all_notifac li {
     display: flex;
     border: 1px solid #EEE;
     border-radius: 10px;
     align-items: center;
     margin: 10px 0
 }

 .all_notifac li .img {
     padding: 33px 20px;
     border-inline-end: 1px solid #EEE;
 }

.btnFillter_product {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid var(--main);
    font-size: 27px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: var(--main);
    transform: rotate(90deg);
    padding: 0px !important;
    display: none;
    flex-shrink: 0;
}


 .THE_filters {
     background: #FFF;
     margin: 10px 0;
     box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
     padding-bottom: 1px;
     border-radius: 10px;
     width: 255px;
     margin-inline-end: 15px;
     transition: all 0.2s linear 0s;
     flex-shrink: 0;
 }

 .title_filt {
     text-align: center;
     color: #FFF;
     border-radius: 4px;
     background: #000000;
     padding: 13px 5px;
     margin: 0
 }

 .info_filter {
     padding: 15px 20px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     max-height: 200px;
     overflow: auto;
 }

 .THE_filters .btn-main {
     background-image: linear-gradient(to right top, #f2b44a, #f2b14a, #f2ae4a, #f2ac4b, #f2a94b, #f2a649, #f2a248, #f29f46, #f29941, #f1933d, #f18d39, #f08735);
     position: relative;
     margin: auto;
     margin-bottom: 20px;
     width: calc(100% - 30px)
 }

 .THE_filters .btn-main img {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
 }

 .theme-blue .back-bar .selected-bar {
     background: transparent !important
 }

 .theme-blue .back-bar .pointer {
     width: 25px;
     height: 25px;
     top: -7px;
     background: #000000;
     border: none;
     border-radius: 50%;
 }

 .theme-blue .back-bar {
     height: 12px;
     border-radius: 4px;
 }

 .slider-container .scale {
     display: none
 }

 .slider-container .back-bar .pointer-label {
     top: 23px;
     font-size: 14px;
     transform: translateX(-2px);
 }

 .slider-container {
     margin: auto
 }


 .pagination {
     gap: 8px;
     margin-top: 25px
 }

 .pagination .page-link {
     margin: 0px !important;
     border-radius: 5px !important;
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #42484C;
 }

 .pagination .page-item.active .page-link {
     background: #000000;
     color: #FFF;
     border-color: #000000
 }


 .methods_pay {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap
 }

 .methods_pay .item {
     width: 240px;
     background: #F7F7F7;
     border-radius: 12px;
     height: 170px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .methods_pay .item i {
     font-size: 27px;
     margin-bottom: 10px
 }

 .methods_pay .item:hover {
     background: #000000;
     color: #FFF
 }


 .box_invoices {
     margin: 10px 0;
     display: flex;
     border: 1px solid #EEE;
     border-radius: 8px;
     padding: 10px 15px;
     align-items: center;
     gap: 7px;
     flex-wrap: wrap-reverse;
 }

 .box_invoices ul li {
     margin: 7px 0
 }


 .box_invoices .btns {
     font-size: 16px;
     gap: 0px;
     margin-right: auto;
 }

 .box_invoices .info span {
     min-width: 100px;
     display: inline-block;
     color: var(--gray);
 }

 .map_forma {
     width: 100%;
     height: 290px;
     border-radius: 20px;
     margin: 10px 0
 }

 .all_details_order > div {
     margin: 22px 0;
 }

 .all_details_order h5 {
     margin-bottom: 16px
 }

 .all_details_order .details li {
     display: flex;
     margin: 12px 0
 }

 .all_details_order .details_1 aside:first-child {
     min-width: 200px
 }

 .all_details_order .details li aside:first-child {
     color: var(--gray)
 }

 .all_details_order .details li img {
     border: 1px solid #EEE;
     border-radius: 5px;
     padding: 5px;
     height: 115px;
     width: 125px;
     object-fit: cover;
 }

 .all_details_order .details_2 li {
     justify-content: space-between;
 }

 .all_details_order .details_2 aside:last-child {
     color: var(--main)
 }

 .all_details_order .details .Total {
     padding: 20px 0;
     border-top: 1px solid #EEE;
     display: flex;
     justify-content: space-between;
     font-weight: bold
 }

 .box_product_order {
     overflow: hidden;
     border: 1px solid #EEE;
     border-radius: 8px;
     display: flex;
     margin: 10px 0;
     align-items: center;
 }

 .box_product_order > img {
     width: 130px;
     height: 130px;
     object-fit: cover;
     border-inline-end: 1px solid #EEE;
     flex-shrink: 0;
 }

 .box_product_order .info {
     display: flex;
     flex-grow: 1;
     justify-content: space-between;
     align-items: center;
     padding: 15px;
     ;
     flex-wrap: wrap;
     gap: 5px
 }

 .box_product_order .info ul {
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     gap: 10px
 }

 .box_product_order .info > div {
     margin-right: auto;
 }

 .box_product_order .info aside {
     width: 90px;
     border: 1px solid #EEE;
     border-radius: 4px;
     text-align: center;
     padding: 8px 5px;
     box-shadow: -2px 2px 5px 0 rgba(0, 0, 0, 0.1);
     margin-right: auto;
 }

 .form_reason img {
     width: 120px;
     height: 120px;
     margin-bottom: 10px;
 }

 .form_reason .TIO {
     max-width: 300px;
     margin: 15px auto;
 }

 .two_butn {
     display: flex;
     gap: 12px
 }

 .two_butn .btn-main {
     margin: 20px 0 0;
 }

 .form_reason .form-content .form-group > div label {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin: 15px 0;
 }


 .box_black_info {
     background: #272833;
     color: #FFF;
     display: flex;
     flex-direction: column;
     gap: 8px;
     align-items: center;
     padding: 35px 5px;
     font-size: 20px;
     width: 300px;
     margin: 0 auto 20px;
     border-radius: 5px;
 }

 .to_payo > div {
     padding: 24px 0;
     border-width: 1px 0;
     border-style: solid;
     border-color: #EEE
 }

 .to_payo .title {
     font-size: 19px;
     margin-bottom: 35px;
     display: flex;
     align-items: center;
 }

 .to_payo .title span {
     background: #EFEFEF;
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     font-size: 16px;
     color: var(--main);
     margin-inline-end: 15px;
 }

 .to_payo aside {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-inline-start: 8%
 }

 .to_payo aside .btn-main {
     margin: 0;
     background: #000000;
     width: 180px;
 }


 .table_L_info {
     width: 100%;
     margin: 5px 0;
     min-width: 700px;
     text-align: center;
 }

 .table_L_info th,
 .table_L_info td {
     padding: 17px 3px;
     border-bottom: 1px solid #EEE;
 }

.table_L_info img{
    width: 110px;
    height: 110px;
    border-radius: 5px;
    object-fit: cover
}

 .uplood_img input[type="file"] {
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     border-radius: 6px;
     cursor: pointer;
     opacity: 0;
     z-index: 1
 }

 .uplooder_img .uploaded-block {
     width: 150px;
     height: 150px;
     overflow: hidden;
     border-radius: 10px;
     border: 1px solid #EEE;
     margin: 25px auto;
     position: relative;
 }

 .uplooder_img .uploaded-block img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .uplooder_img .uploaded-block .close {
     position: absolute;
     right: 5px;
     top: 5px;
     z-index: 5;
     color: #dd6565;
     opacity: 1;
     text-shadow: none;
     font-size: 16px;
 }

 .box-bank {
     background: #404044;
     color: #FFF;
     display: flex;
     align-items: center;
     border-radius: 4px;
     overflow: hidden;
     border: 1px solid #EEE;
     margin: 10px 0
 }

 .box-bank img {
     width: 115px;
     height: 115px;
     object-fit: cover;
 }

 .box-bank ul {
     padding: 10px 20px;
     display: flex;
     flex-direction: column;
     gap: 5px
 }

 .table_Basket {
     width: 100%;
     border-bottom: 1px solid #EEE;
     margin: 5px 0;
     text-align: center;
     vertical-align: middle;
     min-width: 800px
 }

 .table_Basket th,
 .table_Basket td {
     padding: 15px 3px;
     width: 1%;
 }

 .table_Basket th {
     border-bottom: 1px solid #EEE;
     color: var(--gray)
 }


 .table_Basket .box_product_order {
     margin: 0 auto;
     border: none;
     align-items: center;
 }

 .table_Basket .box_product_order > img {
     width: 110px;
     height: 110px;
     border: 1px solid #EEE;
     border-radius: 5px;
     object-fit: cover;
 }

 .table_Basket .box_product_order .info {
     padding: 5px 18px;
     text-align: start;
 }

 .btn_delet {
     font-size: 20px;
     border: 1px solid #EEE;
     display: flex;
     justify-content: center;
     align-items: center;
     width: 33px;
     height: 33px;
     margin: auto;
     background: #FFF;
     box-shadow: 0 0 3px 0 rgb(0 0 0 / 20%);
     color: #FE8686
 }


 .counter {
     display: inline-flex;
     width: 200px;
     gap: 3px
 }

 .counter .qty-val,
 .counter .qty-order-val {
     width: 100%;
     padding: 8px;
     font-weight: bolder;
     text-align: center;
     background: #FFF;
     border: 1px solid #EEE;
     border-radius: 3px;
     box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
 }

 .counter > a {
     width: 75px;
     border: 1px solid #EEE;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: bolder;
     border-radius: 3px;
     box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
     color: #8A8787;
     background: #EFEFEF;
     transition: all 0.2s linear 0s;
 }

 .counter > a:hover {
     background: #42484C !important;
     color: #FFF
 }

 .all_details_order .details .search {
     width: 420px;
     max-width: 100%;
     margin: 40px auto;
 }

 .form_reason2 .form-content .form-group > div label {
     justify-content: flex-start;
     margin: 20px 0;
     gap: 25px
 }

 .form_Product-details .form-group > div {
     display: flex;
     align-items: center;
     flex-wrap: wrap
 }

 .form_Product-details .form-group > div label {
     margin: 0;
     min-width: 150px
 }


 .form_Product-details .counter > a {
     background: #FFF;
 }


 .owl-product {
     border: 1px solid #EEE;
     border-radius: 5px;
     overflow: hidden;
 }

 .owl-product .item {
     width: 100%;
     height: 360px;
     position: relative;
 }

 .owl-product img {
     object-fit: cover;
     width: 100%;
     height: 100%;
     max-width: 100%;
     background: #FFF;
 }

 .navigation-img-wrapper {
     display: flex;
     gap: 30px;
     margin: 25px 0 20px;
     padding: 3px 0;
     overflow: auto;
 }

 .navigation-img-wrapper > div {
     flex: 1;
     border: 1px solid #EEE;
     border-radius: 5px;
     max-width: 200px;
     flex-shrink: 0;
     min-width: 140px;
     height: 100px;
     cursor: pointer;
     opacity: 0.6;
     transition: all 0.3s linear 0s
 }

 .navigation-img-wrapper > div img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     max-width: 100%;
 }

 .navigation-img-wrapper > div.active {
     border-color: var(--main);
     opacity: 1
 }

 .oute-owl-product {
     margin-inline-start: 45px;
 }

 .share_favo {
     position: absolute;
     right: 5px;
     font-size: 22px;
     color: #FFF;
     top: 50%;
     transform: translateY(-120%);
     display: flex;
     flex-direction: column;
     gap: 15px
 }


 .share_favo span {
     width: 35px;
     height: 35px;
     background: var(--main);
     display: flex;
     justify-content: center;
     align-items: center;
     position: static;
     color: #FFF;
     font-size: 18px;
     border-radius: 50%;
     cursor: pointer;
 }

 .btns_shares {
     border: 1px solid var(--main);
     background: var(--main);
     color: var(--main);
     flex-direction: column;
     padding: 2px;
     border-radius: 50px;
     position: absolute;
     bottom: 130%;
     left: 50%;
     transform: translateX(-200%);
     z-index: 0;
     display: flex;
     opacity: 0;
     transition: all 0.3s linear 0s
 }

 .btns_shares.active {
     opacity: 1;
     transform: translateX(-50%);
 }

 .btns_shares a {
     width: 38px;
     height: 38px;
     border: 1px solid var(--main);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #FFF
 }

 .btns_shares:after {
     content: "";
     width: 15px;
     height: 15px;
     background: var(--main);
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translate(-50%, 40%) rotate(45deg);
     z-index: -1;
 }



 .Choose_option[type=radio] {
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     z-index: 2;
     cursor: pointer;
     opacity: 0
 }

 .Choose_option + span,
 .Choose_option ~ div > span:last-child,
 .Choose_option:checked ~ div > span:first-child {
     display: none;
 }

 .Choose_option:checked + span,
 .Choose_option:checked ~ div > span:last-child {
     display: block;
 }


.box-Evaluation{
    border: 2px solid #EEE;
    border-radius: 10px;
    padding: 15px
}
.box-Evaluation img{
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    margin-inline-end: 8px
}

.owl-fillterCompar .btn_F{
    padding: 0;
    width: 150px;
    height: 52px;
    background: #F5F5F5;
    color: #8D8D8D;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #F5F5F5
}

.owl-fillterCompar .btn_F.active{
    border-color: var(--main);
    background: #FFFFFF;
    color: var(--main)
    
}


footer {
    display: none;
}


 footer {
     background: #FFF;
     padding: 15px 0 0 0;
     border-top: 30px solid #FFF3DF
 }

 .logo_F {
     max-width: 115px;
     max-height: 200px;
 }

 .info_footer ul li {
     flex-basis: 50%;
     display: flex;
     align-items: center;
     margin: 7px 0
 }

 .info_footer ul li img {
     width: 45px;
     height: 45px;
     flex-shrink: 0;
     margin-inline-end: 4px
 }

 .title_F {
     margin: 25px 0;
 }

 .links_footer li {
     margin: 13px 0;
     padding-inline-start: 20px;
     position: relative
 }

 .links_footer li:after {
     content: "";
     width: 10px;
     height: 3px;
     background: #42484C;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     right: 0px;
 }

 .links_footer.link_App li:after {
     display: none
 }

 .links_footer.link_App li {
     padding: 0
 }

 .link_App img {
     width: 200px;
     height: 60px;
     border-radius: 6px
 }

 .undr_footer {
     padding: 15px 0;
     margin-top: 30px;
     color: #FFF;
     background: #000000;
     display: flex;
     justify-content: space-between;
 }

 .social_media li {
     margin: 0 6px 12px;
 }

 .social_media li img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
 }


 .info_UF img {
     width: 65px;
     height: 60px;
     object-fit: contain;
     margin-inline-start: 5px;
 }

.itemProduct_Evalu img{
    width: 130px;
    height: 130px;
    border-radius: 5px;
    object-fit: cover;
    margin-inline-end: 15px
}

.itemProduct_Evalu{
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #EEE
}

.itemProduct_Evalu:last-child{
    border: none
}

.FAQ-accordion{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start
}
.FAQ-accordion .card{
    border-radius: 0;
    border: none
}

.FAQ-accordion .btn_accord{
    text-align: start;
    padding: 15px;
    background: #FFF;
    border: 2px solid #D3D2D2;
    border-radius: 10px
}
.FAQ-accordion .btn_accord.btn_accord:not(.collapsed){
    background: #FBE9D3;
    border-color: var(--main)
}



 /*Extra small devices (portrait phones, less than 576px)*/
 @media (max-width: 575.98px) {
     
.all_sections .item {
    padding: 12px 5px;
    font-size: 14px;
}
     
     .all_sections .item img {
    width: 100%;
    height: 35px;
}
     
 }

 /*Small devices (landscape phones, less than 768px)*/
 @media (max-width: 767.98px) {

     .sec-marg {
         margin-top: 20px;
         margin-bottom: 20px;
     }

     .the_Title {
         margin-bottom: 20px;
     }

     /* .close-open-nav {
         display: block;
     }

     .nav_bar {
         display: block !important;
         position: fixed;
         right: 0;
         top: 0;
         width: 300px;
         height: 100%;
         z-index: 40;
         color: #FFFFFF;
         transform: translateX(100%);
         padding: 15px;
     }

     .nav_bar.active {
         transform: translateX(0px)
     }

     .nav_bar li {
         margin-bottom: 15px;
         transition: all 0.3s linear 0s
     }

     .nav_bar li:hover {
         padding-inline-start: 5px
     }*/

     .top_header > div > div > span {
         display: none
     }

     .owl-index img {
         height: 280px
     }

     .owl-index .owl-nav > div {
        left: 3%;
     }

     .owl-index .owl-nav > div.owl-prev {
         right: 3%
     }

     .title_LARG {
         gap: 15px;
         margin-bottom: 15px;
     }

     .undr_footer > div > .d-flex {
         flex-wrap: wrap;
     }

     .undr_footer > div > .d-flex > div:nth-child(2) {
         width: 100%;
         order: 3;
         text-align: center;
         margin-top: 8px
     }

     .info_UF img {
         width: 50px;
         height: 45px;
         margin-inline-start: 1px;
     }

     .social_media li {
         margin: 0 4px 4px;
     }

     .info_footer ul li img {
         width: 35px;
         height: 35px;
         margin-inline-end: 4px;
     }

     .link_App {
         display: flex;
         gap: 5px
     }

     .link_App img {
         width: 100px;
         height: 40px;

     }

     .logo_F {
         max-width: 170px;
         max-height: 46px;
     }

     .title_F {
         margin: 10px 0;
     }

     .undr_footer {
         padding: 10px 0;
         margin-top: 10px;
     }

     .links_footer li {
         margin: 8px 0;
     }

     .outer_logins_page {
         flex-direction: column-reverse;
     }

     .outer_logins_page .paner_login {
         position: static;
         padding: 10px
     }

     .paner_login img {
         margin-bottom: 4px;
         max-width: 63px;
         max-height: 75px;
     }

     .outer_logins_page > div {
         min-height: auto
     }

     .info_connectUs {
         gap: 12px
     }

     .all_details_order .details_1 aside:first-child {
         min-width: 120px;
     }

     .to_payo aside {
         margin-inline-start: 0px;
     }
     

.all_sections {
    display: grid;
    grid-gap: 7px;
    grid-template-columns: repeat(4, 1fr);
}


 }

 /*Medium devices (tablets, less than 992px)*/

 @media (max-width: 991.98px) {

     .the_logo {
         margin-inline-end: 10px;
     }

     .the_logo img {
         max-width: 64px;
         max-height: 67px;
     }

     .top_link {
         gap: 10px;
         margin: 0 0 0 8px;
     }

     .under_header > div > .d-flex {
         flex-wrap: wrap
     }

     .under_header .search {
         width: 100%;
         order: 3;
         margin-top: 8px
     }

     .under_header .dropdown img {
         margin: 0
     }

     .top_link a {
         width: 40px;
         height: 40px;
     }

     .top_link a span {
         left: -3px;
         top: -3px;
     }
     
     .btnFillter_product {
    display: block;
}

     .THE_filters{
         position: fixed;
         top: 0;
         right: 0;
         height: 100%;
         margin: 0;
         padding: 10px;
         z-index: 50;
         transform: translateX(100%);
         overflow: auto;
     }
     
     .THE_filters.active {
    transform: translateX(0);
}

 }

 /*Large devices (desktops, less than 1200px)*/
 @media (max-width: 1199.98px) {}


 /*============================ start loader================================== */



 .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 9999999999;
     background: #000000;
     overflow: hidden;
     display: -webkit-flex;
     display: -moz-flex;
     display: -ms-flex;
     display: -o-flex;
     display: flex;
     -ms-align-items: center;
     align-items: center;
     justify-content: center;
 }

 .loader img {
     animation: logoeffect2 0.9s linear 0s infinite;
     position: relative;
     width: 100px;
 }


 @keyframes logoeffect2 {


     100% {

         transform: scale(1.5);
         opacity: 0;
     }

 }
 
 .OpenFancyboxZoom{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255,255,255, 0.7);
    border: 1px solid var(--main);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main) !important;
 }


 /*============================ end loader================================== */
 ::-webkit-scrollbar,
 body::-webkit-scrollbar,
 .scroll::-webkit-scrollbar {
     width: 6px;
     height: 6px;

 }

 ::-webkit-scrollbar-track,
 body::-webkit-scrollbar-track,
 .scroll::-webkit-scrollbar-track {
     box-shadow: inset 0 0 6px #FFFFFF;
     background: #FFFFFF
 }

 ::-webkit-scrollbar-thumb,
 body::-webkit-scrollbar-thumb,
 .scroll::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.3);
     border-radius: 20px;
 }

 ::-webkit-scrollbar-thumb:hover,
 body::-webkit-scrollbar-thumb:hover,
 .scroll::-webkit-scrollbar-thumb:hover {
     background: rgba(0, 0, 0, 0.5);
 }