#outer-container {
  width: 100%;
  max-width: 100%;
  border-left: 0px;
  border-right: 0px;
}
#inner-container {
  border-left: 0;
  padding-bottom: 50px;
}
#main-content {
  background-image: none;
}
#anchor-container {
  background-color: rgb(35, 35, 45);
  background-image: none;
  box-shadow: 10px 10px 20px 6px rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  padding-bottom: 50px;
  transform-origin: 0% 0%;
  transform: translate(0%, calc(100% + 75px));
  overscroll-behavior: contain;
  touch-action: none;
  height: auto;
  max-height: calc(100% - 50px);
  top: inherit;
  left: 0;
  transition: transform 0.25s ease-in-out;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#anchor-container div:not(:first-of-type) {
  visibility: hidden;
  position: absolute;
}
#anchor-container ul {
  padding-top: 0;
}
@media only screen and (max-width: 500px) {
  #anchor-container {
    width: 100%;
  }
}
.nav-active {
  transform: none !important;
}
#anchor-list a {
  font-size: 15pt;
  padding-top: 12px;
  padding-bottom: 12px;
}
#anchor-list .menu-active {
  background-image: none;
  color: inherit;
}
.content-two-to-one, .content-one-to-one {
  grid-template-columns: 1fr;
}
#bottom-bar-mobile {
  position: fixed;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 50px;
  background-color: rgb(18, 18, 23);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  z-index: 20;
}
#bottom-bar-mobile .phone {
  margin: auto;
  height: 30px;
  color: rgb(223, 223, 246);
  white-space: nowrap;
  font-size: 15pt;
}
#bottom-bar-mobile .phone a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
#bottom-bar-mobile .burger-holder {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
}
#bottom-bar-mobile .burger-holder div {
  width: 25px;
  height: 3px;
  background-color: rgb(223, 223, 246);
  margin: 5px;
  transition: all 0.5s ease;
}
.toggle .burger-line1 {
  transform: rotate(45deg) translate(5px, 6px);
}
.toggle .burger-line2 {
  opacity: 0;
}
.toggle .burger-line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}
