/* webfonts */

@font-face {
    font-family: 'inter-Light';
    src: url('../fonts/Inter-Light.ttf');
}

@font-face {
    font-family: 'inter-Regular';
    src: url('../fonts/Inter-Regular.ttf');
}

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

@font-face {
    font-family: 'inter-SemiBold';
    src: url('../fonts/Inter-Bold.ttf');
}

@font-face {
    font-family: 'inter-Bold';
    src: url('../fonts/Inter-Bold.ttf');
}
@font-face {
    font-family: 'inter-ExtraBold';
    src: url('../fonts/Inter-ExtraBold.ttf');
}


/* webfonts end */

:root {
    --secondary-color: #21291D;
    --primary-color: #97A880;
    --light-color: #B5B7BC;
    --white-text:#fff;
    --text-color: #21291D;
    --heading-color: #21291D;
    --font: 'inter-Regular';
    --font-light: 'inter-Light';
    --font-medium: 'inter-Medium';
    --font-semibold: 'inter-SemiBold';
    --font-bold: 'inter-Bold';
    --font-bold: 'inter-ExtraBold';
}

html {
    margin: 0;
}

body {
    font-family: var(--font);
    overflow-x: hidden;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-family: var(--font-semibold);
    line-height: 1.1;
    color: var(--heading-color);
}

h1 {
    font-size: 60px;
}
h2 {
    font-size: 45px;
}

h3, .h3 {
    font-size: 30px;
    margin: -3px;
}

h4, .h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}
h6{
    font-size: 20px;
}

.font-medium {
    font-family: var(--font-medium);
}
.font-semibold {
    font-family: var(--font-semibold);
}
a, p, button, span {
    white-space: normal;
    word-break: break-word;
}

a {
    text-decoration: none !important;
    color: var(--secondary-color);
    cursor: pointer;

}
a.single-class {
    display: flex;
}
a:focus-visible {
    outline: transparent;
}
.page-link:focus {
    box-shadow: none;
}
.file > input[type='file'] {

     display: none;

    }
p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color);
}

.large-font {
    font-size: 18px;
    line-height: 25px;
}

.small-font {
    font-size: 12px;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

button {
    transition: all 0.5s;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}
.form-control:focus, input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    background-color: transparent;
    border-color: #0D6CFF;
}
.form-select:focus {
    border-color: #0D6CFF;
    box-shadow: none;
}



.checkbox-form-feild .radio-button-container {
    color: rgba(0,0,0,0.75);
    display: block;
    position: relative;
    padding-left: 45px;
    line-height: 25px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .radio-button-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .checkbox-form-feild  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: rgba(0,0,0,0);
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.25);
    transition: all 0.3s;
  }
  .checkbox-form-feild   .radio-button-container:hover input ~ .checkmark {
    border-color: rgba(0,0,0,0.5);
  }
  .checkbox-form-feild  .radio-button-container input:checked ~ .checkmark {
    background-color: rgba(0,0,0,0);
    border-color: #97a880;
  }
  .checkbox-form-feild   .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .checkbox-form-feild  .radio-button-container input:checked ~ .checkmark:after {
    display: block;
  }
  .checkbox-form-feild  .radio-button-container .checkmark:after {
       top: 2px;
      left: 2px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #97a880;
  }

.form-control::placeholder {
    color: var(--text-color);
}
.form-control:focus {
    border-color: #F2F3F5;
    background: #F2F3F5;
}
input[type="checkbox"]:checked ~ label:before {
    background: var(--primary-color) no-repeat center;
}
.formfield {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.form-icon {
    position: absolute;
    right: 16px;
    top: 19%;
    /* transform: translateY(-50%);
    display: flex; */
    align-items: center;
}
.form-icon.staff-calendar {
    position: absolute;
    right: 114px;
    top: 19%;
    /* transform: translateY(-50%);
    display: flex; */
    align-items: center;
}
.form-group label {
    font-size: 14px;
    line-height: 25px;
    color: var(--text-color);
    font-family: var(--font-medium);
    /* position: absolute; */
    top: 50%;
    transform: translateY(-50%);
    left: 17px;
    pointer-events: none;
    /* opacity: 0; */
    transition: 0.3s;
    margin-bottom: 0px;
}
.form-group {
    margin-bottom: 30px;
}
/* custom-button-CSS */

.button {
    transition: all 0.5s;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 36px;
    font-size: 16px;
    border-radius: 50px;
    color: var(--secondary-color);
    font-family: var(--font-regular);
    padding: 7px 20px;
}

.primary-btn {
    text-transform: capitalize;
    display: inline-flex;
    text-align: center;
    border-radius: 8px;
    align-items: center;
    transition: all 0.5s;
    min-width: 160px;
    justify-content: center;
    border: none;
    background: #97A880;
    border-color: #97A880;
    color: #21291D;
    font-size: 14px;
    font-family: var(--font-semibold);
}

.light-btn {
    background: #F2F3F5;
    color: #D4D4D4;
}

a:hover {
    color: var(--secondary-color);
}
.main.secondary-bg {
    background: #F2F2F2;
}
.outline-btn {
    background: transparent;
    border: 1px solid var(--light-color) !important;
    border-radius: 10px;
    padding: 10px 38px;
    color: var(--secondary-color);
    font-size: 16px;
    transition: all 0.5s;
}
.outline-btn:hover, .primary-btn:hover, .primary-btn:hover path, .red-btn:hover{
    background: var(--primary-color);
    color: #fff;
    fill: #fff;

}

.secondary-btn {
    background-color: #F2F2F2;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.5s;
    border-radius: 10px;
    min-width: 160px;
    padding: 10px 20px;
    font-family: var(--font-semibold);
}
.red-btn {
    background: #EB4335;
    min-width: 150px;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;

}
.btn {
    display: inline-flex;
    border: unset;
    align-items: center;
    justify-content: center;
}
/* .secondary-btn:hover {
    background-color: transparent;
    color: var(--light-blue-bg);
    border-color: var(--light-blue-bg);
} */
.small-btn {
    font-size: 20px;
    padding: 8px 20px;
    max-height: 48px;
    font-family: var(--font);
    gap: 8px;
}
.medium-btn {
    padding: 15px 20px;
    max-height: 53px;
    min-width: 170px;
}
.full-btn {
    width: 100%;
    min-width: auto;
}
input [type="checkbox"]:focus {
    box-shadow: none;
}
.form-control::placeholder {
    font-size: 14px;
    color: #9C9C9C;
}
.dropdown a.form-control {
    font-size: 14px;
    color: #727272;
    font-family: var(--font-medium);
}
.lightgreen_bg {
    background-color: #DFF3EC;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #CECECE;
}
::-webkit-scrollbar-track {
    background: #F7F7F7;
    border-radius: 100px;
}
.container {
    max-width: 1800px;
    padding: 0 20px;
}
.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--primary-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}



.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
 .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

 .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}


.filter-detail-card {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 35px 0;
    z-index: 11;
    background-color: var(--white);
    width: 100%;
    border-top: 1px solid var(--border-color);
    transform-origin: top;
    transform: scaleY(1.3) translateY(3rem);
    transition: all 0.5s cubic-bezier(0.51, 0, 0.34, 1.01);
}

.filter-detail-wrapper[open] .filter-detail-card {
    transform: scaleY(1) translateY(0);
}

.filter-detail-card .container {
    padding-left: 0;
    padding-right: 0;
}

.filter-inner-main {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 50px;
}

.filter-inr-item {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding-right: 10px;
    padding-left: 10px;
}

.filter-inr-item .filter-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}


.filter-name-list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    word-break: break-word;
    line-height: 24px;
}

.filter-name-list-item input {
    position: absolute;
    opacity: 1;
    left: 0;
    top: 3px;
    margin: 0;
    z-index: 1;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-name-list-item .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #000;
    background: #fff;
}

.filter-name-list-item .checkmark::after {
    position: absolute;
    content: "";
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

.filter-name-list-item input:checked~.checkmark {
    background-color: #121212;
}

.filter-name-list-item input:checked~.checkmark:after {
    display: block;
}

.filter-name-list-item label {
    display: inline-block;
    cursor: pointer;
    padding: 0;
    text-transform: capitalize;
}
li.filter-name-list-item.color_varint {
    position: relative;
    margin: 0 6px 6px 0px;
    padding: 0;
    display: inline-block;
}
.product-loop-variants {
    margin-left: 5px;
}

.color_wrapper .color_varint {
    position: relative;
    margin: 0 6px 6px 0px;
    padding: 0;
    display: inline-block;
}

.colorRadioinput {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

.colorMainbox {
    position: relative;
    display: inline-block;
    height: 24px;
    width: 24px;
    vertical-align: top;
    cursor: pointer;
    background-size: cover;
    border-radius: 50px;
}

.colorMainbox[data-tooltip] {
    position: relative;
}

.colorMainbox[data-tooltip]:before {
    position: absolute;
    content: attr(data-tooltip);
    bottom: 70%;
    left: 70%;
    padding: 4px 11px 3px;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    background: var(--light-background);
    color: var(--text-color-light);
    font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 13px));
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
    z-index: 1;
}

.colorMainbox:after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -4px;
    left: -4px;
}

.colorMainbox.is-active:after,
.colorRadioinput:checked+.colorMainbox:after {
    border: 1px solid var(--border-color);
}

.hidden-text {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.colorMainbox.is-active:after, .colorRadioinput:checked+.colorMainbox:after {
    border: 1px solid #21291D;
    border-radius: 50px;
}
.checkbox-form-feild  label {
    font-family: var(--font-medium);
}
.account-security-password-content p {
    font-size: 14px;
    font-weight: 400;
}

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

.menu-add-items {
    font-size: 10px;
    margin: 13px;
    color: var(--text-color);
}

.empty-menu-box {
    text-align: center;
}
.showPassword {
    position: absolute;
    right: 18px;
    top: 52%;
    align-items: center;
}
.breed-text-color {
    font-size: 12px;
    color: darkgray;
    text-align: initial;
}
.single-line{
    display: flex;
}
i#cart-delete-btn {
    color: red;
    font-size: 19px;
}
.business-set-up-alert {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 18px;
    padding: 8px 11px;
    border-radius: 5px;
    justify-content: space-between;
}
.cstm-stepping-form {
    position: fixed;
    top: 35px;
}
.cstm-stepping-form span{
    white-space: nowrap;
}
#business-location {
    padding-left: 34px;
}
.left-alert-content {
    display: flex;
    gap: 8px;
}
.cstm-close {
    max-width: 13px;
}