/*
 * This file is part of react-svg-buttons.
 *
 * (c) Raphaël Benitte
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.select-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    float: left;
    width: 50%;

    cursor: pointer;

    background: var(--alt-bg-color);
    color:      var(--alt-txt-color);

    box-shadow: 0 1px 2px #000;

    border-radius: 2px;
}

.select-box select {
    color: inherit;

    font-size:   16px;
    font-family: var(--main-font-family);

    position: relative;
    z-index: 1;
    display: block;
    width: 150%;
    -webkit-appearance: none;
    -moz-appearance:    none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    height: auto;
    margin: 0;
    padding: 7px 26px 7px 12px;
}
.select-box select:focus {
    outline: none;
}
