.riswitcher_container {
  & .riswitcher {
    position: relative;
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #CFCFCF;
    border-radius: 6px 2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    transition: 0.3s all ease;

    & .swith_icon {
      position: absolute;
      top: 8px;
      right: 2px;
      height: 14px;
      opacity: 0.8;
    }

    & .rs_options {
      & .rs_option {
        display: none;
        cursor: pointer;
        text-align: left;
        user-select: none;

        &.active {
          display: block;
        }
      }
    }
  }

  &.iconed {
    & .riswitcher {
      padding-left: 40px;
    }
  }

  & select {
    display: none !important;
  }
}
