.slide__nav {
  z-index: 99;
  width: 320px;
  height: 100%;
  background: #193c5b;
  display: none;
  position: fixed;
  transition: transform .3s ease-out;
  transform: translateX(-100%);
  left: 0;
  top: 60px;
  max-height: 100%;
  overflow-y: auto;
  padding-bottom: 200px;
  box-sizing: border-box;
}

.slide__nav.state-open {
  transform: translateX(0);
  box-shadow: 14px 0 14px 0 rgba(0, 0, 0, .5);
}

.slide__nav-opened {
  overflow: hidden;
  height: 100vh;
}

.slide__nav-item {
  border-top: 1px solid #ffd100;
  padding: 1px 0;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
}

.slide__nav-link {
  background-color: #193c5b;
  padding-left: 18px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #fff;
}

.slide__nav-link:hover {
  text-decoration: none;
}

.slide__nav-link-account,
.slide__nav-link-jwe {
  background: -moz-linear-gradient(to right, #193c5b 0%, #ffd100 100%);
  background: -ms-linear-gradient(to right, #193c5b 0%, #ffd100 100%);
  background: -o-linear-gradient(to right, #193c5b 0%, #ffd100 100%);
  background: -webkit-linear-gradient(to right, #193c5b 0%, #ffd100 100%);
  background: linear-gradient(to right, #193c5b 0%, #ffd100 100%);
  background-color: #193c5b;
}

.slide__nav-link-account.state-active,
.slide__nav-link-jwe.state-active {
  background: -moz-linear-gradient(to right, #3a3a3a 0%, #7f7f7f 100%);
  background: -ms-linear-gradient(to right, #3a3a3a 0%, #7f7f7f 100%);
  background: -o-linear-gradient(to right, #3a3a3a 0%, #7f7f7f 100%);
  background: -webkit-linear-gradient(to right, #3a3a3a 0%, #7f7f7f 100%);
  background: linear-gradient(to right, #3a3a3a 0%, #7f7f7f 100%);
  background-color: #3a3a3a;
}

.slide__nav-link-boom {
  background: -moz-linear-gradient(to right, #193c5b 0%, #0c7cc5 100%);
  background: -ms-linear-gradient(to right, #193c5b 0%, #0c7cc5 100%);
  background: -o-linear-gradient(to right, #193c5b 0%, #0c7cc5 100%);
  background: -webkit-linear-gradient(to right, #193c5b 0%, #0c7cc5 100%);
  background: linear-gradient(to right, #193c5b 0%, #0c7cc5 100%);
  background-color: #193c5b;
}

.slide__nav-item:last-child {
  border-bottom: none;
}

.slide__nav-img {
  width: 32px;
  height: 32px;
}

.slide__nav-text {
  padding-left: 19px;
}

.slide__nav-social {
  background-color: #122739;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.slide__nav-social-link {
  display: block;
  width: 45px;
  height: 45px;
  text-indent: -9999px;
  border-radius: 50%;
  margin: 0 10px;
}

.slide__nav-social-img {
  width: 45px;
  height: 45px;
}

.slide__nav-dropdown-item {
  border-top: 1px solid #122739;
  padding-left: 15px;
}

.slide__nav-dropdown-item:last-child {
  border-bottom: 1px solid #122739;
}

.slide__nav-dropdown-link {
  background: -moz-linear-gradient(to right, #e93a45 0%, #ffd100 100%);
  background: -ms-linear-gradient(to right, #e93a45 0%, #ffd100 100%);
  background: -o-linear-gradient(to right, #e93a45 0%, #ffd100 100%);
  background: -webkit-linear-gradient(to right, #e93a45 0%, #ffd100 100%);
  background: linear-gradient(to right, #e93a45 0%, #ffd100 100%);
  background-color: #e93a45;
  padding-left: 23px;
  height: 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #213f63;
  font-weight: bold;
  white-space: nowrap;
}

.slide__nav-dropdown-text {
  padding-left: 16px;
}

@media screen and (max-width: 1024px) {
  .slide__nav {
    display: block;
  }
}