@import url('https://fonts.googleapis.com/css2?family=Avenir+Next:wght@400;700&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Avenir Next', sans-serif; color: black; background-color: #f7f3ea; } .dropdown { background-color: #f7f3ea; border: none; width: 100%; text-align: left; font-size: 18px; padding: 15px; margin-bottom: 10px; cursor: pointer; border-radius: 5px; color: black; display: flex; align-items: center; } .dropdown i { margin-right: 10px; color: #f8bbd0; } .dropdown-content { display: none; background-color: #ffffff; padding: 15px; border-radius: 5px; border: 1px solid #ccc; margin-bottom: 10px; } .dropdown-content table { border-collapse: collapse; width: 100%; text-align: center; } .dropdown-content th, .dropdown-content td { border: 1px solid black; padding: 10px; } .table-container { overflow-x: auto; } button { background-color: #f7f3ea; color: black; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; border-radius: 5px; } button:hover { background-color: #e6e6d6; } .hidden { display: none; } Details The Sylvia Dress features a classic halter neckline, floral print, and flattering fit for a romantic summer vibe. Sizing Show in Inches Show in CM Size Bust (cm) Waist (cm) Length (cm) S 88 64 103 M 92 68 104 L 96 72 105 Size Bust (Inches) Waist (Inches) Length (Inches) S 34.65 25.20 40.55 M 36.22 26.77 40.94 L 37.80 28.35 41.34 Shipping & Returns Shipping We offer worldwide shipping with various delivery options. Returns We've got you covered! You can easily return any full-priced item that is unworn, unwashed. For more information, please check our Return Policy. function toggleContent(sectionId) { const content = document.getElementById(sectionId); if (content.style.display === "none" || content.style.display === "") { content.style.display = "block"; } else { content.style.display = "none"; } } function showInches() { document.getElementById('cmTable').style.display = 'none'; document.getElementById('inchTable').style.display = 'table'; } function showCm() { document.getElementById('cmTable').style.display = 'table'; document.getElementById('inchTable').style.display = 'none'; }