@charset "UTF-8";
/* Animation */
#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #fccb30;
  z-index: 999999;
}
/* Initial hidden state */
.animatedFadeInUp {
  opacity: 0;
  /* Hidden */
  transform: translate3d(0, 40px, 0);
  /* Start from lower position */
}
/* Animation for fadeInUp */
.fadeInUp {
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  transform: translate3d(0, 0, 0);
  /* Return to original position */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* Initial hidden state for fadeInLeft */
.animatedFadeInLeft {
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  /* Start from the left */
}
/* Animation for fadeInLeft */
.fadeInLeft {
  opacity: 1;
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
  transform: translate3d(0, 0, 0);
  /* Return to original position */
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    /* Move in from left */
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    /* End in original position */
  }
}
/* Initial hidden state for fadeInRight */
.animatedFadeInRight {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
  /* Start from the right */
}
/* Animation for fadeInRight */
.fadeInRight {
  opacity: 1;
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: both;
  transform: translate3d(0, 0, 0);
  /* Return to original position */
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    /* Move in from right */
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    /* End in original position */
  }
}
/* White background that covers the entire screen */
.loader-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999998;
}
.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fccb30 #212529;
  animation: l1 1s infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999999;
}
@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}
/* Hide content initially */
#layout-content, #layout-header, #layout-footer {
  opacity: 0;
  transition: opacity 0.5s ease;
}
/* Show content when loaded */
#layout-content.loaded, #layout-header.loaded, #layout-footer.loaded {
  opacity: 1;
}
a {
  text-decoration: none !important;
}
.font-color {
  color: #fccb30;
}
body {
  font-family: "Prompt", system-ui !important;
}
@media (max-width: 576px) {
  .loader {
    left: 45%;
  }
  .container {
    overflow-x: clip;
  }
}
.breadcrumb {
  font-size: 14px !important;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">" !important;
  color: #939393 !important;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item a {
  color: #939393 !important;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item.active {
  color: #000000 !important;
  font-weight: 500;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.link-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: inline-block;
  background-size: 40px;
  vertical-align: middle;
}
.nav-item.active .link-icon {
  background-position: -20px;
}
.text-header {
  font-size: 16px;
}
.logo-header {
  width: 23px;
  height: 23px;
}
.text-weight {
  font-weight: 300 !important;
}
header {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 5px 15px 0px;
}
.custom-radius1 {
  border-radius: 50px 0 0 50px !important;
}
.custom-radius2 {
  border-radius: 0 50px 50px 0 !important;
  background-color: #fccb30 !important;
}
.custom-nav .navbar-nav {
  gap: 30px !important;
}
.custom-nav .nav-link {
  padding: 8px 0 !important;
  transition: opacity 0.3s ease;
}
.custom-nav .nav-link:hover {
  opacity: 0.5;
}
.custom-nav .nav-item.active .nav-link {
  color: #fccb30;
}
.custom-nav .nav-item.active .nav-link:hover {
  opacity: 1;
}
.sty-opacity {
  transition: opacity 0.3s ease;
}
.sty-opacity:hover {
  opacity: 0.5;
}
/* สำหรับหน้าจอขนาดใหญ่กว่าปานกลาง (แล็ปท็อป 14-16 นิ้ว) */
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .custom-nav .navbar-nav {
    gap: 20px !important;
  }
  .custom-nav .nav-link {
    font-size: 12px;
  }
  .custom-radius1 {
    width: 135px !important;
  }
}
/* สำหรับหน้าจอขนาดใหญ่ (โน้ตบุ๊คและแล็ปท็อปขนาด 14-16 นิ้ว) */
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .custom-nav .navbar-nav {
    gap: 25px !important;
  }
  .custom-nav .nav-link {
    font-size: 15px;
  }
  .custom-radius1 {
    width: 175px !important;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .custom-radius1 {
    width: 120px !important;
  }
  .breadcrumb {
    font-size: 12px !important;
  }
  .sty-w {
    width: 50%;
  }
}
@media (min-width: 320px) and (max-width: 374px) {
  .custom-radius1 {
    width: 100px !important;
  }
  .breadcrumb {
    font-size: 10px !important;
  }
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999999;
  top: 0;
  background-color: #fffefd;
  box-shadow: 0 0 1px;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 50px !important;
  max-width: 350px;
}
.sidebar + .backdrop {
  width: 100%;
  transition: opacity 0.3s;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.222);
  z-index: 999999;
}
.sidebar .close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #EEE;
  font-size: 20px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 30px;
}
.sidebar ul.dropdown-menu {
  border: none;
  padding-left: 15px;
}
.sidebar .btn-close {
  --bs-btn-close-opacity: 0.2;
}
.sidebar.open {
  padding: 0 20px 20px;
  width: 70%;
}
.sidebar.open + .backdrop {
  opacity: 1;
  pointer-events: all;
}
.sidebar.close {
  padding: 0;
  width: 0%;
}
.text-footer {
  font-size: 14px;
}
.bottom-line {
  border-top: 1px solid #525252;
}
.bottom-line2 {
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
}
.menu-footer ul.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.menu-footer .nav-item {
  margin: 0 5px;
}
.menu-footer .nav-link {
  padding: 3px 0 !important;
  transition: opacity 0.3s ease;
  font-weight: 200;
  display: inline-block;
}
.menu-footer .nav-link:hover {
  opacity: 0.5;
}
.sty-social {
  background: transparent !important;
  border: 0 !important;
  padding: 5px 0 !important;
  transition: opacity 0.3s ease;
  font-weight: 200;
}
.sty-social a {
  display: inline-block;
}
.icon-social {
  width: 30px;
  height: 30px;
}
.list-group-horizontal {
  display: flex;
  flex-direction: column !important;
}
.sty-social:hover .icon-social, .sty-social:hover .ms-1 {
  opacity: 0.5;
}
@media (max-width: 576px) {
  .menu-footer ul.navbar-nav {
    justify-content: center;
    flex-direction: row;
  }
  .list-group-horizontal {
    display: flex;
    flex-direction: row !important;
    gap: 20px;
    justify-content: center;
  }
}
.slide-main .swiper-button-prev, .slide-main .swiper-button-next {
  color: #fffefd !important;
  margin-left: 15px;
  margin-right: 15px;
}
.slide-main .swiper-pagination-bullet {
  background-color: #212529;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.slide-main .swiper-pagination-bullet-active {
  background-color: #FBCC30;
  width: 12px;
  height: 12px;
}
.brand-name {
  font-weight: bold;
}
.brand-underline {
  width: 50px;
  height: 3px;
  background-color: #fccb30;
}
.brand-category {
  font-size: 20px;
}
.product-item {
  border: none;
  transition: all 0.3s;
  padding: 0 0;
  border: none !important;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}
.product-item .product-cover {
  /* border: 1px solid gainsboro;
            border-radius: 10px;
            margin-bottom: 10px; */
  width: 100%;
  height: auto;
  padding-top: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
  transition: background-image 0.3s ease-in-out;
  border-radius: 5px 5px 0 0%;
}
.product-item .product-cover:hover {
  opacity: 0.5;
}
.product-item .card-body {
  text-align: center;
}
.product-item .card-title {
  font-size: 16px;
  cursor: pointer;
  display: -webkit-box;
  overflow: hidden;
  height: 36px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-item a {
  color: #000000 !important;
}
.product-item .card-text {
  font-size: 16px;
}
.product-item .cart-btn {
  background: #222 !important;
  border: none;
  color: #fffefd !important;
  transition: opacity 0.3s ease;
}
.product-item .cart-btn:hover {
  opacity: 0.5;
}
.blog-category {
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.3) 3px 5px 15px 1px;
  cursor: pointer;
  padding: 25px;
  border-radius: 5px;
}
.blog-category:hover {
  opacity: 0.5;
}
.blog-category .blog-cover {
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}
.modal-dialog {
  top: 35% !important;
}
@media (max-width: 576px) {
  .product-item {
    padding: 0;
  }
  .product-item .card-body {
    padding: 10px 5px !important;
  }
  .slide-main .swiper-button-prev, .slide-main .swiper-button-next {
    margin-left: 0;
    margin-right: 0;
  }
  .slide-main .swiper-button-prev:after, .slide-main .swiper-button-next:after {
    font-size: 20px;
  }
  .custom-pad {
    padding: 0 15px !important;
  }
}
@media (min-width: 425px) and (max-width: 1023px) {
  .brand-name {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 424px) {
  .brand-name {
    font-size: 15px;
  }
}
.sty-stock {
  position: absolute;
  top: 225px;
  left: 0;
  right: 0;
  background: none;
  color: red;
  border: 0;
  font-size: 30px;
}
.filter-icon {
  width: 30px;
  margin: 0 12px;
}
.text-weight {
  font-weight: bold;
}
.price-search {
  width: 35% !important;
}
.price-search .btn {
  color: #000000;
  background-color: #fccb30;
  border-radius: 40px;
}
.price-search .btn:hover {
  background-color: #000000;
  color: #fccb30;
}
.price-search .btn:active {
  background-color: #000000 !important;
  color: #fccb30 !important;
}
.price-search .input-group-text {
  background: transparent;
  border: none;
  font-weight: 600;
}
.price-search .length-radius {
  border-radius: 40px !important;
}
.price-search .divider {
  display: flex;
  align-items: center;
}
.price-search .divider .input-group-text {
  justify-content: center;
  width: 30px;
  height: 1px;
  background-color: #DEE2E6;
  padding: 1px;
}
.price-search-filter .btn {
  color: #000000;
  background-color: #fccb30;
  border-radius: 40px;
}
.price-search-filter .btn:hover {
  background-color: #000000;
  color: #fccb30;
}
.price-search-filter .btn:active {
  background-color: #000000 !important;
  color: #fccb30 !important;
}
.price-search-filter .input-group-text {
  background: transparent;
  border: none;
  font-weight: bold;
}
.price-search-filter .length-radius {
  border-radius: 40px !important;
  padding: 5px 10px;
}
.price-search-filter .divider {
  display: flex;
  align-items: center;
}
.price-search-filter .divider .input-group-text {
  justify-content: center;
  width: 15px;
  height: 1px;
  background-color: #DEE2E6;
  padding: 1px;
}
.cate-filter {
  border: 1px solid #DEE2E6;
  padding: 15px !important;
  border-radius: 15px;
}
.cate-filter .cate-title {
  font-weight: 600;
  margin-bottom: 0.5rem !important;
}
.cate-filter .list-group-item {
  border: 0;
  padding: 8px 10px;
}
.cate-filter .list-group-item a {
  color: #000000 !important;
}
.cate-filter .cat-padding {
  padding: 5px 10px;
}
.brand-filter .list-group-item {
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.brand-filter .list-group-item a {
  color: #000000 !important;
}
.brand-filter .nav-item {
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.cat-paginate ul.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  display: flex;
  padding: 0;
  gap: 5px;
}
.cat-paginate ul.pagination li {
  margin: 0;
}
.cat-paginate ul.pagination li a, .cat-paginate ul.pagination li span {
  display: block;
  padding: 10px 15px;
  color: #fffefd;
  background-color: #fccb30;
  text-decoration: none;
  border-radius: 5px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  min-width: 40px;
  text-align: center;
}
.cat-paginate ul.pagination li.active span {
  color: #000000;
  background-color: #fccb30;
}
.cat-paginate ul.pagination li a:hover {
  background-color: #fffefd;
  color: red;
}
.cat-paginate ul.pagination li.disabled span {
  cursor: not-allowed;
  color: #fffefd;
  background-color: #000000;
}
.cat-paginate ul.pagination li.disabled span:hover {
  background-color: #000000;
  color: #fffefd;
}
.product-detail {
  border: none;
  transition: all 0.3s;
}
.product-detail .btn-cart {
  background: #fccb30 !important;
  border: none;
  color: #000000 !important;
  border-radius: 30px;
  padding: 8px 15px;
  transition: opacity 0.3s ease;
}
.product-detail .btn-cart:hover {
  opacity: 0.5;
  background-color: #fccb30;
}
.product-detail button.cart-btn.btn._btn-cart-inner.btn-block.in-stock:active {
  background-color: #fccb30;
}
.product-detail .btn-outline-secondary {
  border: none;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.product-detail .sty-input-group {
  display: flex;
  border: 1px solid #ced4da;
  border-radius: 5px;
  overflow: hidden;
  width: fit-content;
}
.product-detail .sty-form-control {
  border: none;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sty-swiper .swiper-backface-hidden .swiper-slide img {
  border: 1px solid #817d7d;
  padding: 0;
  border-radius: 5px;
}
.sty-swiper .swiper-backface-hidden .swiper-slide img img {
  border-radius: 4px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .price-search {
    width: 40% !important;
  }
  .cate-filter {
    font-size: 14px !important;
  }
  .cate-filter .list-group-item {
    padding: 8px 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .price-search {
    width: 62% !important;
  }
}
@media (min-width: 992px) {
  .border-lg-bottom {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .size-text {
    font-size: 16px;
  }
  .brand-filter .list-group-item {
    font-size: 14px;
  }
  .brand-filter .nav-item {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .brand-filter .list-group-item {
    font-size: 12px;
  }
}
.neas-name {
  font-weight: bold;
  text-align: center;
}
.blog-content img {
  max-width: 100%;
}
.news-underline {
  width: 90px;
  height: 3px;
  background-color: #fccb30;
  margin: 4px auto 0;
}
.blog-item {
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 5px 0px;
  cursor: pointer;
}
.blog-item .blog-cover {
  padding-top: 80%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}
.blog-item .blog-cover:hover {
  opacity: 0.5;
}
.blog-item .blog-date {
  margin-top: 20px;
  padding: 0 8px;
  position: relative;
  font-size: 16px;
}
.blog-item .blog-date:before {
  content: "";
  position: absolute;
  top: -7px;
  width: 30px;
  height: 2px;
  background-color: #fccb30;
}
.blog-item .blog-title {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  margin-top: 15px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  padding: 0 8px;
}
.blog-item .blog-caption {
  color: #6a6a6a;
  position: relative;
  padding-top: 20px;
  font-weight: 300;
  height: 87px;
}
.blog-item .blog-button:hover {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .border-lg-end {
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .border-lg-end {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .blog-item .blog-date {
    font-size: 13px;
  }
  .blog-item .blog-title {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-item .blog-date {
    font-size: 10px;
  }
  .blog-item .blog-title {
    font-size: 11px;
  }
}
@media (min-width: 425px) and (max-width: 767px) {
  .blog-item .blog-date {
    font-size: 12px;
  }
  .blog-item .blog-title {
    font-size: 13px;
  }
}
@media (min-width: 375px) and (max-width: 424px) {
  .blog-item .blog-date {
    font-size: 10px;
  }
  .blog-item .blog-title {
    font-size: 11px;
  }
}
.sty-from {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
  padding: 20px;
}
.sty-from .sty-border {
  border-left: 3px solid #fccb30;
}
#iymi {
  width: 100% !important;
  margin-left: 0 !important;
  left: 0 !important;
}


/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/

.sm{box-sizing:border-box;position:relative;z-index:9999;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;}
.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right;}
.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0;}
.sm ul{display:none;}
.sm li,.sm a{position:relative;}
.sm a{display:block;}
.sm a.disabled{cursor:default;}
.sm::after{content:"";display:block;height:0;font:0px/0 serif;clear:both;overflow:hidden;}
.sm *,.sm *::before,.sm *::after{box-sizing:inherit;}
.sm-simple {
  border: 1px solid #bbbbbb;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
  padding: 13px 20px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 58px;
  color: #555555;
  font-family: "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 17px;
  text-decoration: none;
}
.sm-simple a.current {
  background: #555555;
  color: #fff;
}
.sm-simple a.disabled {
  color: #cccccc;
}
.sm-simple a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: auto;
  right: 4px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  font: bold 14px/34px monospace !important;
  text-align: center;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.08);
}
.sm-simple a .sub-arrow::before {
  content: '+';
}
.sm-simple a.highlighted .sub-arrow::before {
  content: '-';
}
.sm-simple li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.sm-simple > li:first-child {
  border-top: 0;
}
.sm-simple ul {
  background: rgba(179, 179, 179, 0.1);
}
.sm-simple ul a, .sm-simple ul a:hover, .sm-simple ul a:focus, .sm-simple ul a:active {
  font-size: 14px;
  border-left: 8px solid transparent;
}
.sm-simple ul ul a,
.sm-simple ul ul a:hover,
.sm-simple ul ul a:focus,
.sm-simple ul ul a:active {
  border-left: 16px solid transparent;
}
.sm-simple ul ul ul a,
.sm-simple ul ul ul a:hover,
.sm-simple ul ul ul a:focus,
.sm-simple ul ul ul a:active {
  border-left: 24px solid transparent;
}
.sm-simple ul ul ul ul a,
.sm-simple ul ul ul ul a:hover,
.sm-simple ul ul ul ul a:focus,
.sm-simple ul ul ul ul a:active {
  border-left: 32px solid transparent;
}
.sm-simple ul ul ul ul ul a,
.sm-simple ul ul ul ul ul a:hover,
.sm-simple ul ul ul ul ul a:focus,
.sm-simple ul ul ul ul ul a:active {
  border-left: 40px solid transparent;
}

@media (min-width: 768px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  /* start... (it's not recommended editing these rules) */
  .sm-simple ul {
    position: absolute;
    width: 12em;
  }

  .sm-simple li {
    float: left;
  }

  .sm-simple.sm-rtl li {
    float: right;
  }

  .sm-simple ul li, .sm-simple.sm-rtl ul li, .sm-simple.sm-vertical li {
    float: none;
  }

  .sm-simple a {
    white-space: nowrap;
  }

  .sm-simple ul a, .sm-simple.sm-vertical a {
    white-space: normal;
  }

  .sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }

  /* ...end */
  .sm-simple {
    background: #fff;
  }
  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    padding: 11px 20px;
    color: #555555;
  }
  .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    background: #eeeeee;
  }
  .sm-simple a.current {
    background: #555555;
    color: #fff;
  }
  .sm-simple a.disabled {
    background: #fff;
    color: #cccccc;
  }
  .sm-simple a.has-submenu {
    padding-right: 32px;
  }
  .sm-simple a .sub-arrow {
    top: 50%;
    margin-top: -8px;
    right: 20px;
    width: 8px;
    height: 16px;
    font: 14px/16px monospace !important;
    background: transparent;
  }
  .sm-simple a.highlighted .sub-arrow::before {
    content: '+';
  }
  .sm-simple > li {
    border-top: 0;
    border-left: 1px solid #eeeeee;
  }
  .sm-simple > li:first-child {
    border-left: 0;
  }
  .sm-simple ul {
    border: 1px solid #bbbbbb;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }
  .sm-simple ul a {
    border: 0 !important;
  }
  .sm-simple ul a.has-submenu {
    padding-right: 20px;
  }
  .sm-simple ul a .sub-arrow {
    left: 8px;
    right: auto;
  }
  .sm-simple ul > li {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }
  .sm-simple ul > li:first-child {
    border-top: 0;
  }
  .sm-simple .scroll-up,
  .sm-simple .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }
  .sm-simple .scroll-up-arrow,
  .sm-simple .scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }
  .sm-simple .scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }
  .sm-simple.sm-rtl a.has-submenu {
    padding-right: 20px;
    padding-left: 32px;
  }
  .sm-simple.sm-rtl a .sub-arrow {
    left: 20px;
    right: auto;
  }
  .sm-simple.sm-rtl.sm-vertical a.has-submenu {
    padding: 11px 20px;
  }
  .sm-simple.sm-rtl.sm-vertical a .sub-arrow {
    left: auto;
    right: 8px;
  }
  .sm-simple.sm-rtl > li:first-child {
    border-left: 1px solid #eeeeee;
  }
  .sm-simple.sm-rtl > li:last-child {
    border-left: 0;
  }
  .sm-simple.sm-rtl ul a.has-submenu {
    padding: 11px 20px;
  }
  .sm-simple.sm-rtl ul a .sub-arrow {
    left: auto;
    right: 8px;
  }
  .sm-simple.sm-vertical a .sub-arrow {
    left: 8px;
    right: auto;
  }
  .sm-simple.sm-vertical li {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }
  .sm-simple.sm-vertical > li:first-child {
    border-top: 0;
  }
}

/*# sourceMappingURL=sm-simple.css.map */
