.custom-logo-link {
  max-width: 130px;
}

.custom-logo-link img {
  width: 100%;
  height: auto;
}

.bg-repeat-none {
  background-repeat: no-repeat;
}

.max-w-100per {
  max-width: 100%;
}

.min-w-100 {
  min-width: 100px;
}

.min-w-150 {
  min-width: 150px;
}

/** Cart */
.custom_cart_table .product-thumbnail a img {
  max-height: 60px;
  width: auto;
}

.product-remove a.remove {
  color: #33C65F !important;
  height: 2rem;
  width: 2rem;
  line-height: 29px;
}
.product-remove a.remove:hover {
  background: #ec4781 !important;
}

/** My account */
.account-menu {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.account-menu li {
  list-style-type: none;
  flex: 1;
}
.account-menu li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.account-menu li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.account-menu li a .menu-image.menu-image-title-after {
  padding: 0;
}
.account-menu li a .menu-image-title-after.menu-image-title {
  padding: 0;
  margin-top: 10px;
}
.account-menu li a:hover {
  color: #33C65F !important;
}
.account-menu li a:hover img {
  -webkit-filter: sepia(84%) hue-rotate(210deg) saturate(15);
          filter: sepia(84%) hue-rotate(210deg) saturate(15);
}

.full-width-image img {
  width: 100%;
  height: auto;
}

#menu-social-links-menu .menu-image-title-after {
  margin: 0 5px;
}
#menu-social-links-menu .menu-image-title {
  display: none !important;
}

.scroll-top {
  opacity: 0;
  position: fixed;
  right: 25px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #33C65F;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.5s;
  z-index: -1;
}
.scroll-top.show {
  opacity: 1;
  z-index: 11;
}
.scroll-top.show:hover {
  box-shadow: 0 5px 15px rgba(86, 90, 198, 0.8);
}

.register {
  padding-top: 100px;
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .custom-logo-link {
    max-width: 200px;
  }

  .auth-routes {
    min-width: 140px;
  }
  .auth-routes ul {
    min-width: 100%;
  }
}
/** Footer */
.site-footer ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding: 0.5rem 0;
}
.site-footer ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.switch-to-project {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px;
  z-index: 3;
  display: inline-flex;
  justify-content: space-between;
}
.switch-to-project li a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  padding: 5px 15px;
  border-radius: 15px;
}
.switch-to-project li.active a {
  background-color: #33C65F;
}
.switch-to-project .info {
  position: relative;
}
.switch-to-project .info .icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 4px 11px;
  cursor: pointer;
}
.switch-to-project .info .icon:hover {
  background-color: #fff;
  color: #000;
}
.switch-to-project .info .info-desc {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0px;
  min-width: 235px;
  background-color: #3E3E46;
  height: auto;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.switch-to-project .info:hover .info-desc {
  display: block;
}