/* SlideOutMenu Start */
.slideout-panel {
  position: relative;
  z-index: 2;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.btn-hamburger {
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  width: 64px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-left: -10px;
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 17px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: background 0s 0.3s;
  -o-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.c-hamburger::focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 7px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #fff;
}
.c-hamburger span::before, .c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
  -webkit-transition-duration: 0.3s, 0.3s;
       -o-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
}
.c-hamburger span::before {
  top: -7px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  -o-transition-property: top, transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
.c-hamburger span::after {
  bottom: -7px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.slideout-open .c-hamburger span,
.mobile-menu-open .c-hamburger span {
  background: none !important;
}
.slideout-open .c-hamburger span::before,
.mobile-menu-open .c-hamburger span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slideout-open .c-hamburger span::after,
.mobile-menu-open .c-hamburger span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.slideout-open .c-hamburger span::before, .slideout-open .c-hamburger span::after,
.mobile-menu-open .c-hamburger span::before,
.mobile-menu-open .c-hamburger span::after {
  -webkit-transition-delay: 0s, 0.3s;
       -o-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

@media (max-width: 1023px) {
  .panel-header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.panel-header {
  width: 100%;
  height: 72px;
  z-index: 210;
  top: 0;
  left: 0;
  background: #2f9688;
  display: none;
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.55);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.panel-header .info .phone {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.panel-header .info .phone:before {
  content: "";
  background: url(../img/phone.png) no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.panel-header .info .phone a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.panel-header .info .email {
  text-align: right;
}
.panel-header .info .email a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.panel-header .feedback a {
  display: block;
  text-decoration: none;
  background: #f8d90f;
  height: 50px;
  line-height: 50px;
  padding: 0px 20px;
  text-align: center;
  border-radius: 30px;
  font-weight: bold;
  color: #3e538a;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  background: #3e538a;
  border-right: 1px solid #fff;
}

@media (max-width: 1023px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
}
.mobile-menu-open .mobile-menu {
  left: 0;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  padding: 72px 0 15px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  width: 400px;
  z-index: 202;
  opacity: 0;
  overflow-y: auto;
  display: none;
  color: #000;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mobile-menu > * {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .mobile-menu {
    width: 100%;
  }
}
.mobile-menu .button {
  width: 100%;
  padding: 15px 15px 0;
}
.mobile-menu .button a {
  width: 100%;
  text-align: center;
}
.mobile-menu .main-menu {
  padding: 15px 15px 0;
}
.mobile-menu .main-menu ul {
  padding-top: 10px;
  position: relative;
  margin: 0 -15px;
}
.mobile-menu .main-menu ul li {
  list-style-type: none;
}
.mobile-menu .main-menu ul li + li {
  margin-top: 10px;
}
.mobile-menu .main-menu ul li a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  padding: 0 15px;
}
.mobile-menu .main-menu ul li.current-menu-item > a {
  text-decoration: underline;
}
.mobile-menu .main-menu ul li ul li a {
  padding-left: 43px;
  font-size: 16px;
}
.mobile-menu .social {
  padding: 15px 0 15px;
  border-top: 1px dotted #2f9688;
  margin: 15px 15px 0;
}
.mobile-menu .caption {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}
.mobile-menu .links {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 15px;
}
.mobile-menu .links a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  font-size: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 5px 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.mobile-menu .links a:before {
  color: #fff;
}
.mobile-menu .links .icon-vk {
  background: #656f7b;
}
.mobile-menu .links .icon-instagram {
  background: #693b4f;
}
.mobile-menu .links .icon-whatsapp {
  background: #7da377;
}
.mobile-menu .links .icon-facebook {
  background: #535c6e;
}
.mobile-menu .links .icon-youtube {
  background: #793e3b;
}
.mobile-menu .links .icon-odnoklassniki {
  background: #ad8b6c;
}
.mobile-menu .links .icon-viber {
  background: #5f4c6e;
}
.mobile-menu .links .icon-tg {
  background: #4e778c;
}

/* SlideOutMenu End */