@charset "UTF-8";

:root {
    --app-black-gray: #343528;
    --app-gray-light-1: #e8e9eb;
    --app-white: #ffffff;
    --app-black-gray-2: #424242;
    --app-gray-light-2: #f6f7f8;
    --app-green-light: #2B78C6;
    --app-black-gray-3: #46484c;
    --app-black-gray-4: #343538;
    --app-white-light: rgba(255, 255, 255, 0.2);
    --app-color-primary: #2B78C6;
    --app-color-primary-2: #2B78C6;
    --app-color-primary-3: #01845d;
    --app-gray-light-3: #722767;
    --app-gray-light-4: #c7c8cd;
    --app-orange: #ff7009;
    --app-black: #000000;
    --app-gray-light-5: #757575;
    --app-green-light-2: #b1e5d5;
    --app-green-light-3: #deedd6;
    --app-gray-light-6: #efefef;
}

@font-face {
    font-family: "Instacart";
    src: url("../fonts/instacart/instacart-sans.woff2") format("woff");
}

/* @font-face {
      font-family: "Eina Regular";
      src: url("../fonts/eina/eina-regular.woff2") format("woff");
  }

  @font-face {
      font-family: "Eina Bold";
      src: url("../fonts/eina/eina-bold.woff2") format("woff");
  } */

/* @font-face {
      font-family: "Inter Bold";
      src: url("../fonts/inter/inter-bold.ttf") format("truetype");
  } */

@font-face {
    font-family: "Inter Medium";
    src: url("../fonts/inter/inter-medium.ttf") format("truetype");
}

/* @font-face {
      font-family: "Inter Regular";
      src: url("../fonts/inter/inter-regular.ttf") format("truetype");
  }

  @font-face {
      font-family: "Inter Semi Bold";
      src: url("../fonts/inter/inter-semibold.ttf") format("truetype");
  } */

.ldld.default:before,
.ldld.full:before,
.ldld.ldbtn:before,
.ldld.bare:before {
    border: 5px solid #fff;
    border-color: white transparent white transparent;
}

.ldld.full {
    background: rgb(0 0 0 / 52%);
}

/* Toastify */
.toastify-info {
    background: #000000 !important;
    color: white !important;
}

.toastify-success {
    background: var(--app-green-light) !important;
    color: white !important;
}

.toastify-error {
    background: red !important;
    color: white !important;
}


html {
    scroll-behavior: smooth;
}

body,
* {
    font-family: "Instacart";
}

.text-content {
    color: #4a5568;
}

h6 {
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}

h5 {
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
}

/* Skeleton animation */
@keyframes shine-lines {
    0% {
        background-position: -0%;
    }

    100% {
        background-position: 1350px;
    }
}

img.app-skelleton {
    background-color: #e8e9eb;
    background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
    background-size: 100%;
}

.app-skelleton-sm {
    animation: shine-lines 7s infinite linear;
}

.app-skelleton-md {
    animation: shine-lines 5.2s infinite linear;
}

.app-skelleton-lg {
    animation: shine-lines 3.6s infinite linear;
}

.header {
    background: white;
    z-index: 10;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
}

.toolbar.toolbar-connected {
    background: #2B78C6;
}

.header .toolbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-box-align: center;
    align-items: center;
    max-height: 80px;
    box-sizing: border-box;
    border-bottom: 1px solid #e8e9eb;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: button;
}

button.custom-paginate-button {
    padding: 10px 17px;
    margin: 5px;
    font-size: 14px;
    border: none;
    border-radius: 7px;
}

button.custom-paginate-button-current {
    color: white;
    background: var(--app-green-light);
    box-shadow: 1px -1px 5px #0000005c;
}

header nav .icon {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: transparent;
    border-radius: 4px;
    height: 32px;
    width: 32px;
    border: none;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header form>div {
    position: relative;
    width: 100%;
}

.header form>div input {
    width: 100%;
    padding: 15px 45px 15px 12px;
    margin-bottom: 0px;
    border-radius: 8px;
    border: 2px solid var(--app-gray-light-1);
    box-shadow: 0 2px 4px 0 #0000000d inset;
    font-size: 14px;
    background-color: white;
    background: var(--app-gray-light-2);
}

.header form>div button[type="submit"] {
    position: absolute;
    right: 10px;
    top: 21%;
}

.has-sidebar {
    margin-left: 260px;
}

.app-width-1 {
    width: 1px;
}

.app-height-1 {
    height: 1px;
}

.app-w-p-20 {
    width: 20%;
}

.app-hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.app-hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 4px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.app-rounded-10 {
    border-radius: 10% !important;
}

.app-rounded-25 {
    border-radius: 25% !important;
}

.app-rounded-50 {
    border-radius: 50% !important;
}

.app-rounded-75 {
    border-radius: 75% !important;
}

.app-rounded-100 {
    border-radius: 100% !important;
}

.app-w-fit {
    width: fit-content !important;
}

.app-h-fit {
    height: fit-content !important;
}

.app-fs-12px {
    font-size: 12px;
}

.app-fs-10px {
    font-size: 10px;
}

.app-fs-12px {
    font-size: 12px;
}

.app-fs-14px {
    font-size: 14px;
}

.app-fs-15px {
    font-size: 15px;
}

.app-fs-16px {
    font-size: 16px;
}

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

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

.app-fs-22px {
    font-size: 22px;
}

.app-fs-25px {
    font-size: 25px;
}

.app-fw-100 {
    font-weight: 100;
}

.app-fw-200 {
    font-weight: 200;
}

.app-fw-300 {
    font-weight: 300;
}

.app-fw-400 {
    font-weight: 400;
}

.app-fw-500 {
    font-weight: 500;
}

.rating-off {
    color: #c7c8cd;
    display: inline-block;
}

.rating-on {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    content: ★★★★★;
    color: #ffbe1d;
    overflow: hidden;
}

.app-w-max-100 {
    max-width: 100% !important;
}

.app-bg-gray-light-2 {
    background: var(--app-gray-light-2);
}

.app-bg-primary {
    background: var(--app-color-primary);
}

.app-bg-primary-2 {
    background: var(--app-color-primary-2);
}

.app-bg-primary-3 {
    background: var(--app-color-primary-3);
}

.app-bg-primary-light {
    background: var(--app-green-light-2);
}

.app-bg-primary-light-2 {
    background: #19875424 !important;
}

.app-bg-gray-light-1 {
    background: var(--app-gray-light-1) !important;
}

.app-bg-dark-1 {
    background-color: var(--app-black-gray-4) !important;
}

.app-border-black {
    border-color: black !important;
}

.app-border-primary-2 {
    border: 2px solid var(--app-green-light) !important;
}

.app-border-none {
    border: none !important;
}

.app-border-8 {
    border-top: 8px solid rgb(52, 53, 56);
}

.app-border-w-1 {
    border-width: 1px;
}

.app-border-w-2 {
    border-width: 2px;
}

.app-border-radius-1 {
    border-radius: 1px;
}

.app-border-radius-3 {
    border-radius: 3px;
}

.app-border-radius-5 {
    border-radius: 5px;
}

.app-border-radius-7 {
    border-radius: 7px;
}

.app-border-radius-10 {
    border-radius: 10px;
}

.app-border-radius-12 {
    border-radius: 12px;
}

.app-border-radius-15 {
    border-radius: 15px;
}

.app-button-md {
    border: none !important;
    margin: 0px 7px !important;
    cursor: pointer;
    position: relative;
    font-size: 14px !important;
    line-height: 20px !important;
    height: 42px !important;
    border-radius: 24px !important;
    padding: 8px 12px !important;
    width: auto;
}

.btn-ui-loading {
    opacity: 0.6 !important;
}

.btn-ui-icon-bloc {
    display: none;
}

.btn-ui-loading .btn-ui-icon-bloc {
    display: inline-block !important;
}

.btn-ui-loading .btn-ui-text-bloc {
    display: none !important;
}

.btn-action {
    border: none;
    padding: 0px;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    color: rgb(9, 138, 9);
    background-color: rgb(255, 255, 255);
    margin: auto;
}

.btn-action-2 {
    border: 1px solid var(--app-gray-light-4);
    padding: 7px 10px;
    border-radius: 7px;
    background: var(--app-gray-light-2);
    color: var(--bs-gray-dark);
    box-shadow: 1px 1px 1px var(--app-gray-light-2);
}

.app-btn-sm {
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    border: 2px solid transparent;
    min-width: 58px;
    height: 28px;
    color: #343538;
    font-size: 14px;
    line-height: 20px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    cursor: pointer;
    padding: 0px 12px;
    margin: 4px;
    white-space: nowrap;
}

.app-button-lg {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    border-radius: 12px;
    height: 56px;
    width: 100%;
    font-family: inherit;
    margin-top: 48px;
    max-width: 350px;
}

.app-text-st-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 17px;
    line-height: 22px;
    font-weight: unset;
    margin-left: 8px;
    margin-right: 8px;
}

.app-title-3 {
    font-size: 21px;
    line-height: 24px;
    font-weight: unset;
    font-variation-settings: "wght" 663, "opsz" 8;
}

.app-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.app-truncate-2 {
    -webkit-line-clamp: 2;
}

.app-truncate-3 {
    -webkit-line-clamp: 3;
}

.app-truncate-4 {
    -webkit-line-clamp: 4;
}

.app-truncate-5 {
    -webkit-line-clamp: 5;
}

.app-empty-text {
    color: transparent;
    font-size: 16rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

.app-button-primary {
    color: rgb(255, 255, 255);
    background-color: var(--app-green-light) !important;
    transition: 0.27s;
}

.app-button-primary:hover {
    background: #2B78C6 !important;
}

.app-button-dark-1 {
    color: rgb(255, 255, 255);
    background-color: var(--app-black-gray-4) !important;
    transition: 0.27s;
}

.app-button-dark-1:hover {
    background: var(--app-black) !important;
}

.app-button-primary-2 {
    color: var(--app-color-primary-2);
    background-color: var(--app-color-primary-2) !important;
}

.app-button-gray {
    background-color: rgb(246, 247, 248) !important;
    color: rgb(199, 200, 205);
}

.app-button-back {
    border: 2px solid var(--app-gray-light-4) !important;
}

.app-text-primary {
    color: var(--app-color-primary);
}

.app-text-light {
    color: var(--app-gray-light-5);
}

.app-text-gray-4 {
    color: var(--app-black-gray-4);
}

.app-text-primary-2 {
    color: var(--app-green-light);
}

.app-text-green {
    color: var(--app-green-light);
}

.app-border-light {
    border: 1px solid #8080802b;
}

.app-border-top-light {
    border-top: 1px solid #e8e9eb;
}

.app-w-50px {
    width: 50px;
}

.app-w-70px {
    width: 70px;
}

.app-h-70px {
    width: 70px;
}

.app-h-50px {
    height: 50px;
}

.app-img-md {
    height: 42px;
    width: 42px;
    border-radius: 50% !important;
    border: 1px solid var(--app-gray-light-6);
    max-width: 100%;
}

.app-hover-gray,
.app-hover-gray-simple,
.app-hover-black,
.app-hover-primary,
.app-hover-light {
    transition: 0.27s;
}

.app-hover-gray:hover {
    background: var(--app-gray-light-1) !important;
    border-radius: 50%;
}

.app-hover-gray-simple:hover {
    background: var(--app-gray-light-1) !important;
    border-radius: 7px;
}

.app-hover-primary:hover {
    background: #2B78C6 !important;
}

.app-hover-black {
    color: white !important;
    background: var(--app-black);
}

.app-hover-red {
    transition: 0.3s;
}

.app-hover-red:hover {
    background: #ff000024 !important;
    border-radius: 50%;
}

.app-hover-green-dark,
.app-hover-green-white {
    transition: 0.3s;
}

.app-hover-green-dark:hover {
    background: #2B78C6 !important;
    border-radius: 50%;
}

.app-hover-green-white:hover {
    background: #2B78C6 !important;
    border-radius: 50%;
    color: white !important;
}

.app-hover-light:hover {
    opacity: 0.65 !important;
}

.app-icon-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
}

/* Side bar navigation */
#side-bar-overlay {
    background: rgba(0, 0, 0, 0.49);
    transition: 0.1s;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#sidebar-bloc {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 285px;
    height: 100%;
    transition: 0.25s;
    overflow-x: hidden;
}

#sidebar-bloc .nav-icon {
    width: 24px;
    height: 24px;
    font-size: 17px;
    padding: 4px;
}

.sidenav {
    padding-top: 10px;
    width: 100%;
    height: 100%;
    background: white;
    transition: 0.18s;
    transition-delay: 0.1s;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidenav a {
    padding: 8px 8px 8px 25px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: var(--app-black);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#sidebar-bloc .ad-bloc,
.nav-secondary .ad-bloc {
    border: 0px;
    display: block;
    border-radius: 12px;
    padding: 16px !important;
    position: relative;
    background: var(--app-color-primary);
    text-decoration: none !important;
    color: initial !important;
}

#sidebar-bloc .ad-bloc-title,
.nav-secondary .ad-bloc-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: unset;
    font-variation-settings: "wght" 663, "opsz" 8;
    margin: 0px;
    color: rgb(250, 241, 229);
}

#sidebar-bloc .ad-bloc-message,
.nav-secondary .ad-bloc-message {
    font-size: 11px;
    line-height: 16px;
    font-weight: unset;
    font-variation-settings: "wght" 0, "opsz" 8;
    margin-top: 4px;
    margin-bottom: 0px;
    color: rgb(250, 241, 229);
}

#sidebar-bloc .ad-bloc-footer,
.nav-secondary .ad-bloc-footer {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sidebar-bloc .ad-bloc-footer-title,
.nav-secondary .ad-bloc-footer-title {
    font-size: 11px;
    line-height: 16px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    padding: 4px 15px;
    border-radius: 12px;
    margin-right: 4px;
    margin-top: 12px;
    white-space: nowrap;
}

#sidebar-bloc .ad-bloc-footer-img,
.nav-secondary .ad-bloc-footer-img {
    height: 15px;
    margin-top: 12px;
    width: 115px;
}

/* Bootstrap overwrite */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: none;
    background: var(--app-color-primary);
}

/* Form eleement */

.form-element {
    display: flex;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 12px;
    border: 2px solid var(--app-gray-light-4);
    height: 55px;
    box-sizing: border-box;
    transition: box-shadow 100ms ease-out 0s;
    background: rgb(255, 255, 255);
    max-width: inherit;
}

.form-parent-bloc {
    background-color: #ffffff;
    border: 1px solid #e8e9eb;
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    overflow: auto;
    flex-direction: column;
}

.form-element-2 {
    border: none;
    border-bottom: 3px solid var(--app-gray-light-4);
    border-radius: 0px !important;
}

.form-control.form-element-2:focus {
    color: var(--app-color-primary-2);
    background-color: var(--app-gray-light-1);
    border-color: var(--app-gray-light-4);
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--app-color-primary-3);
    border-color: var(--app-color-primary);
}


.btn-auth-social-media {
    border: none;
    padding: 13px;
    margin: 0;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    background-color: #ffffff;
    border-radius: 24px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c7c8cd;
    margin: 0 auto;
}

.btn-auth-social-media img {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
}

.btn-auth-social-media-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-variation-settings: "wght" 336, "opsz" 8;
    padding-left: 1.4rem;
    color: #343538;
}

.other-line-parent-bloc {
    border-top: 1px solid #e8e9eb;
    position: relative;
    margin: 24px 0;
}

.other-line-bloc {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    font-size: 12px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

.other-line-bloc-text {
    padding: 0 12px;
    background: #ffffff;
    transform: translateY(-50%);
}

.form-label-cgu {
    font-size: 13px;
    margin: 15px 0px 12px 0px;
    font-weight: 200;
    opacity: 0.8;
    overflow-wrap: break-word;
}

.form-group {
    position: relative;
}

.app-focus-none:focus,
.app-focus-none:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.app-form-elemnt {
    padding: 22px 12px 8px;
    line-height: 18px;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 12px;
    margin: 17px 0px 0px 0px;
    font-weight: 200;
    font-size: 14px;
    border-width: 2px;
}

select {
    font-weight: 200;
    font-size: 14px;
    line-height: 18px;
    width: 100%;
    background-color: transparent;
    height: 100%;
    background-color: #eee6da !important;
    background-image: url(../images/svg-icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 96% 18px;
    position: relative;
    padding: 13px 55px 10px 18px !important;
    border-radius: 20px !important;
    border: 1px solid var(--app-gray-light-4);
}

select.indicator-md {
    background-position: 95% 22px;
    background-size: 16px;
}

.form-group span.placeholder {
    position: absolute;
    margin: 17px 0;
    padding: 0 4px;
    color: #6c757d;
    display: flex;
    align-items: center;
    font-weight: 200;
    font-size: 14px;
    top: -2px;
    left: 10px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    background: none;
    pointer-events: none;
}

.placeholder.postiion-2 {
    margin: 20px 15px !important;
}

.form-group input:valid+span.placeholder,
.form-group input:focus+span.placeholder,
.form-group input:read-only+span.placeholder,
.form-group input:disabled+span.placeholder,
.form-group input:not([value=""]):not(:focus):invalid+span.placeholder {
    transform: scale(0.7) translateY(-13px);
}

.form-group input:focus+span.placeholder {
    color: #284b63;
}

.form-group input:focus {
    color: #284b63;
    border-color: #284b63;
    border-color: var(--app-black-gray-2);
    box-shadow: 0 0 0 0.05rem rgb(0 0 0 / 0%);
}

.form-group div.error {
    font-size: 14px;
    color: red;
    font-weight: 200 !important;
}

/* product */
/* product bloc */
.product-bloc {
    border: 1px solid #f1f1f15e;
}

.product-bloc.w-20 {
    width: 20%;
}

.product-bloc .app-button-md {
    font-size: 14px !important;
    padding: 5px 7px !important;
}

.product-bloc .product-price {
    font-size: 16px;
    line-height: 24px;
    font-weight: unset;
    font-variation-settings: "wght" 563, "opsz" 8;
    margin-right: 2px;
}

.product-bloc .product-devise {
    font-size: 11px;
    line-height: 16px;
    font-weight: unset;
    font-variation-settings: "wght" 663, "opsz" 8;
    vertical-align: top;
}

.product-bloc .product-dashed-price {
    color: rgb(52, 53, 56);
    font-size: 14px;
    line-height: 16px;
    font-weight: unset;
    text-decoration: line-through;
    font-variation-settings: "wght" 0, "opsz" 8;
    margin: 0px;
}

.product-bloc .product-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: unset;
    font-variation-settings: "wght" 0, "opsz" 8;
    color: #343538;
}

.product-bloc .product-description {
    font-size: 11px;
    line-height: 16px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    color: #72767e;
}

.product-bloc .product-price-promo {
    border-radius: 4px;
    padding: 1px 0px 1px 5px;
    background-color: rgb(255, 220, 35);
    color: rgb(52, 53, 56);
}

.product-bloc .product-panner-indicator {
    color: var(--app-green-light);
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    font-variation-settings: "wght" 336, "opsz" 8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-bloc .product-category-indicator {
    font-size: 11px;
    line-height: 16px;
    padding-top: 5px;
    font-weight: unset;
    font-variation-settings: "wght" 600, "opsz" 8;
    color: #72767e;
}

.product-bloc img[alt="product-img"] {
    min-height: 175px;
    max-height: 175px;
    width: 100%;
    object-fit: cover;
}

/* nav menu */
.nav-menu-wrapper .ul-menu {
    width: 100%;
    margin: 0px;
    padding: 16px 12px;
    list-style: none;
    box-shadow: rgba(0, 0, 0, 0.09) 0px -0.5px 0px inset;
}

.nav-menu-wrapper .ul-menu li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    text-decoration: none;
    align-items: center;
    box-sizing: border-box;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 8px;
    color: rgb(52, 53, 56);
    position: relative;
    text-decoration: none;
    cursor: pointer;
    background-color: white;
}

.nav-menu-wrapper .ul-menu li a.active {
    background-color: rgb(52, 53, 56);
    color: rgb(255, 255, 255);
}

.nav-menu-wrapper .ul-menu li a.active:hover {
    background-color: rgb(52, 53, 56) !important;
    color: rgb(255, 255, 255) !important;
}

.nav-menu-wrapper .ul-menu li .icon {
    height: 40px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.nav-menu-wrapper .ul-menu li .text {
    padding-top: 9px;
    padding-bottom: 9px;
    margin-left: 8px;
    color: black;
}

.nav-menu-wrapper .ul-menu li .active .text {
    color: white;
}

.footer-bloc {
    background: var(--app-gray-light-2);
    margin-top: 30px;
}

.footer-bloc .main-footer .footer-title h4 {
    font-size: 17px;
    font-weight: 600;
}

.footer-bloc .main-footer .footer-contain {
    margin-top: 10px;
}

.footer-bloc .main-footer .footer-contain ul {
    padding: 0;
    margin: 0;
}

.footer-bloc .main-footer .footer-contain ul li {
    display: block;
    font-size: 15px;
    padding-top: 8px;
}

.footer-bloc .main-footer .footer-contain ul li a {
    display: inline-block;
    position: relative;
    color: #4a5568;
    font-weight: normal;
    text-decoration: none;
    font-family: "Inter Medium";
}

.footer-bloc .main-footer .footer-contact ul li .footer-number {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    -webkit-box-align: start;
    align-items: flex-start;
}

.footer-bloc .main-footer .footer-contact ul li .footer-number .feather {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
}

.footer-bloc .main-footer .footer-contact ul li .footer-number .contact-number h5 {
    margin-top: 6px;
    font-weight: 600;
    color: #222;
    font-size: 14px;
}

.footer-bloc .main-footer .footer-contact ul li {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.footer-bloc .main-footer .footer-logo .footer-logo-contain p {
    font-size: 14px;
    color: #4a5568;
    line-height: 25px;
    margin-bottom: 0;
    width: 88%;
}

.footer-bloc .sub-footer {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-top: 1px dashed #c1c1c1;
}

.footer-bloc .sub-footer .social-link {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 20px;
}

.footer-bloc .sub-footer .social-link ul {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.footer-bloc .sub-footer ul li {
    display: block;
    padding: 0px 7px;
}

.footer-bloc .sub-footer .social-link ul li a {
    display: block;
}

.footer-bloc .sub-footer .social-link ul li a i {
    color: #4a5568;
    transition: all 0.3s ease-in-out;
}

/* Bottom nav */
.bottom-nav {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: white;
    box-shadow: -3px -2px 6px 0px #1987543d;
}

.bottom-nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    margin-bottom: 0;
    padding: 0;
}

.bottom-nav .bottom-nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7px 15px 7px 15px;
    overflow: hidden;
    border-top: 4px solid transparent;
    width: 25%;
    color: var(--app-black-gray-2);
    opacity: 0.8;
}

.bottom-nav .bottom-nav-item i {
    margin: 5px auto;
    font-size: 18px;
}

.bottom-nav .bottom-nav-item span {
    font-size: 12px;
}

.bottom-nav .bottom-nav-item.active {
    border-top-color: var(--app-green-light);
    color: var(--app-green-light);
    opacity: 1;
    background: var(--bs-light);
}

.bottom-nav .nav-indicator {
    background: var(--app-green-light);
    color: white;
    padding: 4px 6px;
    border-radius: 50%;
    display: block;
    min-width: 25px;
    text-align: center;
    box-shadow: 1px 2px 5px #0000003b;
}

.bottom-nav .cart-counter-bloc {
    display: none;
    position: absolute;
    top: 3px;
    transform: translateX(15px);
    background: transparent !important;
 }

.bottom-nav .cart-counter-bloc.app-shopping-cart-not-empty {
    display: block;
}


/* Mobile toolbar */
.menu-toolbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
    /* background: white; */
    border-bottom: 2px solid var(--app-gray-light-1);
}

.menu-toolbar .toolbar-search {
    overflow: hidden;
}

.menu-toolbar .menu-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    font-size: 18px;
    line-height: 18px;
    background: var(--app-gray-light-1) !important;
    color: var(--app-black-gray);
}

.menu-toolbar .menu-shopping-cart {
    padding: 5px 15px;
    border-radius: 25px;
    white-space: nowrap;
    border: none;
    background: white;
    color: var(--app-black-gray-4);
    font-size: 14px;
}

.app-shopping-cart-not-empty {
    background: var(--app-green-light) !important;
    color: white !important;
}

 .app-shopping-cart-not-empty span.cart-total-count {
    margin-left: 10px;
 }

.zoom img::selection {
    background-color: transparent;
}

/* Modal */
.app-modal .popup {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.app-modal .popup :is(header, .field) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-modal .popup header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf9;
}

.app-modal header span {
    font-size: 21px;
    font-weight: 600;
}

.app-modal header .close {
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    color: #878787;
    font-size: 17px;
    background: #f2f3fb;
    height: 33px;
    width: 33px;
    cursor: pointer;
}

.app-modal header .close:hover {
    background: #ebedf9;
}

.app-modal .popup .content {
    margin: 20px 0;
}

.app-modal .content p {
    font-size: 16px;
}

.app-modal .content .field {
    margin: 12px 0 -5px 0;
    height: 45px;
    border-radius: 4px;
    background: var(--app-gray-light-6);
    border: 1px solid #e1e1e1;
}

.app-modal .field.active {
    border-color: #7d2ae8;
}

.app-modal .field i {
    width: 50px;
    font-size: 18px;
    text-align: center;
}

.app-modal .field.active i {
    color: #7d2ae8;
}

.app-modal .field input {
    flex-grow: 1;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 300;
}

.app-modal .field button {
    color: #fff;
    padding: 13px 18px;
    background: var(--bs-dark);
    border-radius: 0px 7px 7px 0px;
    font-weight: 100;
    font-size: 14px;
}

/*  */
.has-right-icon {
    padding-right: 40px;
}

.app-right-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    color: var(--app-color-primary-3);
}

.has-left-icon {
    padding-left: 40px;
}

.app-right-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px;
    color: var(--app-color-primary-3);
}

/* Shopping item card presentation */
.shopping-item-parent-bloc {
    background: #fdfdfe;
    border: 1px solid var(--app-gray-light-1);
    border-radius: 7px;
}

.shopping-item-product-bloc {
    border-bottom: 1px solid var(--app-gray-light-1);
}

.shopping-item-product-bloc:last-child {
    border-bottom: none;
}

.shopping-item-product-bloc .img-bloc {
    padding: 7px;
    border-radius: 7px;
    background: white;
}

.shopping-item-product-bloc img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.table-order-price-resume {
    margin: 10px auto;
    border: none;
}

.table-bloc {
    border-radius: 15px;
    padding: 1px;
    background: white;
}

.table-order-price-resume tr {
    border-bottom: 1px solid var(--app-gray-light-4);
}

.table-order-price-resume tr:last-of-type {
    border-bottom: none;
}

.table-order-price-resume td {
    padding: 10px 15px;
    background: var(--bs-white);
    margin: 7px auto;
}

.location-pin {
    padding: 9px 15px;
    color: var(--app-color-primary-3);
    background: var(--app-gray-light-2);
    border-radius: 50px;
    font-size: 18px;
}

.location-pin-reverse {
    background: var(--app-color-primary-3);
    color: var(--app-gray-light-2);
}

.pac-container {
    z-index: 10000 !important;
}

/* Intel input */
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container,
.iti--separate-dial-code .iti__selected-flag {
    background: var(--app-gray-light-6) !important;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

/* Quantity bloc */
.quantity-bloc {
    padding: 0px;
    margin: 0px 0px 16px;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    min-width: 180px;
    font-size: 17px;
    line-height: 22px;
    font-weight: unset;
    font-variation-settings: "wght" 336, "opsz" 8;
    color: rgb(52, 53, 56);
    border: none;
    border-radius: 12px;
    background-color: rgb(246, 247, 248);
    width: 100%;
    height: 56px;
}

/* Select delivery adress bloc */
.btn-select-delivery-option {
    border: 1px solid var(--app-gray-light-1);
    border-radius: 7px;
    box-shadow: 1px 2px 2px var(--app-gray-light-6);
}

.btn-select-delivery-option.active {
    border: 2px solid var(--app-color-primary-3);
    background: var(--app-gray-light-2) !important;
}

/* Share buton */
.shareon>* {
    display: inline-block;
    position: relative;
    height: 24px;
    min-width: 16px;
    margin: 3px 7px;
    padding: 11px 16px;
    background-color: #333;
    border-radius: 50%;
    border: 0;
    box-sizing: content-box;
    color: #fff;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.shareon> :before {
    display: inline-block;
    position: absolute;
    height: 24px;
    width: 24px;
    top: auto;
    left: 13px;
    background-repeat: no-repeat;
    background-size: auto;
    content: "";
    vertical-align: bottom;
}

.rating-bloc {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
}

.rating-bloc i {
    font-size: 27px;
    padding: 0px 10px;
    color: var(--app-gray-light-4);
    cursor: pointer;
}

.rating-bloc i.is-active {
    color: #ffbe1d;
}

.rating-bloc i:hover,
.rating-bloc i:hover~i {
    color: #f3b10b;
}

.animation-collapse {
    animation: anim-collapse 0.3s ease forwards;
}

.animation-uncollapse {
    animation: anim-uncollapse 0.2s ease forwards;
}

@keyframes anim-collapse {
    from {
        height: 78px;
    }

    to {
        padding-top: 0 !important;
        height: 0px;
    }
}

@keyframes anim-uncollapse {
    from {
        height: 0px;
    }

    to {
        height: 78px;
    }
}

/* Paginatoin */
.pagination-bloc {
    z-index: 0;
}

.pagination-bloc ul.pagination {
    justify-content: center;
}

.pagination-bloc .page-item .page-link {
    margin: 5px;
    border-radius: 7px;
    color: black;
}

.pagination-bloc .page-item.disabled {
    opacity: .6;
}

.pagination-bloc .page-item.active .page-link {
    background: var(--app-green-light) !important;
    color: white;
}

/* Badge */
.app-product-badge {
    margin: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50px;
    width: fit-content;
    padding: 2px 15px;
}

.app-badge-sold-out {
    color: var(--app-orange);
    border: 1px solid var(--app-orange);
}

.app-badge-available {
    color: var(--app-green-light) !important;
    border: 1px solid var(--app-green-light) !important;
}

.app-badge-new {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    transform: translate(0%, 20%);
    padding: 5px 8px !important;
    font-size: 12px !important;
    height: fit-content !important;
}

.app-btn-heart {
    width: 38px;
    height: 39px;
    position: absolute;
    bottom: 0;
    right: 7px;
    background: var(--app-gray-light-2);
    color: var(--app-gray-light-4);
    border: none;
    border-radius: 50%;
    font-size: 23px;
}

.app-btn-heart i {
    font-size: 17px;
}

.app-btn-heart[data-status='like'] {
    background: var(--app-gray-light-1);
    color: var(--bs-red);
}


.app-btn-sale {
    width: auto;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 103px;
    background: var(--app-gray-light-2);
    color: var(--app-color-primary);
    border: none;
    /* border-radius: 50%; */
    font-size: 23px;
    top: 105px;
}


/* Section product pack */
.bloc-product-pack>div {
    background: rgba(255, 0, 0, 0.247)(221, 20, 20);
    border-radius: 24px;
    border: 2px solid rgb(232, 233, 235);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bloc-product-pack div.bg {
    background: linear-gradient(to bottom, #eaf5eb, #eaf5eb)
}

.bloc-product-pack p.title {
    position: absolute;
    color: white;
    z-index: 1;
    left: 50%;
    min-width: 60%;
    text-align: center;
    bottom: -10px;
    transform: translateX(-50%);
    padding: 10px;
    box-shadow: 1px 2px #00000042;
    background: var(--app-green-light);
    border-radius: 50px;
}

.bloc-product-pack .pack {
    color: white;
    position: absolute;
    background: var(--app-orange);
    z-index: 1;
    text-align: center;
    transform: rotate(-23deg);
    border-radius: 10px;
    width: 72px;
    padding: 13px;
    display: inline-block;
}

.bloc-product-pack .bg-img {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.bloc-product-pack .show-more {
    background: var(--app-green-light-3);
}

.bloc-product-pack .show-more i {

    background: var(--app-color-primary);
    color: white;
    padding: 27px;
    border-radius: 50%;
    margin: 7px 0px;
    font-size: 2rem;
}

/* Product Img block */
#bloc-img-previews {
    height: 300px;
    width: 112px;
    overflow-y: auto;
}

#img-preloader {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    border-radius: 7px;
}

/* Responsivity */
@media only screen and (max-width: 992px) {

    .product-bloc,
    .product-bloc.w-20 {
        width: 50% !important;
        border: 1px solid #f1f1f15e;
    }

    .has-sidebar {
        margin-left: 0px;
    }

    .product-bloc img[alt="product-img"] {
        min-height: auto;
    }

    .bottom-nav {
        display: block;
    }

    .app-sm-border-primary-1 {
        border: 1px solid var(--app-green-light) !important;
    }

    .app-button-lg {
        height: auto;
        padding: 13px;
    }

    .app-button-lg .app-text-st-1 {
        font-size: 14px;
        line-height: normal;
    }

    .form-element {
        padding: 12px !important;
        height: auto;
        font-size: 15px;
        font-weight: 200;
    }

    .carousel-indicators {
        bottom: -35px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    /* custom scrollbar */
    ::-webkit-scrollbar {
        width: 0px;
        display: none;
    }

    .app-modal .popup {
        padding: 10px;
    }

    .quantity-bloc {
        background: var(--app-gray-light-1);
        height: 50px;
    }

    .bloc-product-pack .bg-img {
        height: 200px;
    }

    /* Product Img block */
    #product-img-main {
        max-height: 220px;
        object-fit: contain;
        opacity: 1;
    }

    #bloc-img-previews {
        width: 100% !important;
        max-width: 100% !important;
        height: 80px !important;
        overflow-x: auto;
    }

    #img-preloader {
        transform: translate(-50%, -100%);
    }

    .product-other-img img {
        border: 2px solid var(--app-gray-light-1);
        border-radius: 15px;
    }

    .product-other-img img.active {
        border: 2px solid var(--app-color-primary);
        border-radius: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .product-bloc {
        width: 50% !important;
    }

    .app-w-mb-100 {
        width: 100% !important;
    }
}

@media only screen and (max-width: 320px) {

    .product-bloc,
    .product-bloc.w-20 {
        width: 100% !important;
        border: 1px solid #f1f1f15e;
    }
}
