#sg-mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 100;
  display: none;
  font-size: 24px;
}
#sg-mobile-menu .menu-subhead {
  margin-right: 0;
  margin-left: 0;
}
#sg-mobile-menu .unfold-menu {
  padding-right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#sg-mobile-menu .fas.fa-plus {
  font-weight: 300;
  font-size: 28px;
}
#sg-mobile-menu .fas.fa-minus {
  font-weight: 300;
  font-size: 28px;
}
#sg-mobile-menu .submenu {
  padding-left: 24px;
  filter: contrast(0.8);
}
#sg-mobile-menu .submenu .menu-item {
  display: block;
  padding: 10px 15px;
  margin-bottom: 10px;
  background: rgba(191, 191, 191, 0.23);
}
#sg-mobile-menu .menu-item {
  padding: 10px 0px;
  margin-top: 4px;
  border-bottom: 1px solid #000000;
  min-height: 60px;
}
#sg-mobile-menu .showcase {
  width: 27%;
  scroll-behavior: smooth;
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: start;
  box-shadow: inset 20px 0px 30px 0px rgba(0, 0, 0, 0.37);
}
#sg-mobile-menu .showcase .showcase-title {
  border: 3px solid #D5D6AA;
  color: #D5D6AA;
  border-radius: 10px;
  padding: 15px;
}
@media (max-width: 768px) {
  #sg-mobile-menu .showcase {
    min-width: 50%;
  }
}
@media (max-width: 414px) {
  #sg-mobile-menu .showcase {
    display: none;
  }
}
#sg-mobile-menu .showcase .position-relative:hover .position-absolute {
  opacity: 1;
}
#sg-mobile-menu .showcase .position-relative .position-absolute {
  width: 100%;
  height: 100%;
  background: rgba(0, 56, 88, 0.81) !important;
  z-index: 1;
  top: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s ease-in;
}
#sg-mobile-menu .menu-wrapper {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
#sg-mobile-menu .menu-wrapper .menu-inner {
  min-width: 24%;
  width: 450px;
  display: flex;
  flex-direction: column;
  color: white;
  background: #fcc014;
  padding: 2rem 2rem 2rem 45px;
}
@media (max-width: 1336px) {
  #sg-mobile-menu .menu-wrapper .menu-inner {
    min-width: 28%;
  }
}
@media (max-width: 1024px) {
  #sg-mobile-menu .menu-wrapper .menu-inner {
    min-width: 36%;
  }
}
@media (max-width: 768px) {
  #sg-mobile-menu .menu-wrapper .menu-inner {
    min-width: 50%;
  }
}
@media (max-width: 736px) {
  #sg-mobile-menu .menu-wrapper .menu-inner {
    overflow-y: scroll;
  }
}
@media (max-width: 414px) {
  #sg-mobile-menu .menu-wrapper .menu-inner {
    min-width: 100%;
  }
}
#sg-mobile-menu .menu-wrapper .menu-header {
  display: flex;
  padding-bottom: 0.3rem;
  justify-content: space-between;
}
#sg-mobile-menu .menu-wrapper .menu-header .h3 {
  margin: 0;
  line-height: 0.9;
}
#sg-mobile-menu .menu-wrapper .menu-header .menu-close {
  cursor: pointer;
  left: 10px;
  position: fixed;
}
#sg-mobile-menu .menu-wrapper .copyright {
  margin-top: auto;
  text-align: right;
  text-transform: lowercase;
  color: #c8c8c866;
  transition: color 0.5s ease-in;
}
#sg-mobile-menu .menu-wrapper .copyright:hover {
  color: #6c1b78;
}
#sg-mobile-menu .menu-wrapper .menu-link {
  background-image: linear-gradient(to right, #000, #000 50%, #000 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s ease-in-out;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  padding-bottom: 0;
  margin-bottom: 10px;
}
#sg-mobile-menu .menu-wrapper .menu-link:before {
  content: '';
  background: #000000;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.2s ease-in-out;
}
#sg-mobile-menu .menu-wrapper .menu-link:hover {
  background-position: 0;
}
#sg-mobile-menu .menu-wrapper .menu-link:hover::before {
  width: 100%;
}
#sg-mobile-menu .menu-inner > ul {
  list-style: none;
  padding: 1rem 0 0;
}
#sg-mobile-menu .menu-inner > ul > .menu-item {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
#sg-mobile-menu .menu-inner > ul > .menu-item > a {
  font-size: 1.4rem;
}
#sg-mobile-menu .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sg-mobile-menu .menu-item-has-children .submenu {
  display: none;
  margin-top: 0.5rem;
  width: 100%;
}
#sg-mobile-menu .menu-item-has-children .submenu .menu-item-inner {
  margin-bottom: 0.3rem;
  display: flex;
  font-family: Open Sans, sans-serif;
  font-weight: 300;
  text-decoration: none;
  margin-top: 4px;
  border-bottom: 1px solid #000000;
  padding: 10px 15px;
  letter-spacing: 1px;
}
#sg-mobile-menu .menu-item-has-children > a {
  width: 80%;
}
#sg-mobile-menu .menu-item-has-children > .unfold-menu {
  width: 20%;
  text-align: right;
  cursor: pointer;
}
.spinning-icon {
  transition: 0.6s ease-in-out;
}
.spinning-icon:hover {
  transform: rotate(360deg);
}
#sg-mobile-menu-icon {
  display: none;
  visibility: hidden;
}
@media (max-width: 992px) {
  #sg-mobile-menu-icon {
    display: block;
    visibility: visible;
  }
}
#sg-desktop-menu-icon {
  display: none;
  visibility: hidden;
}
@media (min-width: 992px) {
  #sg-desktop-menu-icon {
    display: block;
    visibility: visible;
  }
}
.fas.fa-bars {
  font-weight: 400;
  padding-top: 2px;
}
.main-sg-menu-toggle {
  margin-left: 30px !important;
  height: 45px;
  margin-top: 0 !important;
}
.main-sg-menu-toggle span {
  font-weight: 400 !important;
  font-size: 26px;

}
body.high-contrast #sg-mobile-menu .menu-wrapper .menu-link {
  -webkit-text-fill-color: inherit !important;
}
@media (min-width: 1200px) {
  #sg-mobile-menu {
    display: none !important;
  }
}

.modal-search-shortcode-wrapper .modal-search-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.modal-header {
  background: #fcc014;
}

.modal-content {
  border: 3px solid;
}