.currencies {
  position: relative;

  .list {
    position: absolute;
    z-index: 1;
    display: none;
    flex-direction: column;
    top: 100%;
    left: 50%;
    translate: -50% 0;
    background: #fff;
    box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.05);

    &.active {
      display: flex;
    }
  }

  .currency {
    cursor: pointer;
    padding: 4px 8px;
    transform: color 0.3s ease-in-out;

    &:hover {
      color: #000;
    }
  }

  .current.currency {
    position: relative;

    &::after {
      display: inline-block;
      content: "\e81c";
      font-family: "porto";
      font-weight: 400;
      font-size: 1em;
      font-size: 12px;
      margin: 0 0 0 5px;
      line-height: 1;
    }
  }
}