:root{
    /*color pallete*/
    --black: #3c3c3c;
    --grey: #f5f5f5;
    --white: #ffffff;
    --accent-light: #e4c8cb;
    --accent-dark: #92464c;
    --danger:#88272f;
    /*sizing-variables*/
    --border-radius: 15px;
    --wrapper-margin: 5em;

    
    font-size: 16px;

}
html{
    width:100vw;
    overflow-x: hidden;
}
body{
    color:var(--black);
    font-size: 1rem;
    font-weight: 400;
}
.items{
    display:flex;flex-wrap:nowrap;overflow:hidden;
}
@media screen and (max-width:768px)
{
    :root{
        font-size: 14px;
    }
}
p{
    font-size:1rem;
}
.icon-md{
    width: 1.7rem;
    height: auto;
}
.icon{
    width: 1rem;
    height: auto;
}
.icon-sm{
    width: 0.7rem;
    margin-top:-3px;
    height: auto;
}
.icon-xs{
    width: 0.5rem;
    margin-top:-5px;
    height: auto;
}
.icon-light,.icon-light path{
    fill:var(--white);
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4f4f4f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}


body{
    background-color: var(--white);
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

img{
    max-width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight: 700;
}

h5,.h5{
    font-size: 1rem;
}

ul,li{
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

a{
    color: var(--black);
    text-decoration: none;
}

a:hover,
a:active {
  color: var(--accent-dark);
}
a.link{
    color:var(--accent-dark);
    transition: all 0.5s ease;
}
a.link:hover{
    color:var(--accent-light);
}
.wrapper{
    width: 100%;
    margin: var(--wrapper-margin) 0 ;
}

.container-md{
    --bs-gutter-x : 2.5rem;
}

.container-fluid{
    max-width: 1500px;
}

.sub-menu-trigger.icon-chevron-right
{
    display: none;
}

.background-grey{
    background-color: var(--grey);
}

.material-icons-outlined{
    font-size:1.25em
}

button.custom,a.custom{
    padding: 0.55rem 1rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--danger);
}


/* Typography */
.text-md{
    font-size: 1.1rem;
    line-height: 1.2rem;
}
.text-sm{
    font-size: 0.9rem;
    line-height: 1.2rem;
}
.text-xs{
    font-size: 0.8rem;
    line-height: 1.2rem;
}

.slideButton{
    background-color:var(--danger);
    color:var(--white);
}
.slideButton:hover{
    background-color:var(--grey);
    border:2px solid var(--black);
    font-weight:bold;
    color:var(--black);
}
.text-bold{
    font-weight: 700;
}
.font-family{
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.color-accent-dark{
    color: var(--accent-dark);
}

.color-accent-light{
    color: var(--accent-light)
}

.bg-accent-dark{
    background-color: var(--accent-dark);
}

.bg-accent-light{
    background-color: var(--accent-light);
}

.rounded{
    border-radius: var(--border-radius) !important;
}

.w-30{
    width: 33%;
}


:root{
    
    --successColor : rgb(0,141,0);
    --dangerColor : rgb(141,0,0);
}
.image{
    display: flex;
    flex-grow:0;flex-shrink:0;
    overflow: hidden;

}
.image-center > *{
    left: 50%!important;
    transform: translateX(-50%);
}
.image img{ 
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.image svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.text-muted svg{
    fill:#6c757d!important;
    stroke:#6c757d!important;
}
.text-white svg{
    fill:#fff!important;
    stroke:#fff!important;
}
.image-cover img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-sm[data-aspect] > *{
    width:40%;
}
.image-sm{
    width: 3.3rem;
    position: relative;
    overflow: hidden;
}

.image-xs{
    width:1.5rem;
    position: relative;
    overflow: hidden;
}


[data-aspect]{
    width: 100%;
    position: relative;
    display: flex;
}
[data-aspect] > *{
    top:0px;
    left:0px;
    position: absolute;
}
[data-aspect='1/1']{
    padding-top: 100%;
}
[data-aspect='2/1']{
    padding-top: 50%;
}
[data-aspect='4/3']{
    padding-top:73.5%;
}

[class*="block-"]::before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: inherit;
    top:0px;
    left: 0px;
    opacity: 0.2;
    z-index: 0;
}

.block-error::before{
    background-color: var(--dangerColor);
}
.block-success::before{
    background-color: var(--successColor);
}

.block-success
{
    color:var(--successColor);
    fill:var(--successColor);
}
.block-error
{
    color:var(--dangerColor);
    fill:var(--dangerColor);
}


[data-toggle]{
    cursor: pointer;
}

.overflow-hidden{
    overflow-y:hidden!important;  
}


.card{
    border-radius:15px;
}
.header .link{
    font-family: poppins;
    font-size: 1.02rem;
    font-weight: 500;
    display: flex;
    padding: 0.5rem 0.4rem;
    text-transform: capitalize;
    position: relative;
}

.link-dark{
    color:#4b4b4b!important;
}
.link-button{
    border-radius: 10px;
    background-color: var(--danger);
    color: var(--white)!important;
    font-weight: 400;
    padding:0.4rem 1.5rem;
}


#cartCount{
    position: absolute;
    top:0rem;
    right: -0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 0.7rem;
    background-color: var(--dangerColor);
    width: 1.3rem;
    height: 1.3rem;
}


.borderless-input{
    border:none;box-shadow:none;outline:none;background-color: transparent;
    padding: unset!important;
}

.header .link{
    flex-grow: 0;
    display: flex;
    flex-shrink: 0;
}

#search-popup{
    width:100%;
    max-height: 60vh;
    position: absolute;
    top:calc(100% + 1rem);
    z-index: 9;
    overflow: auto;
} 

@media screen and (max-width:768px)
{
    #search-popup{
        top:0px;
        max-height: unset;
        position:fixed;
        width: 100%;
        left: 0px;
        height: 100vh;
    }
}


.input-icon-group{
    padding:0.5rem 0.5rem!important;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}
.input-icon-group input{
border:none;box-shadow:none;outline:none;font-size:1rem;font-weight:400;flex: 1 1 100%;
}

.card{
    transition: all 0.5s ease;
}
.card.error-field{
    border:1px solid var(--danger);
}

.out-of-stock{
    /* opacity: 0.5!important; */
    position: relative;
}

.out-of-stock::after{
    content: "Out of Stock";
    position: absolute;
    width: 100%;
    height: 100%;
    padding:1.5rem;
    font-weight: 600;
    background-color: rgba(255,255,255,0.6);
    color:gray;
}



input[name="mobile-number"]::-webkit-inner-spin-button,
input[name="mobile-number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[name="mobile-number"] {
  -moz-appearance: textfield;
}

.dark{
    color: var(--white);
    background-color: #282828;
    border-top-color: rgba(255, 255, 255, 0.15);
}
.dark a {
    color: rgba(255, 255, 255, 0.75);
}

.footer li {
    font-weight: 600;
    display: block;
    margin-bottom: 0.7rem;
}
.social-icon {
    margin: 0 5px 5px 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-align: center;
    font-size: 1.25rem;
    line-height: 38px !important;
    color: #555;
    text-shadow: none;
    border-radius: 3px;
    overflow: hidden;
}
h2{
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

h3{
    font-size: 1.5rem;
    line-height: 1.5;
}
h4{
    font-size:1.2rem;
    margin-bottom: 1rem;
}
.text-sm{
    font-size:0.9rem;
}
.text-lighter{
    color:#484848;
}
.text-bold{
    font-weight: 600;
}
.text-bolder{
    font-weight: 500;
}
label{
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
    cursor: pointer;
}

.slick-list{
    display: flex!important;
    flex-direction: row;
}
.slick-track{
    display: flex!important;
    align-items: stretch!important;
}



.page-path{
    display:flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.page-link{
    font-weight: bolder;
    cursor:pointer;
    font-size:0.9rem;
    font-weight: bold;
    text-transform: capitalize;
}
.page-link:not(:last-child)::after {
    content: "\203A";
    font-weight: bolder;
    cursor:pointer;
    margin: 0 8px;
}
.page-link:not(:last-child):hover{
    color:#434343!important;
    background:unset!important;
}
.page-link:last-child{
    color:gray!important;
    background:unset!important;
    cursor:unset!important;
    font-weight: 400;
}

.btn-link,
.page-link,
.page-link:hover,
.page-link:focus { color: #88272f; }


.field-error{
    color:var(--danger);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom:0.5rem;
  }

  .show{
    display: flex !important;
  } 


  @media screen and (max-width:768px)
  {
    #wa-widget-send-button{
      display: none;
    }
  }