/********** Template CSS **********/
:root {
    --primary: #ab947e;
    --secondary: #934b00;
    --light: #F0EBD8;
    --dark: #110703;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

@font-face {
    font-family: "elmessiri";
    src: url('../fonts/ElMessiri-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: "elmessiri";
    overflow-x: hidden;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgb(162 83 0 / 25%);
}

.btn-outline-primary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-link {
    color: var(--secondary);
}

    .btn-link:hover {
        color: var(--secondary);
    }

.btn-check:focus + .btn, .btn:focus {
    box-shadow: 0 0 0 .25rem rgb(162 83 0 / 25%);
}

.btn-primary:hover, .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgb(162 83 0 / 25%);
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(147 75 0 / 16%);
    border-color: var(--secondary);
}

.form-control:focus, .form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #934b00;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(147 75 0 / 16%);
}


.btn-secondary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-secondary:hover, .btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-check:focus + .btn-secondary, .btn-secondary:focus {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(255, 183, 105, 0.25);
    }

.table th {
    background-color: var(--light);
    /* border: none; */
}
/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.text-primary {
    color: var(--secondary) !important;
}

/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-right: 250px;
    min-height: 100vh;
    background: #fff;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-right: 0;
    }

        .sidebar.open {
            margin-right: -250px;
        }

    .content {
        width: calc(100% - 250px);
    }

        .content.open {
            width: 100%;
            margin-right: 0;
        }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-right: -250px;
    }

        .sidebar.open {
            margin-right: 0;
        }

    .content {
        width: 100%;
        margin-right: 0;
    }
}

.main-navBar {
    background-color: var(--light);
}
/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--secondary);
    font-weight: 500;
    border-right: 3px solid var(--secondary);
    border-radius: 30px 0 0 30px;
    outline: none;
}

    .sidebar .navbar .navbar-nav .nav-link:hover,
    .sidebar .navbar .navbar-nav .nav-link.active {
        color: var(--light);
        background: var(--secondary);
        border-color: var(--light);
    }

    .sidebar .navbar .navbar-nav .nav-link i {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--light);
        border-radius: 40px;
    }

    .sidebar .navbar .navbar-nav .nav-link:hover i,
    .sidebar .navbar .navbar-nav .nav-link.active i {
        background: var(--secondary);
    }

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    left: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    border-radius: 30px 0 0 30px;
    padding: 10px 25px;
    color: var(--secondary);
}

    .sidebar .navbar .dropdown-item:hover,
    .sidebar .navbar .dropdown-item.active {
        background: var(--dark);
        color: var(--light);
    }

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--secondary);
    outline: none;
}


    .content .navbar .navbar-nav .nav-link:hover,
    .content .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .content .navbar .sidebar-toggler,
    .content .navbar .navbar-nav .nav-link i {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--secondary);
        border-radius: 40px;
        color: var(--light);
    }

.content .navbar .dropdown-item {
    color: var(--light);
}

    .content .navbar .dropdown-item:hover,
    .content .navbar .dropdown-item.active {
        background: var(--dark);
    }

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        background: var(--dark);
        border-color: var(--primary);
    }

.nav-logo {
    width: 100%;
    text-align: center;
}

.products-categories-table .btn {
    padding: 0 0.75rem;
}

.products-categories-table th:last-child {
    width: 10px;
}

.image-td img {
    width: 120px;
    padding-top: 5px;
}

.all-products-table td {
    padding-top: 3%;
    font-weight: 600;
    text-align: center;
}

.all-products-table th {
    text-align: center;
}

.circle {
    border-radius: 50%;
    width: 30px;
    margin-right: 5px;
    height: 30px;
    font-size: 10px;
    text-align: center;
    padding-top: 7px;
    color: #fff;
}

.colors-div {
    display: flex;
    justify-content: center;
}

.circle-red {
    background: #780000;
}

.circle-black {
    background: #0b090a;
}

.circle-blue {
    background: #255f85;
}

.circle-green {
    background: #036666;
}


.colorDiv {
    border-radius: 50%;
    width: 30px;
    margin-right: 5px;
    height: 30px;
    font-size: 10px;
    text-align: center;
    padding-top: 7px;
    color: #fff;
}

.selectedColors {
    display: flex;
    gap: 5px;
}

.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
/* .upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #4045ba;
  border-color: #4045ba;
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
}
.upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
} */
.upload__btn-box {
    margin-bottom: 10px;
}

.upload__img-wrap {
    display: flex;
    margin: 0 -10px;
}

.upload__img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

    .upload__img-close:after {
        content: "✖";
        font-size: 14px;
        color: white;
    }

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

.new-product-size {
    display: flex;
    justify-content: space-between;
}

    .new-product-size input, .new-product-size select {
        width: 95px;
        height: 30px;
    }
/* .dropdown, .dropend, .dropstart, .dropup{
    margin-top: 5px;
} */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--secondary);
    background-color: transparent;
    font-weight: 600;
    border-bottom: 1px solid;
    border-radius: 0;
}

.nav-link:focus, .nav-link:hover {
    color: var(--dark);
}

.nav-link {
    color: var(--primary);
}

/* .filter-multi-select > .viewbar{
    text-align: end;
}
#productCategory{
    direction: ltr;
}
.filter-multi-select .dropdown-item{
    direction: rtl;
} */
.filter-multi-select.dropup, .filter-multi-select.dropdown {
    text-align: right;
    direction: ltr;
}

.filter-multi-select > .dropdown-menu.show {
    width: 100%;
}

.filter-multi-select .dropdown-item {
    text-align: right;
}

.filter-multi-select > .dropdown-toggle::before {
    position: absolute;
    left: 10px;
    top: 20px;
}

.filter-multi-select > .viewbar > .selected-items > .item {
    margin: 0;
    height: 1.69em;
    padding: 3px 0px 0px .5em;
}

.filter-multi-select .dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.item-info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f2f2f2;
}

    .item-info p {
        margin-bottom: 0;
        padding-bottom: 7px;
        padding-top: 10px;
        font-size: 15px;
    }



.pagination {
    list-style: none;
    justify-content: center;
    padding: 0;
    margin-top: 15px;
}

    .pagination li {
        display: inline;
        text-align: center;
    }

    .pagination a {
        float: left;
        display: block;
        font-size: 14px;
        text-decoration: none;
        padding: 5px 12px;
        color: var(--dark);
        margin-left: -1px;
        border: 1px solid transparent;
        line-height: 1.5;
    }

        .pagination a.active {
            cursor: default;
        }

        .pagination a:active {
            outline: none;
        }

.modal-3 a {
    margin-left: 3px;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

    .modal-3 a:hover {
        background-color: var(--bgColor);
    }

    .modal-3 a.active, .modal-3 a:active {
        background-color: var(--bgColor);
    }

.product-thumbnail {
    max-width: 100px;
    border-radius: 5px;
}


.banner {
    width: 100%;
    height: 300px;
    color: white;
    text-align: center;
}
.banner img{
/*    max-width:100%;*/
    width :100%;
    height:100%;
}

.float-on-banner {
    position: absolute;
    top: 30px;
    left: 15%;
}
.item-banner{
    display:flex;
    justify-content:end;
    flex-direction:column;
    
    
}

.big-text {
    font-size: 50px;
    font-weight: 800;
    animation-delay: 1s;
}

.banner span {
    color: var(--dark);
}


.banner p {
    font-size: 35px;
    font-weight: 600;
    color: var(--dark);
}

.banner a {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    overflow: hidden;
    background: var(--secondary);
    color: var(--light);
     transition: 0.3s; 
     text-decoration:none;
}

    .banner a span {
        position: relative;
        z-index: 10;
        transition: color 0.4s;
    }



    .banner a::before,
    .banner a::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .banner a::before {
        content: "";
        background: var(--light);
        width: 120%;
        left: -10%;
        transform: skew(30deg);
        transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    }

    .banner a:hover::before {
        transform: translate3d(100%, 0, 0);
    }

    .banner a:hover span {
        color: var(--light);
    }