/****************** Global Styling ******************/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

body,html {
    transform-origin: 0% 0%;
    --main: #0175bd;
}

h2,h3,h4 {
    color: var(--main);
}

html,
body,
h1,h2,h3,h4,h5,h6,
p,span,a,li,button {
    font-family: 'Cairo', sans-serif !important;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    overflow: hidden;
    border-radius: 4px;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main);
    transition: .4s;
    border-radius: 4px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main);
}

.alert-danger {
    color: #FFF !important;
    margin-bottom: 20px;
    text-align: center;
    background-color: #e48787 !important;
    border-color: #e48787 !important;
}

button:disabled,
button:disabled:hover {
    cursor: not-allowed;
    color: #797979;
}

.alert-success {
    color: #FFF !important;
}

#success-box {
    color: #FFF !important;
}

fieldset {
    border-color: var(--main) !important;
    margin: 0rem 0 4rem !important;
    border-radius: 4px;
}

input[type='file'] {
    position: relative;
}

input[type='file']:after {
    content: 'Upload';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0175bd;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 21px;
    text-transform: uppercase;
    cursor: pointer;
}

label.myLabel input[type="file"] {
    position:absolute;
    top: -1000px;
    visibility: hidden;
}
 
.myLabel {
    border: 1px solid #AAA;
    padding: 15px 40px;
    margin: 2px;
    display: inline-block;
}

.myLabel:hover {
    cursor: pointer;
}

.myLabel span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.pagination-list {
    display: flex;
    justify-content: end;
    list-style: none;
    margin: 0;
}

.pagination-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #222;
    cursor: pointer;
    border-radius: 50%;
    transition: .4s;
    margin-right: 10px;

}

.pagination-link:hover {
    background-color: #EEE;
}

.popup-holder {
    position: fixed;
    width: 80%;
    height: 90%;
    top: 50%;
    left: 50%;
    bottom: 0;
    border: 2px solid;
    border-radius: 8px;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 24px 0px;
    display: none;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0px 0px 8px 0px #26c;;
}

@media(max-width: 567px) {
    .popup-holder {
        width: 95%;
    }
}

.popup-content {
    background-color: #FFF;
    padding: 25px;
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center;*/
    justify-content: center;
}

@media(max-width: 400px) {
    .popup-content {
        padding: 0;
    }
}

.popup-holder .loader {
    margin: 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.popup-close {
    position: sticky;
    top: 0px;
    right: 0px;
    background-color: var(--main);
    color: #FFF !important;
    cursor: pointer;
    border: 1px solid #fff;
    padding: 10px;
    margin: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.btn,button {
    border-radius: 4px;
    /* width: 200px !important;
    height: 50px !important;
    display: flex; */
    justify-content: center;
    align-items: center;
    min-width: fit-content !important;
    position: relative !important;
}

.btn.btn-sm {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--main);
    border-color: var(--main);
}

label {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.form-checkbox {
    display: flex;
}

.form-checkbox label {
    padding-right: 35px !important;
}

a {
    text-decoration: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: auto !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: auto !important;
  line-height: 36px !important;
  padding: 0px 5px 0px 25px !important;
}

textarea {
    min-height: 100px !important;
}

.page-link:hover {
    cursor: pointer;
    background-color: aliceblue;
}

.toolbox-pagination {
    border: none;
    padding: 10px;
}

tr td {
    padding: 15px !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9999999;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before, #loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: #e22a6f;
}

#loader-1:before {
    z-index: 100;
    animation: spin 2s infinite;
}

#loader-1:after {
    border: 7px solid #fafafa;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--main);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}
  

/****************** Framework ******************/

.justify-content-around {
    justify-content: space-around !important;
}

.align-self-end {
    align-self: flex-end;
}

.divider {
    display: inline-block;
    vertical-align: middle;
    margin: 24px 0px;
    height: 1px;
    width: 100%;
    background-color: #e1e1e1;
}
 
.section-padding {
    padding: 100px 0px;
}

.text-center {
    text-align: center !important;
}

.m-auto {
    margin: auto !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}


.loader {
    border: 5px solid #555;
    border-left-color: transparent;
    width: 70px !important;
    height: 70px !important;
    margin: 150px auto !important;
    animation-name: spin;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.btn-fw {
    min-width: 200px;
    min-height: 50px;
}

.fixed-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f0f8ffbf;
    display: none;
    z-index: 999999999999999999999999;
}

.fixed-loading .inner-holder {
    display: flex;
    width: 100%;
    height: 100%;
}

.fixed-loading .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.notification {
    position: fixed;
    z-index: 99999999999999999999999;
    bottom: 20px;
    right: 20px;
    padding: 16px 32px;
    color: #FFF;
    border-radius: 15px;
    transform: translateX(calc(100% + 52px));
    animation-name: notificationSlideIn;
    animation-duration: 5s;
    animation-timing-function: cubic-bezier(0, 1.4, 0, 1.03);
    animation-fill-mode: forwards;
    opacity: 1;
    display: none;
}

.notification:last-of-type {
    display: block;
}

.notification:before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    bottom: -10px;
    border-top-width: 20px;
    right: -12px;
    transform: rotate(-45deg);
}

@keyframes notificationSlideIn {
    0% {
        transform: translateX(calc(100% + 52px));
        opacity: 1;
        right: 50px;
    } 80% {
        transform: translateX(calc(0px));
        opacity: 1;
        right: 50px;
    } 100% {
        transform: translateX(calc(0px));
        opacity: 0;
        right: 50px;
    }
}

.alert-notification {
    background-color: #fda99e;
}

.success-notification {
    background-color: #5a9e5a;
}

.alert-notification:before {
    border-top-color: #fda99e;
}

.success-notification:before {
    border-top-color: #5a9e5a;
}

.cursor-pointer {
    cursor: pointer !important;
}

.alert {
    border-radius: 8px !important;
}

.alert-warning {
    background-color: #ffdf8396 !important;
    border-color: #ffdf8396 !important;
}

.btn-secondary.btn-link,
.btn-secondary.btn-link:hover {
    color:var(--main)
}

.title {
    color: var(--main);
}

/****************** Header ******************/

/* Lang Switcher */

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
}

.lang-switcher .lang-flag {
    cursor: pointer;
}

/* ******* Header Cart ******** */

header .dropdown-box .products img {
    height: 80px;
} 

/* Admin Header */

.admin-header {
    background-color: #222;
    color: #FFF;
}

.admin-header .header-middle {
    border-bottom: 1px solid #eee;
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: 0px 2px 4px 0px #a9a9a9;
}


/* ************** */

.header-right {
    height: 100%;
}

.header-right .user-auth {
    height: 100%;
    display: flex;
    align-items: center;
}

.user-profile-name {
    cursor: pointer;
}

.btn-search {
    max-width: 50px !important;
    width: 50px !important;
    height: 100%;
    max-height: 100% !important;
    position: absolute !important;
}

.mobile-menu-container .btn-search {
    padding: 0;
    width: 4rem !important;
    position: relative !important;
}

.search-seggestion-box {
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F0F0F0;
    z-index: 99999;
}

.search-seggestion-box ul {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.search-seggestion-box ul li a,
.search-seggestion-box ul li.no-result {
    transition: .4s;
    padding: 15px 20px;
    cursor: pointer;
    display: block;
}

.search-seggestion-box ul li a:hover {
    background-color: #FAFAFA;
}

.user-auth {
    display: flex;
    position: relative;
}

.user-profile-name {
    display: inline-block;
}

.user-profile-name:hover .user-profile-links {
    transform: scaleY(1);
}

.user-profile-name .user-profile-links {
    list-style: none;
    margin: 0;
    position: absolute;
    top: calc(100% - 1px);
    right: -10px;
    padding: 5px;
    background-color: #555;
    color: #FFF;
    border-radius: 2px;
    width: 100%;
    min-width: 150px;
    transition: .4s;
    transform: scaleY(0);
    transform-origin: 0% 0%;
    z-index: 9999;
}

.user-profile-links li {
    padding: 16px 8px;
}

.user-profile-links li a:hover {
    color: #AAA;
}

/* Register & SignedIn */

#my-signin2 > div,
.fb-login-button {
    width: 100% !important;
}

.facebook-btn,
.facebook-btn:hover {
    background-color: #5890FF !important;
    border-color: #5890FF !important;
}

.google-btn,
.google-btn:hover {
    background-color: #DB4437 !important;
    border-color: #DB4437 !important;
}

.apple-btn,
.apple-btn:hover {
    background-color: #555555 !important;
    border-color: #555555 !important;
}

/***************** Dashboard ******************/

/* Dasbboard */

.dashboard-navigator i {
    color: var(--main);
}

.dashboard-navigator .sub-menu {
    transform: scaleY(0);
    overflow: hidden;
    transform-origin: 0 0;
    transition: .4s;
    max-height: 0;
}

.dashboard-navigator .sub-menu.active {
    transform: scaleY(1);
    max-height: fit-content;
}

.dashboard-navigator .sub-menu li a {
    color: #FFF !important;
    font-size: 14px;
}

.dashboard-navigator .sub-menu li:last-child {
    border: none;
}

.dashboard-navigator .nav-with-caret .fa-caret-down {
    transform: rotate(0deg);
    transition: .1s;
}

.dashboard-navigator .nav-with-caret.active .fa-caret-down{
    transform: rotate(-180deg);
}

/* Admin Home */

.admin-statistics .stat {
    padding: 10px;
    background-color: var(--main);
    color: #FFF !important;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    min-width: 200px
}

.admin-statistics .stat h4 {
    color: #FFF;
}

.admin-statistics .stat-number {
    font-size: 28px;
}

.account label {
    padding: 1.2rem 1.6rem;
    line-height: 2.4rem;
    color: #222;
    display: inline-block;
    font-size: 16px;
}

.account #orders {
    overflow-y: auto;
}

.account #orders table {
    min-width: 600px
}

.account #orders table th,
.account #orders table td {
    min-width: 200px;
    padding-left: 4px;
    padding-right: 4px;
}

.account #orders .admin-order-table th,
.account #orders .admin-order-table td {
    min-width: 150px;
    padding-left: 4px;
    padding-right: 4px;
}

.order-status span {
    padding: 0px 15px !important;
    color: #FFF;
    font-weight: bold;
}

.order-status.failed span {
    background-color: rgb(255, 106, 106);
}
.order-status.processing span {
    background-color: rgb(75, 177, 49);
}
.order-status.pendingpayment span {
    background-color: rgb(106, 213, 255);
}
.order-status.onhold span {
    background-color: rgb(245, 173, 18);
}
.order-status.completed span {
    background-color: rgb(32, 93, 14);
}
.order-status.canceled span {
    background-color: rgb(54, 3, 3);
}
.order-status.returned span {
    background-color: rgb(255, 106, 106);
}

@media (max-width: 479px) {
    .order-action, thead th:last-child {
        display: table-cell;
    }
}

.account #orders table .order-total span {
    background-color: transparent;
    color: #0c6c0f;
    display: block;
    text-align: left;
    padding: 0px 4px;
    font-size: 16px;
}

.account #orders table .order-total p {
    padding: 0px 4px;
    margin: 0;
}

/* Order Details */

.order .order-results {
    justify-content: space-between;
}

/* Dashboard Products */

.filter-products {
    flex-wrap: wrap;
}

@media(max-width: 567px) {
    .filter-products {
        flex-direction: column;
    }
    .filter-products > div {
        margin-bottom: 5px !important;
    }
}

.product-item {
    padding: 5px;
    border: 1px solid #f5f5ff;
    overflow: hidden;
    flex-wrap: wrap;
}

.product-item:nth-child(even) {
    background-color: #F5F5f5;
}

@media(max-width: 567px) {
    .product-details-holder {
        width: 100%;
        flex-wrap: wrap;
    }
}

.product-item .product-img {
    /* overflow: hidden; */
}

.product-active {
    font-size: 12px;
    color: #FFF;
    background-color: rgb(28, 98, 18);
    padding: 0px 10px;
    position: absolute;
    transform: rotate(-45deg);
    text-align: center;
    width: 100px;
    left: -40px;
    top: 0px;
    box-shadow: 0px 1px 5px 0px #000;
}

.product-item .product-img img {
    width: 120px !important;
    min-width: 120px;
    height: 100px !important;
    max-height: 120px;
    object-fit: cover;
    min-height: 100%;
    border: 1px solid #eee;
}

@media(max-width: 567px) {
    .product-item .product-img {
        width: 100%;
        padding: 0 !important;
    }
    .product-item .product-img img {
        width: 100% !important;
        min-width: 120px;
        height: 250px !important ;
        max-height: 250px;
    }
}

.product-item .product-details {
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.product-item .product-details h4 {
    font-size: 21px;
}

.product-price {
    color: rgb(28, 98, 18);
    font-size: 24px;
}

.currency {
    font-size: 12px;
}

#product-more {
    margin-bottom: 20px;
    display: inline-block;
}

.product-actions button {
    width: fit-content !important;
    height: 30px !important;
    padding: 0 !important
}

.product-actions button i {
   padding-bottom: 5px;
}

.popup-holder-bottomlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000ee;
    top: 0;
    left: 0;
}

.popup-holder {
    overflow-y: auto;
}

.edit-product-form {
    margin: auto;
}

/* .product-details-popUp {
    position: fixed;
    width: 95%;
    height: 95%;
    top: 50%;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);  
    border: 2px solid #CCC;
    background-color: #FFF;
    z-index: 99999; 
    overflow-y: auto;
    padding: 25px;
} */

/* Add Product */

#product-discount-percentage,
#product-is-downloadable,
#edit-product-discount-percentage,
#edit-product-is-downloadable,
#product-stock-management,
#edit-product-stock-management,
.form-checkbox input[type="checkbox"]{
    -webkit-appearance: auto;
    width: 30px;
}

#product-categories {
    min-height: 200px;
}

#tags-suggestions-box,
#edit-tags-suggestions-box {
    position: absolute;
    display: none;
    top: 70px;
    width: 100%;
    left: 0;
    padding: 0px 10px;
    transition: .4s;
}

#tags-suggestions-box ul,
#edit-tags-suggestions-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #F9F9F9;
    overflow-y: auto;
    max-height: 150px;
}

#tags-suggestions-box ul .tag-suggestion,
#edit-tags-suggestions-box ul .tag-suggestion  {
    cursor: pointer;
    padding: 0.5rem 2rem;
    transition: .4s;
}

#tags-suggestions-box ul .tag-suggestion:hover,
#edit-tags-suggestions-box ul .tag-suggestion:hover {
    background-color: var(--main);
    color: #FFF;
}

#tags-holder .tag-item {
    cursor: url("../images/icons/delete.png"), auto;
}

.tag-item {
    padding: 8px 16px;
    background-color: var(--main);
    color: #FFF;
    display: inline-block;
    border-radius: .3rem;
    box-shadow: -2px 2px 3px 0px #222;;
}

.option-holder {
    border: 1px solid #26c;
    padding: 15px;
}

.option-item {
    display: inline-block;
    background-color: #f6a421;
    padding: 8px 16px;
    color: #FFF;
    font-weight: 700;
    font-size: 12px;
    margin: 8px 8px 8px 0px;
    border-radius: 4px;
    box-shadow: -2px 2px 3px 0px #222;
}

.option a {
    color: #fff !important;
}

.colors-holder,
.sizes-holder {
    min-height: 50px;
    border: 1px solid #f5f5f5;
    margin: 10px 0px;
    padding: 10px;
}

.colors-holder .color {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
    background-color: var(--main);
}

.colors-holder .color:hover {
    cursor: url("../images/icons/delete.png"), auto;
}

.sizes-holder .size {
    display: inline-block;
    margin: 5px;
    background-color: var(--main);
    color: #FFF;
    padding: 0px 10px;
    border-radius: 3px;
}

.sizes-holder .size:hover {
    cursor: url("../images/icons/delete.png"), auto;
}

.main-img-preview {
    min-height: 100%;
}

.edit-main-img-preview img,
.main-img-preview img {
    max-height: 250px;
}

.fa-upload {
    margin-right: 15px;
    margin-left: 15px;
}

.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute !important;
    z-index: -1;
}

.upload__btn {
    display: inline-block;
    text-align: center;
    padding: 15px 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid;
    border-color: #AAA;
    line-height: 26px;
    font-size: 14px;
}

.upload__btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    justify-content: center;
}

.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%;
}

.add-product-btn-holder {
    margin-bottom: 40px;
}

/* Categories */

.all-categories-holder {
    display: flex;
    flex-wrap: wrap;
}

.category-item {
    display: inline-block;
    background-color: #0c6c0f;
    padding: 8px 16px;
    color: #FFF;
    font-weight: 700;
    font-size: 12px;
    margin: 8px 8px 8px 0px;
    border-radius: 4px;
    box-shadow: -2px 2px 3px 0px #222;
}

.category-item a {
    color: #fff !important;
}

.child-category-item {
    background-color: #FFF;
    padding: 8px 16px;
    margin-bottom: 5px;
    min-width: max-content;
}

.child-category-item a {
    color: var(--main) !important;
}

/* Our Categories */

.add-category-form {
    min-width: 70%
}

.company-categories .product-img  img {
    width: 60px !important;
    height: 60px !important;
}

/* Users */

.company-item {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

/* Options */

/**************** Price Settings *****************/

/* Add Coupon */

.products-holder-results ul,
.categories-holder-results ul {
    list-style: none;
    background-color: aliceblue;
}

.products-holder-results ul li,
.categories-holder-results ul li {
    padding: 10px 0px;
    cursor: pointer;
}

.coupon-product {
    display: inline-block;
    font-size: 12px;
    background-color: #0175bd;
    color: #FFF;
    border-radius: 4px;
    padding: 8px 15px;
    margin-right: 5px;
}

.coupon-product:hover {
    cursor: url("../images/icons/delete.png"), auto;;
}


/* Main Slides */

.owl-carousel figure {
    max-height: 630px;
    object-fit: cover;
}

.owl-carousel .owl-nav button {
    font-size: 24px ;
    background-color: var(--main) ;
    color: #FFF ;
    width: 50px;
}

.owl-carousel .owl-prev {
    margin-right: 20px;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 0px;
}

.owl-carousel .owl-dots button {
    width: 25px;
    height: 15px;
    background-color: var(--main);
    border-radius: 4px ;
    margin: 4px;
    transition: .1s;
}

.owl-carousel .owl-dots button.active {
    width: 40px;
    background-color: var(--main) !important;
}

.all-slides-holder .owl-nav {
    text-align: end;
    margin: 10px 0px;
}

.slide-remove {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ff000087;
    color: #FFF;
    cursor: pointer;
}

.slide-edit {
    position: absolute;
    top: 5px;
    left: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #008cff87;
    color: #FFF;
    cursor: pointer;
}


/***************** Home Page ******************/

.intro-section .owl-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
}

/***************** Profile ******************/

.account legend {
    color: var(--main);
    font-weight: 700;
    font-size: 24px;
}

/***************** Products ******************/

.sticky-content-wrapper{
    height: auto !important;
}

@media(max-width: 400px) {
    .toolbox-left {
        margin: 15px auto !important;
    }
    .toolbox-right {
        justify-content: center;
        flex-direction: column-reverse;
        margin: auto;
    }
    .toolbox-item {
        margin: auto !important;
    }
}

.label-sale {
    padding: 8px !important;
}

.btn-product-icon.btn-wishlist.active,
.btn-product-icon.btn-wishlist:hover {
    border-color: pink;
    color: #fff;
    background-color: pink;
}

.product-grid .product-media img {
    height: 250px;
    object-fit: cover;
}

/***************** Single Product ******************/

.btn-product-wishlist {
    max-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-wishlist.active {
    background-color: pink;
    color: #FFF;
}

.star-rated {
    float: left;
    unicode-bidi: bidi-override;
    direction: rtl;
    font-size: 28px;
    margin-top: -11px;
    color: #c60000;
    margin-left: 10px;
    margin-right: 10px;
  }
  .star-rated > span {
    display: inline-block;
    position: relative;
    width: 0.7em;
    cursor: pointer;
  }
  .star-rated > span:hover:before,
  .star-rated > span:hover ~ span:before,
  .star-rated > span.upstar-rated:before,
  .star-rated > span.upstar-rated ~ span:before {
    content: "\2605";
    position: absolute;
  }

  .owl-stage {
      min-width: max-content
  }

  .edit-reply {
    width: 80%;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  input.quantity,
  input.quantity-input {
      border: 1px solid #DDD !important;
      min-width: 80px !important;
      line-height: 45px !important;
  }

/***************** Cart ******************/

.update-quantity-status {
    color: #0c6c0f;
}

/* Account Addresses */



.card-address {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 4px;
}

/***************** Checkout ******************/

/* Address Form */

#different-address-form,
#on-delivery {
    height: 0px;
    overflow: hidden;
}

#different-address-form.active,
#on-delivery.active {
    height: auto
}

/* Order Summary */

.summary {
    overflow: auto;
}

.order-table {
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 400px;
}

.order-table tr td {
    padding: 5px !important;
}

.order-product {
    background-color: #EEE;
}

.summary .divider {
    margin: 5px 0px;
}

.order-product span.price-span,
.cart-subtotal span.price-span,
.order-fee,
.order-total span.price-span,
.order-final-grand-total span.price-span,
.toll-fees span.price-span {
    color: #FFF;
    padding: 0px 16px;
    border-radius: 4px !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: max-content;
}

.order-product span.price-span {
    background: #222;
}

.cart-subtotal span.price-span,
.toll-fees span.price-span {
    background: #39946e;
}

.order-fee {
    background-color: orange;
    height: 30px;
}

.order-total span.price-span {
    background-color: var(--main);
}

.order-final-grand-total span.price-span {
    background-color: #0c6c0f;
}

.discount-td .price-span {
    background-color: #0c6c34;
}

.exclude {
    color: red;
    font-size: 12px;
}

.include {
    color: green;
    font-size: 12px;
}

#checkout-map {
    min-height: 400px;
}

.recalculate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffb6;
    z-index: 999;
    display: flex;
}


/* *************** Skeleton Loader ************** */

.skeleton .cards {
    display: flex;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  
.skeleton .card {
    min-width: 200px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.skeleton .card .image img {
    max-width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.skeleton .card .content {
    padding: 20px 30px;
}
  
.skeleton .card.is-loading .image,
.skeleton .card.is-loading h2,
.skeleton .card.is-loading p {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    -webkit-animation: 1.5s shine linear infinite;
            animation: 1.5s shine linear infinite;
}
.skeleton .card.is-loading .image {
    height: 120px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.skeleton .card.is-loading h2 {
    height: 30px;
}
.skeleton .card.is-loading p {
    height: 70px;
}

.grid-skeleton .card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));;
    gap: 10px;
}

.grid-skeleton .card.is-loading p {
    height: 300px;
}
  
@-webkit-keyframes shine {
    to {
      background-position-x: -200%;
    }
}
  
@keyframes shine {
    to {
      background-position-x: -200%;
    }
}
