.select {
    position: relative;
    min-width: 200px;
}

.select svg {
    position: absolute;
    right: 12px;
    top: calc(50% - 3px);
    width: 10px;
    height: 6px;
    stroke-width: 2px;
    stroke: #9098a9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.select-sort select {
    border: none !important;
    border-bottom: 2px solid #27466d !important;
    border-radius: 0 !important;
}

.select-sort select:focus {
    border-bottom: 2px solid #f2f3f8 !important;
}

.select select {
    -webkit-appearance: none;
    width: 100%;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    transition: all 150ms ease;
    padding: 10px 0px 10px 14px;
    border: 1px solid #27466d;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #27466d;
}

.variation-select {
    margin-bottom: 1rem;
}

.select select:required:invalid {
    color: #5a667f;
}

.select select option {
    color: #223254;
}

.select select option[value=""][disabled] {
    display: none;
}

.select select:focus {
    outline: none;
}

.select select:hover+svg {
    stroke: #27466d;
}

.sprite {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


select:focus~.arrow {
    transform: rotate(180deg);
    transition: .25s;
}

.arrow {
    transition: .25s;
}
