/*
Theme Name: Theme by Smartlabstudio
Author: Massimo Smartlabstudio
Author URI: http://smartlabstudio.it/
Description: Tema Custom For Radici
Version: 1.0.0
*/

html,
body {
    margin: 0px!important;
    padding: 0!important;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

:root {
    --font-primary: 'Callingstone';
    --font-secondary: 'Montserrat';
    --primary-color: #013f40;
    --secondary-color: #be8f51;
    --tertiary-color: #f9f6ed;
    --black: #000;
    --white: #fff;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

/* Preloader */
.loading-screen {
    height: 100vh;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    position: fixed;
    left: 50%;
    width: 425px;
    z-index: 9999;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading-screen .logo {
    text-align: center;
}

.loading-screen .logo svg {
    width: 50%;
}

.loading-screen .logo h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.store-screen {
    display: none;
    position: relative;
    background-color: var(--tertiary-color);
/*     height: calc(100vh); */
    margin: 0 auto;
	overflow-y: hidden;
}

@media (min-width: 576px) {
    .store-screen {
        width: 425px;
		overflow-y: hidden;
    }
}

.store-header {
    text-align: center;
    margin-bottom: 20px;
}

.store-header img {
    width: 150px;
}

.product-card {
    border: none;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.product-card h5 {
    margin-top: 10px;
    font-size: 1rem;
}

.logo {
	padding: 8px;
	text-align: center;
}

.logo img {
	max-width: 125px;
	height: auto;
}

.navigation_menu {
	position: -webkit-sticky;
    position: sticky;
    height: 60px;
    width: 100%;
    bottom: 0;
    z-index: 11;
    background: var(--primary-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.toggleColor {
    background: var(--secondary-color);
} 

#open_menu {
    width: 100%;
    height: 100%;
    color: var(--tertiary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    letter-spacing: 1px;
}

#menu_list {
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    background-color: #013f40;
    transition: height 1s ease, visibility 0s linear 1s, border-top-left-radius 1s ease, border-top-right-radius 1s ease;
    position: absolute;
    left: 0px;
    right: 0px;
    top: auto; 
    bottom: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

#menu_list.openend {
    height: calc(100%);
    visibility: visible;
	overflow-y: scroll;
    padding: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: height 1s ease, visibility 0s linear 0s, border-top-left-radius 2s ease, border-top-right-radius 2s ease;
}

.menu_list_header {
    text-align: center;
    margin-bottom: 36px;
}

#menu_list ul {
    height: max-content;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding: 36px;
}

#menu_list ul li {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ffffff1a;
}

#menu_list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--tertiary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

#menu_list ul li a:hover {
    color: var(--secondary-color);
}

#menu_list ul li.active a {
    color: var(--secondary-color);
}

#menu_list ul li:last-child {
    border-bottom: none;
	margin-bottom: 40px;
}

::-webkit-scrollbar {
    display: none;
}


/* Content Menu */
.content-menu {
    height: 100%;
    overflow-y: auto;
    padding: 30px 20px 30px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.content_menu_title h3 {
    line-height: normal;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.category-section:last-child > .item:last-child {
	margin-bottom: 120px;
}

.category-section h3 {
    font-size: 21px;
    letter-spacing: 1px;
    margin-bottom: 21px;
    font-weight: 600;
    color: var(--primary-color);
}

.content-menu::-webkit-scrollbar {
    display: none;
  }

.item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 21px;
    padding-bottom: 21px;
    border-bottom: 1px solid #013f401a;
}

.item:first-child {
    margin-top: 21px;
    padding-top: 21px;
}

.item:last-child {
    margin-bottom: 60px;
    border-bottom: none;
}

.item-name {
    display: flex;
    flex-direction: column;
    flex-basis: 70%;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.item-description {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-top: 5px;
    text-transform: capitalize;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.item-icon {
    width: 35px;
    height: auto;
}

.menu_list_header img {
	max-width: 125px;
	height: auto;
}