body{
    padding:0 !important;
    margin: 0;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
    font-family: 'Bahij-plain', sans-serif;
    font-size: 14px;
    overflow-x:hidden;
    background-color: #fff;
    color: #44372e;
    /*height: 5000px;*/
}
@font-face {
    font-family: 'Bahij-plain';
    src: url('../webfonts/URWDINArabic-Regular.ttf');
}
@font-face {
    font-family: 'Bahij-Bold';
    src: url('../webfonts/URWDINArabic-Regular.ttf');
}
@font-face {
    font-family: 'Bahij-SemiBold';
    src: url('../webfonts/URWDINArabic-Regular.ttf');
}
/*
=======================
       animation
=======================
*/
.fadedown{
    animation: fadeDown 1s ease;
}
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadedown1{
    animation: fadeDown1 1s ease;
}
@keyframes fadeDown1 {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadedown2{
    animation: fadeDown2 2s ease;
}
@keyframes fadeDown2 {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes charts-animation {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotat {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
}
.main-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-title h3{
    background-color: #00a79c;
    color: #fff;
    padding: 12px;
    width: 22%;
    text-align: center;
}
.secondary-title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.secondary-title h4{
    color: #00A79C;
    position: relative;
    margin-bottom: 0;
    height: 57px;
    line-height: 55px;
    padding: 12px;
    font-weight: 600;
}
.secondary-title h4:before{
    position: absolute;
    content: "";
    right: 0;
    width: 4px;
    height: 100%;
    background-color: #00A79C;
}
/*
===============================
           DEFAULTS
===============================
*/
.load{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #333333ed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 10px solid #f3e6e8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top: 8px solid #d5d0e5;
    animation: rotate 1.3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.modal{
    overflow: auto;
}
.dropdown-menu img{
    width: 20px !important;
}
textarea:focus{
    outline: none;
}
.toggle::after {
    display: none;
}
.toggle{
    position: relative;
}
.toggle:before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    transform: rotate( 47deg);
    bottom: -9px;
    left: 3px;
    opacity: 0;
    visibility:hidden;
}
.show .toggle:before{
    opacity: 1;
    visibility:visible;
}
.dropdownToggle::after {
    display: none !important;
}
.dropdownToggle{
    color: #333;
    font-size: 20px;
    z-index: 1;
}
.menue{
    width: 220px;
}
.menue .items{
    color: #333 !important;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
}
button:focus{
    outline: none;
}
input:focus{
    outline: none;
}
.btn{
    border-radius: 5px;
    cursor: pointer;
}
.btn:focus{
    outline: none;
    box-shadow: none;
}
.default-link{
    color: unset;
    text-decoration: none;
    transition: .4s all ease;
    cursor: pointer;
}
.default-link:hover{
    text-decoration: none;
    color: #ff9206;
}
.btn-effect{
    position: relative;
    transition: .8s all ease;
}
.btn-effect:hover{
    border: 1px solid #FF491F;
    background-color: #fff !important;
    color: #333 !important;
    box-shadow: 1px 0 9px #ff491f;
}
.text-1{
    color: #a1653b;
}
.text-2{
    color: #675c50;
}
.bg-1{
    background-color: #a1653b;
}
.bg-2{
    background-color: #675c50;
}
.BTN-2 {
    background-color: #f2c12b;
    color: #333;
    padding: 10px 40px;
}
.btn-effect2 {
    overflow: hidden;
    transition : .2s;
    cursor : pointer;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    position: relative;
}
.btnTwo {
    position: absolute;
    width: 50px;
    height: 100%;
    padding-top: 2px;
    background: #44372e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    top: 0;
    left: 0;
    line-height: 50px;
    transform: translateX(-100%);
}
.btnTwo img{
    width: 15px;
}
.btnText {
    transition : .3s;
    margin-bottom: 0;
}
.btnText2 {
    color : #FFF;
    margin-bottom: 0;
}
.btn-effect2:hover .btnTwo{
    transform: translateX(0);
}
.btn-effect2:hover{
    padding-left : 50px;
    color: #fff;
}
.btn-effect2:active {
    box-shadow: 0 5px 6px rgba(0,0,0,0.3);
}
/*.counter-btn{*/
/*    border-radius: 3px;*/
/*    width: 25px;*/
/*    height: 25px;*/
/*    border: 1px solid #333;*/
/*    background-color: #fff;*/
/*}*/
.count.output{
    width: 30px;
    max-width: fit-content;
    height: 25px;
    text-align: center;
    background-color: #f4f1da;
    border: 0;
    border-radius: 3px;
}
.over-container{
    margin-top: -30px;
    position: relative;
    z-index: 9;
}
.confirm-btn{
    width: 50%;
    margin: auto;
}
/* custom check */
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #8b8b8b;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 11.5px;
    background: #d2a069;
    position: absolute;
    top: 3px;
    right: -17px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.select2-container--default .select2-selection--single{
    height: 50px;
}
/*.select2-container{*/
/*    width: 100% !important;*/
/*}*/
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    height: 50px;
}
.bottom-nav_scroll {
    transform: translateY(200%);
    visibility: hidden;
    opacity: 0;
    transition: .8s;
}
.bars {
    height: 17px;
    width: 30px;
    position: relative;
    transition: .5s ease;
}
.x-bars{
    margin-top: 12px;
    transition: .5s ease;
}
.bars span {
    width: 30px;
    height: 3px;
    background-color: #57462d;
    position: absolute;
    left: 0;
    right: 0;
    top: -6px;
    bottom: 0;
    margin: auto;
    transition: .5s ease;
}

.bars span:first-child {
    transform: translateY(0px);
}
.bars span:nth-child(2) {
    transform: translateY(7px);
}
.bars span:last-child {
    transform: translateY(14px);
}
.x-bars span:first-child {
    transform: rotate(45deg);
}
.x-bars span:nth-child(2) {
    transform: rotate(225deg);
}
.x-bars span:last-child {
    transform: rotate(-45deg);
}
.nav-layer{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    background-color: #12376242;
    transform: translateX(-110%);
    transition: .4s all ease;
}
.nav-layer.open{
    transform: translateX(0);
}
/*
===============================
           header
===============================
*/

.nav-head{
    background-color: #f2c12b;
    padding: 33px 0;
}
.nav-bar ul{
    padding: 0;
    margin: 0;
}
.nav-bar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 15px;
    font-size: 16px;
    color: #fff;
    transition: .4s all ease;
}
.nav-bar ul li.act{
    color: #333;
}
.nav-bar ul li a:hover{
    color: #333;
}
.user-icon a{
    transition: .4s all ease;
}
.user-icon a:hover{
    transform: translateY(5px);
}
.BTN-1{
    background-color: #44372e;
    color: #fff;
    padding: 12px 35px;
}
.carousel-img{
    width: 100%;
    height: 560px;
}
.btn-carousel{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    box-shadow: 1px -1px 8px #9d9d9d;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;

}
.carousel-control-prev{
    left: 100px;
}
.carousel-control-next{
    right: 100px;
}
.carousel-indicators{
    bottom: 70px;
}
.carousel-indicators li{
    background-color: #9f5522;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.carousel-item{
    position: relative;
}
.cobon-layer{
  position: absolute;
  bottom: 5%;
  height: fit-content;
  left: 10%;
  margin: auto;
  width: 35%;
  background-color: #6e4628;
  padding: 10px;
  border-radius: 5px;
  opacity: .8;
  color: #fff;
}
/*.counter-span{*/
/*    padding: 15px 60px;*/
/*    text-align: center;*/
/*    opacity: 0.8;*/
/*    line-height: 15px;*/
/*    font-size: 18px;*/
/*    border-radius: 7px;*/
/*    color: #f2c12b;*/
/*    background-color: #7c4d2a;*/
/*    font-weight: 600;*/
/*    position: absolute;*/
/*    right: 15%;*/
/*    bottom: 20%;*/
/*}*/
.apps{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.offer-mail{
    width: 100%;
    height: 45px;
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: 2px 2px 4px #ddd;
}
.subscribe-btn{
    background-color: #f2c12b;
    border-radius: 5px;
    width: 105px;
    height: 45px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
}
.social-links a{
    transition: .4s all ease;
}
.social-links a:hover {
    transform: translateY(-5px);
}
.quick-links a h6{
    transition: .4s all ease;
}
.quick-links a h6:hover {
    transform: translateX(-5px);
}
.last-footer{
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid #9f5522;
}
@media (max-width:992px){
    .last-footer{
        padding: 15px 0 80px 0;
    }
}
.input-loh{
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 4px #ddd;
    background-color: #fff;
    padding:0 10px;
}
.social-share{
    display: flex;
    justify-content: center;
}
.offer-text{
    font-size: 18px;
    color: #4a4a4a;
}
.white-card{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 5px #ddd;
    padding: 25px;
}
.counter-span.offer-page{
    position: unset !important;
}
.user-icon a .user-img{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 10px;
}
.user-icon{
    display: flex;
    align-items: center;
}
.category-btn{
    /*background: url('../image/bg-o.png') center;*/
    background-size: cover;
    padding: 30px 0;
}
.bg-o{
    /*background: url('../image/bg-o.png') center;*/
    background-size: cover;
    padding: 30px 0 43px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mix-btn{
    width: 140px;
    height: 45px;
    border-radius: 30px;
    background: none;
    border: 1px solid #9f5522;
    color: #9f5522;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.text-up{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    line-height: 45px;
}
.act-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #9f5522;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    transition: .4s all ease;
    transform: translateX(100%);
}
.mix-btn.active{
    color: #fff;
}
.mix-btn.active .act-layer{
    transform: translateX(0);
}
.blog-box{
    position: relative;
}
.blog-box-img{
    width: 100%;
    border-radius: 5px;
}
.blog-box .special-patch{
    position: absolute;
    top: 15px;
    right: 0;
    border-radius: 20px 0 0 20px;
    background-color: #ffa234;
    height: 40px;
    width: 120px;
    font-weight: 600;
    color: #fff;
    text-align:center;
    line-height: 40px;
}
.blog-box p{
    font-size: 14px;
}
.blog-box-img.side{
    width: 50%;
    margin: 0 10px;
}
.btn-effect3{
    color: #f2c12b;
    overflow: hidden;
    position: relative;
    width: fit-content;
    padding-inline-start: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.blog-box.list{
    display: flex;
    align-items: center;
}
.boxes-blog{
    display: flex;
    flex-direction: column;
}
.btn-effect3 img{
    transform: translateX(10px);
    transition: .3s all ease;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 15px;
    margin: auto;
}
.btn-effect3:hover img{
    transform: translateX(200%);
}
.text-effect{
    transition: .5s all ease;
    margin: auto;
    width: fit-content;
    height: fit-content;
}
.btn-effect3:hover .text-effect{
    transform: translateX(25px);
    color: #f2c12b;
}
.user-icon a img{
    width: 75%;
}
.logo-head img{
    width: 130px;
}
.logo-footer img{
    width: 150px;
}
.apps img{
    width: 120px;
}
.cart-card{
    padding: 14px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 9px 6px #f4f1da;
    margin: 5px 0;
}
.dis-img-cart{
    width: 50px;
}
/*.cart-card .counter-span{*/
/*    position: unset;*/
/*    padding: 7px 28px;*/
/*    font-size: 10px;*/
/*    border-radius: 2px;*/
/*    background-color: #7c4d2a4d;*/
/*    color: #333;*/
/*}*/
.remove-btn{
    position: absolute;
    top: 0;
    left: 15px;
}
.edit-btn{
    color: #ff9206;
}
.profile-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.input-profile{
    background: none;
    border: 0;
    color: #707070;
    font-size: 16px;
    padding:0 15px;
}
.showPass{
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 35px;
}
.input-edit{
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #fac275;
    padding: 10px;
    transition: .4s all ease;
}
.input-edit:focus{
    box-shadow: 0 0 4px #ff9206;
}
.input-site{
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #fac275;
    padding: 10px;
    transition: .4s all ease;
}
.input-site:focus{
    box-shadow: 0 0 4px #ff9206;
}
.interests-btn{
    background-color: #44372e;
    width: 120px;
    height: 45px;
    border-radius: 0 30px 30px 0;
    color: #f2c12b !important;
    font-size: 12px;
    position: absolute;
    top: 40px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.interests-btn img{
    width: 7px;
}
.interests-label{
    width: fit-content;
    height: 40px;
    position: relative;
    margin: 10px;
}
.interests-label .custom-check{
    width: 100%;
    height: 100%;
    background-color: #eee;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
    display: block;
    transition: .4s all ease;
    padding:  0 13px;
}
.interests-label .interests-check{
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.interests-check[type="checkbox"]:checked~.custom-check {
    background-color: #ccc;
}
.selectPay img{
    width: 60px;
}
.selectPay label{
    color: #8b8b8b;
    font-size: 18px;
    margin: 10px;
}
.checkk{
    position: absolute;
    right: -7px;
    z-index: 1;
    opacity: 0;
    width: 12px;
    height: 12px;
    top: 13px;
    cursor: pointer;
}
.dotted-bg{
    position: absolute;
    top: 6px;
    right: 12px;
    z-index: 0;
}
.oAfter{
    position: absolute;
    top: -25px;
    left: -20px;
    z-index: 2;
    width: 130px;
}
.main-img{
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}
.notification-card{
    display: flex;
    align-items: center;
    border: 1px solid #f2c12b;
    border-radius: 8px;
    padding: 10px;
}
.not-img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 10px;
    border: 1px solid #ff9206;
}
.customCheck{
    width: 25px;
    height: 25px;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    line-height: 26px;
    transition: .4s all ease;
    font-size: 15px;
    border: 1px solid #707070;
}
.joinCheck{
    position: absolute;
    right: 14px;
    width: 26px;
    top: 3px;
    height: 26px;
    opacity: 0;
}
.joinCheck[type="checkbox"]:checked~span.customCheck {
    color: #707070;
}
.code-input{
    width: 100px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid #ff9206;
    text-align: center;
    margin: 0 15px;
}
.user-section a.default-link.material-button{
    width: 35px;
    height: 35px;
    padding: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.float--btn{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    height: fit-content;
}
.check_span {
    width: 25px;
    height: 25px;
    display: block;
    border-radius: 2px;
    text-align: center;
    line-height: 27px;
    color: #fff;
    background-color: #fff;
    transition: .3s all ease;
    font-size: 15px;
    box-shadow: 1px 1px 5px #ddd;
}
.check_label{
    margin-inline-start:15px;
    font-size: 15px;
}
.check_label input:checked~.check_span {
    color: #ff9206;
}

.close_modal{
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #ff9206;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    color: #f2c12b;
    line-height: 33px;
}
.selected-item{
    width: 140px;
    height: 45px;
    border-radius: 30px;
    background: #9f5522;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 45px;
    margin-inline-end: 15px;
}

.counter-div{
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #333;
    padding: 5px;
    flex-direction: row-reverse;
}

.counter-btn {
    border: 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    background-color: #00A79C;
    width: 23px;
    height: 20px;
    text-align: center;
    line-height: 21px;
    display: inline-block;
    margin-bottom: 0;
}
.output {
    width: 50px;
    color: #333;
    text-align: center;
    height: 20px;
    border: 0;
    background-color: #eee;
}
.counter-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.span-counter{
    margin: 0 8px;
    background-color: #000;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    padding: 8px;
    font-size: 10px;
    color: #fff;
}
.counter-label{
    font-size: 8px;
    margin-bottom: 6px;
    display: block;
}
.side-over-lay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    background-color: #12376242;
    transform: translateX(-110%);
    transition: .4s all ease;
}
/*.counter-item span{*/
/*    font-size: 8px;*/
/*    margin-bottom: 5px;*/
/*}*/

/*
===============================
           MEDIA
===============================
*/
/*@media (min-width: 992px){*/
/*    .container {*/
/*        max-width: 95%;*/
/*    }*/
/*}*/
/*@media (min-width: 1200px){*/
/*    .container {*/
/*        max-width: 1400px;*/
/*    }*/
/*}*/

@media (max-width: 1200px) {
    .nav-bar ul li{
        margin: 0 10px;
        font-size: 14px;
    }
    .logo-head img {
        width: 100px;
    }
    .BTN-1 {
        padding: 10px;
        font-size: 15px;
    }
    /*.btn{*/
    /*    padding: 0.3rem 0.5rem;*/
    /*}*/
}


@media (max-width: 992px) {
    .code-input{
        width: 60px;
        height: 60px;
    }
    .nav-bar{
        position: fixed;
        width: 250px;
        height: 100%;
        z-index: 999;
        top: 0;
        background-color: #333333f5;
        right: 0;
        transition: .5s all ease;
        transform: translateX(150%);
    }
    .nav-bar.open{
        transform: translateX(0);
    }
    .nav-bar ul li{
        display: flex;
        margin: 20px 15px;
        font-size: 14px;
    }
    .nav-bar ul li.act{
        color: #ff9206;
        background-color: #eee;
        padding: 10px;
        border-radius: 5px;
    }
    .user-icon{
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 998;
        background-color: #333;
        right: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 15px;
        transition: .4s all ease;
    }
    .user-icon a.act {
        background-color: #f2c12b;
    }
}
@media (max-width: 768px){
    .mix-btn {
        width: 100px;
        height: 41px;
        font-size: 13px;
    }
    .cobon-layer h3{
        font-size: 15px;
    }
    .cobon-layer h4{
        font-size: 12px;
    }
    .btn-effect2{
        font-size: 12px;
    }
    .btn-carousel{
        width: 30px;
        height: 30px;
    }
    .carousel-control-next{
        right: 30px;
    }
    .carousel-control-prev{
        left: 30px;
    }
    .counter-span{
        padding: 12px 30px;
        font-size: 14px;
    }
    .carousel-img{
        height: 460px;
    }
    .discount-card h4{
        font-size: 14px;
    }
    .discount-card h5{
        font-size: 12px;
    }
    .coupon-info .d-flex{
        flex-direction: column !important;
    }
    .coupon-info .d-flex .btn-effect2{
        margin-bottom: 10px;
    }
    .dis-img{
        width: 45px;
    }
    .cobon-layer{
        left: 5%;
    }
}
@media (max-width: 576px){
    .blog-box.list{
        flex-direction: column;
    }
    .counter-span {
        padding: 8px 24px;
        font-size: 10px;
        right: 5%;
        bottom: 10%;
    }
    .carousel-indicators {
        bottom: -10%;
    }
    .about-offers{
        margin-top: 27px;
    }
    .cobon-layer {
        bottom: 0;
        left: 0;
        width: 50%;
        font-size: 8px;
    }
    .cobon-layer img{
        width: 15px;
    }
    .btn-effect2 {
        font-size: 8px;
    }
    .blog-box.list .blog-box-img{
        width: 100%;
    }
    /*.cobon-layer {*/
    /*    position: absolute;*/
    /*    top: 10%;*/
    /*    height: fit-content;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    margin: auto;*/
    /*    width: 80%;*/
    /*    background-color: #33333359;*/
    /*    padding: 10px;*/
    /*    border-radius: 10px;*/
    /*}*/
    .notification-card{
        flex-direction: column;
    }
    .profile-info h6{
        font-size: 13px;
    }
    .cobon-layer h4 {
        font-size: 8px;
    }

}
@media (max-width: 375px){
    .text-up {
        line-height: 36px;
    }
    .mix-btn {
        width: 80px;
        height: 35px;
        font-size: 13px;
    }
    .code-input {
        width: 45px;
        height: 40px;
    }
}

/*New */
.table_loader {
    content : "جاري التحميل";
    background-color: #171924;
    color: white;
    opacity: 0.9;
    font-family: PT Sans Narrow;

    font-size: 30px;

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table_loader:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(5,end) 1000ms infinite;
    animation: ellipsis steps(5,end) 1000ms infinite;
    content: "\2026\2026"; /* ascii code for the ellipsis character */
    width: 0px;
}

.controls{
    position: relative;
    border-radius: 5px
}

.clean-input{
    position: absolute;
    height: 10px;
    width: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid;
    padding: 8px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    font-size: 10px
}
.clean-input:hover{
    color: #ff2222;
    cursor: pointer;
}

.show_pass:after {
    content: "\f06e";
    font-family: "Font Awesome 5 Free";
    cursor: pointer;
}

.show_pass.active:after {
    content: "\f070";
    font-family: "Font Awesome 5 Free";
    cursor: pointer;
}

.icon_fa {
    position: absolute;
    font-size: 16px;
    left: 10px;
    color: #b8b8b8;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.po_R {
    position: relative;
}

.imagesUploadBlock {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 20px 0;
}

.uploadImg {
    display: inline-block;
    width: 140px;
    height: 140px;
    line-height: 110px;
    text-align: center;
    position: relative;
    border-radius: 15px;
    margin: 5px;
    border: 3px dotted #e4e4e4;
}

.uploadImg:before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 15px;
    right: 0;
}

.uploadImg span {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.uploadImg span i {
    color: #e4e4e4
}

.uploadImg i {
    font-size: 20px;
    color: #e4e4e4;
}

.uploadImg input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    display: none
}

.uploadedBlock {
    bottom: 0;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    z-index: 9;
}

.uploadedBlock img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 15px;
}

.uploadedBlock .close {
    position: absolute;
    top: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.33) !important;
    font-size: 18px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 1;
    left: 0;
    right: 0;
    margin: auto;
}

.uploadedBlock .close i {
    color: #292929;
    font-size: 24px;
}

.imgMontg {
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 16px;
    height: 16px;
    border: 0.15em solid #ff9206;
    border-radius: 50%;
    transform: translateY(-0.075em);
    padding: 0 !important;
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #ff9206;
    /* Windows High Contrast Mode */
    /*background-color: CanvasText;*/
}
.radio_label{
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

.pagination .page-item .page-link{
    border: 0;
    margin: 5px;
    background-color: unset;
    font-size: 16px;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-item.active .page-link{
    color: #fff;
    background-color: #f2c12b;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link{
    color: #333;
    background: rgba(255, 183, 43, 0.15);
}

.pagination .page-item.disabled:first-child .page-link,
.pagination .page-item.disabled:last-child .page-link{
    color: #333;
    background: #eee;
}
.interests-checked{
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
}
.interests-checked:checked ~ .custom-check {
    background-color: #f2c12b;
    color: #fff;
}
.modal-header button.close{
    padding: 5px;
    margin: 0;
}

.coupon_footer{
    position: absolute;
    bottom: 0;
    padding: 15px;
    right: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #3333337a;
    height: 100%;
}

.ui-datepicker{
    z-index: 20 !important;
}
/* ////////////////////////////////////// */
.selectdiv {
  position: relative;
  
}

/*To remove button from IE11, thank you Matt */
select::-ms-expand {
     display: none;
}

.selectdiv:after {
  content: '>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 4px;
  /*margin-right: 2px;*/
 
  padding:7px;
  filter: invert(.1);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1
}
.table_content_append .position-relative{
   overflow:auto;
}
.gap-5{
    gap:10px
}
.pagination{
    flex-wrap:wrap;
}
.logo img{
    height: 50px;
    object-fit: cover;
}