#guest-menu {
  margin-right: 20px;

  a {
    display: flex;
    align-items: center;
    transition: none;

    img {
      height: 20px;
      margin: 0 4px;
    }

    &:hover,
    &:focus,
    &:active,
    &:active:focus {

      .caret {
        border-color: #ff7830;
      }

      img {
        filter: brightness(0) saturate(100%) invert(57%) sepia(61%) saturate(2311%) hue-rotate(338deg) brightness(101%) contrast(101%);
      }
    }

  }

  &.nav .open>a {
    background-color: transparent !important;
  }

  &>li {
    &>a {
      padding-left: 0;
      padding-right: 0;
    }

    &>.dropdown-menu {
      margin-right: 0 !important;
    }

  }
}


.news__list {
  .news__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    @media (max-width: 600px) {
      flex-direction: column-reverse;
    }

    &>p {
      flex: 1;
    }

    &>figure {
      display: inline-block;
      width: 70px;
      margin: 0 0 0 13px;
      text-align: center;

      @media (max-width: 600px) {
        width: auto;
        margin: 10px 0 -4px;
        background-color: #ff6411;
        color: #fff;
        padding: 1px 8px;
        border-radius: 8px;
      }

      img {
        @media (max-width: 600px) {
          display: none;
        }
      }

      figcaption {
        font-size: 14px;
        white-space: nowrap;
        position: relative;

        @media (max-width: 600px) {
          padding-left: 25px;
        }

        @media (max-width: 600px) {
          &::before {
            content: '';
            background-image: url(vip4.svg);
            background-size: 100%;
            background-repeat: no-repeat;
            display: inline-block;
            width: 21px;
            height: 20px;

            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(0, -50%);

          }
        }
      }
    }
  }
}