.left-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  border: 2px solid #6ECB00;
  padding: 24px 20px;
}
.left-menu__root {
  list-style: none;
}
.left-menu__root-items {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.left-menu__root-item {
  margin-bottom: 10px;
}
.left-menu__root-item:last-child {
  margin-bottom: 0;
}
.left-menu__root-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 2px solid #FFD7E1;
}
.left-menu__root-item:last-child .left-menu__root-item-link {
  border: none;
}
.left-menu__root-item-link > a {
  font-size: 18px !important;
  line-height: 24px;
/*  color: rgb(31, 72, 94);*/
  position: relative;
  padding: 7px 0px !important;
  margin-right: 15px;
}
.left-menu__root-item-link > button {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  background-image: url("images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  position: relative;
  top: 15px;
}
.left-menu__root-item-link.active button {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.left-menu__root-item-link.active {
  border-bottom: unset;
}
.left-menu__items {
  display: none;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-transform: none;
  padding: 0;
}
.left-menu__items.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.left-menu__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.left-menu a {
  padding: 7px 0;
  display: inline-block;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  font-size: 15px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  color: rgb(31, 72, 94);
}
.left-menu a:hover {
  color: #F63F95;
}

@media(max-width: 768px) {
  .left-menu {
    padding: 20px 16px;
  }
}