/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 27:13 Expected identifier but found whitespace
Line 27:15 Unexpected "{"
Line 27:24 Expected ":"
Line 31:13 Expected identifier but found whitespace
Line 31:14 Unexpected "0"
Line 31:25 Unexpected "{"
Line 31:34 Expected ":"
... and 15 more hidden warnings

**/


/* CSS from section stylesheet tags */
.vertical-menu-section {
  background-color: {{ section.settings.background_color }};
  padding: 40px 20px;
}
.vertical-menu-section .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: {{ section.settings.item_background }};
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px 20px;
  box-shadow: 0 1px 3px {{ section.settings.shadow_color }};
  transition: all 0.3s ease;
}
.vertical-menu-section .menu-item:hover {
  background-color: {{ section.settings.hover_background }};
  transform: scale(1.01);
}
.vertical-menu-section .menu-item:hover .icon img,
.vertical-menu-section .menu-item:hover .icon span,
.vertical-menu-section .menu-item:hover .arrow {
  filter: brightness(1.2);
}
.vertical-menu-section .menu-item .icon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}
.vertical-menu-section .menu-item .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.vertical-menu-section .menu-item .icon span {
  font-size: 24px;
  color: {{ section.settings.icon_color }};
}
.vertical-menu-section .menu-item .text {
  flex-grow: 1;
}
.vertical-menu-section .menu-item .text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: {{ section.settings.text_color }};
}
.vertical-menu-section .menu-item .text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: {{ section.settings.subtitle_color }};
}
.vertical-menu-section .menu-item .arrow {
  font-size: 18px;
  color: {{ section.settings.arrow_color }};
  margin-left: 16px;
}
.vertical-menu-section .menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.vertical-menu-section .menu-item a:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .vertical-menu-section {
    padding: 20px 10px;
  }
  .vertical-menu-section .menu-item {
    padding: 14px 16px;
  }
}