/* bottom sheet */
.bottom-sheet {
    position: fixed;
    bottom: -250px;
    left: 0;
    width: 100%;
    max-height: 250px;
    background-color: #F1F4F9;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    padding: 20px;
    box-sizing: border-box;
    transition: bottom 0.3s ease;
    z-index: 10001;
}

.left-sheet {
    position: fixed;
    bottom: 0px;
    left: -300px;
    max-width: 300px;
    height: 100%;
    background-color: white;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    padding: 20px;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 10001;
}

.bottom-sheet.active {
    bottom: 0;
}

.left-sheet.active {
    left: 0;
}

.vdh-sheet-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
	
	font-family: var(--vdh-font-family);
	font-size: var(--vdh-sheet-font-size);	
	font-style: normal;
	letter-spacing: 0.5px;
}

.vdh-sheet-item:hover {
    background-color: #F0F0F0;
}

.vdh-left-sheet-item {
    display: flex;
    align-items: center;
    padding: 10px;
	
	font-family: var(--vdh-font-family);
	font-size: var(--vdh-sheet-font-size);	
	font-style: normal;
	letter-spacing: 0.5px;
}
