.language-selector__container select {
    background-color: white;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    box-sizing: border-box;
    color: #3e3d40;
    display: block;
    font-family: SourceSansPro, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    min-width: 80px;
    padding: 0 20px 0 16px;
    outline: none;
  }
  .language-selector__container label {
    position: relative;
  }
  .language-selector__container label:after {
    content: "";
    left: 54px;
    top: 17px;
    padding: 0 0 2px;
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 5px solid #007fd8;
    z-index: 100;
  }
  .language-selector__container label:before {
    content: "";
    left: 56px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: white;
    position: absolute;
    pointer-events: none;
    display: block;
    z-index: 1;
  }
