/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/

:root {
    --header-height: 3.1rem;
    /*========== Colors ==========*/
    --hue: 0;
    --sat: 100%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, );
    --container-color: #FFF;
    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
     :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}


/*=============== BASE ===============*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 29px 0 0 0;
    /* margin: var(--header-height) 0 0 0; */
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    min-height: 100vh;
    width: 100%;
    /* background-image: url(/general_bg.svg), linear-gradient(#aac0be29, #aac0be29); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.scrollable {
    overflow-y: visible;
    overflow-x: auto;
}

.nav-link {
    margin-right: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-link.active {
    background: rgb(0, 192, 10) !important;
    /* background: rgb(192, 0, 0) !important; */
    color: rgb(255, 255, 255) !important;
}

.nav-link.disabled {
    background: rgb(100, 100, 100) !important;
    color: rgb(190, 190, 190)!important;
}

.removed {
    background: rgb(48, 48, 48);
    color: rgb(190, 190, 190);
}

.choosed {
    background: rgba(0, 192, 10, 0.482) !important;
    /* background: rgba(192, 0, 0, 0.482) !important; */
    color: rgb(255, 255, 255);
}


/* .received{
  background: rgb(175, 0, 0);
  color:rgb(255, 255, 255);
} */

.horizontal_tabs {
    width: max-content;
    position: relative;
    /* left: calc(+14vw + 0%); */
}

.btn-custom {
    background: rgba(0, 192, 10, 0.482) !important;
    /* background: rgba(192, 0, 0, 0.482) !important; */
    color: white;
}

.btn-custom:hover {
    background: rgba(0, 192, 10, 0.715) !important;
    /* background: rgba(192, 0, 0, 0.715) !important; */
    color: white;
}

.btn-custom.active {
    background: rgb(0, 192, 10) !important;
    /* background: rgb(192, 0, 0) !important; */
    color: white;
}

.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__height {
    height: 100vh;
}


/*=============== LAYOUT ===============*/


/* .container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
} */


/*=============== Floating App Button (FAB) ===============*/

.fab {
    position: fixed;
    bottom: 80px;
    right: 32px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: rgb(224, 0, 0);
    box-shadow: 1px 2px 4px grey;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fab:hover {
    cursor: pointer;
}

.circular_button {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 1px 2px 4px grey;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circular_button:hover {
    cursor: pointer;
}


/*=============== HEADER ===============*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    z-index: var(--z-fixed);
    transition: .4s;
}


/*=============== NAV ===============*/

.nav {
    height: calc(var(--header-height) + 1.5rem);
    /* 4.5rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__img {
    display: inline-block;
    line-height: inherit;
    white-space: nowrap;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
    margin-right: 1rem;
    font-size: 1.125rem;
    width: 200px;
}

.nav__logo {
    color: var(--title-color);
    font-weight: 600;
    max-height: 75px;
    width: auto;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .4s;
    }
}

.nav__list,
.nav__link {
    display: flex;
}

.nav__link {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: var(--title-color);
    font-weight: 600;
}

.nav__list {
    justify-content: space-around;
    margin-bottom: 0px;
}

.nav__name {
    font-size: var(--tiny-font-size);
    /* display: none;*/
    /* Minimalist design, hidden labels */
}

.nav__icon {
    font-size: 1.5rem;
}


/*Active link*/

.active-link {
    position: relative;
    color: var(--first-color);
    transition: .3s;
}


/* Minimalist design, active link */


/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */


/* Change background header */

.scroll-header {
    box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}


/*=============== MEDIA QUERIES ===============*/


/* For small devices */


/* Remove if you choose, the minimalist design */

@media screen and (max-width: 320px) {
    .nav__name {
        display: none;
    }
}


/* For medium devices */

@media screen and (min-width: 576px) {
    .nav__list {
        justify-content: center;
        column-gap: 3rem;
    }
}

@media screen and (min-width: 767px) {
    body {}
    .section {
        padding: 7rem 0 2rem;
    }
    .nav {
        height: calc(var(--header-height) + 1.5rem);
        /* 4.5rem */
    }
    /* .nav__img {
    display: none;
  } */
    .nav__icon {
        display: none;
    }
    .nav__name {
        font-size: var(--normal-font-size);
        /* display: block; */
        /* Minimalist design, visible labels */
    }
    .nav__link:hover {
        color: var(--first-color);
        text-decoration: none;
    }
    /* First design, remove if you choose the minimalist design */
    .active-link::before {
        content: '';
        position: absolute;
        bottom: -.75rem;
        width: 4px;
        height: 4px;
        background-color: var(--first-color);
        border-radius: 50%;
    }
    .fab {
        bottom: 32px;
    }
    /* Minimalist design */
    /* .active-link::before{
      bottom: -.75rem;
  } */
}


/* For large devices */

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

.product {
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: white;
    /* margin-top: 1rem;
  margin-bottom: 1rem; */
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: .0rem;
}

.product-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 29%;
    padding-top: 28%;
    /* min-width: 100%;
  height: 100px; */
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
    /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
    position: relative;
    /* margin-inline-end: .5rem;  */
    /* box-shadow:0 5px 10px rgba(0,0,0,0.15); */
    /* border-radius: 4px; */
}

.product-text {
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* overflow: hidden; */
    display: flex;
    padding-top: 2px;
    padding-left: 12px;
    padding-right: 12px;
}

.product-name-desc {
    height: 100%;
    display: flex;
    align-items: space-between;
}

.product-name-desc h6 {
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 2px;
}

.product-name-desc p {
    margin-inline-start: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: rgb(85, 85, 85);
    margin-bottom: 0px;
    margin-top: 3px;
}

.product-calories {
    height: 40px;
}

.product-text small {
    margin-inline-start: 5px;
    font-size: 14px;
    margin-top: 0%;
    margin-bottom: 0%;
    /* line-height: 50%; */
    color: rgb(97, 97, 97);
    bottom: 0;
}

.price-div {
    min-width: 60px;
    text-align: center;
    font-size: 10px;
    padding-top: 7px;
    padding-bottom: 9px;
    color: white;
    background: rgb(255, 1, 1);
    margin-right: 0%;
    /* Position*/
    top: 0;
    left: 0;
    position: absolute;
    z-index: 30;
    /* px-2 */
    padding-left: .6rem;
    padding-right: .6rem;
}

.product h6 {
    margin-bottom: 0px;
}

.settings_hero_section {
    position: relative;
    padding-bottom: 10%;
    padding-top: 10%;
}

.settings_list_section {
    /* padding: 10px; */
    padding-top: 10px;
}

.settings_list_item {
    padding: 13px;
    font-size: 16px;
    background: #ffffff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(var(--hue), 8%, 35%);
    cursor: pointer;
    /* margin-bottom: 20px; */
}

.settings_item_text {
    margin-left: 15px;
    margin-right: 15px;
}

.settings_list_item i {
    /* color: rgb(206, 53, 18); */
    font-size: 20px;
}

.setting_hero_image {
    position: relative;
    border-radius: 150px 150px 150px 150px;
    overflow: hidden;
    border: 3px solid rgb(255, 255, 255);
    /* background-color: rgb(228, 0, 0); */
    font-size: 0;
    background-clip: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 22%;
    aspect-ratio: 1 / 1;
}

.home_current_subscription_section {
    position: relative;
    padding: 5%;
    background: rgb(206, 53, 18)
}

.home_current_subscription_image_container {
    position: relative;
    /* border-radius: 150px 150px 150px 150px; */
    overflow: hidden;
    border: 3px solid rgb(255, 255, 255);
    background-color: rgb(228, 0, 0);
    font-size: 0;
    background-clip: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.home_current_subscription_image {
    height: 100%;
    width: 5000px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

#spinner {
    /* pointer-events: none; */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2) url("/spinner.svg") no-repeat center center;
    background-size: 150px;
    z-index: 99999;
}