.select {
    position: relative;
    height: 52px;
    max-width: 100%;
    background: transparent;
    box-sizing: border-box;
}

.select select {
    width: 100%;
    height: 52px;
    line-height: 50px;
    padding: 0 52px 0 26px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    background: transparent;
    border: 1px solid #565656;
    border-radius: 26px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    background: url('../images/arrow-select-down.svg') right 20px center no-repeat;
    background-size: 20px;
    z-index: -1;
}