* {
    box-sizing: border-box;
}
html{
    font-size:100%;
}
html,body{
    width:100%;
    height:100%;
}
body{
    font-family: 'Arvo', serif;
    margin:0;
    padding:0;
    line-height:normal;
    font-weight: 400;
}

.select-container {
    width: 625px;
    max-width: 100%;
    min-height:230px;
}
.select-container.vbus {
    border: 1px solid #4B9390;
    padding: 15px;
}
.select-container.tallis {
    border: 1px solid #232F5D;
    padding: 15px;
}
.select-container.keolis_auvergne {
    border: 1px solid #00AAC3;
    padding: 15px;
}
select {
    background: white;
    border: 1px solid #DEDEDE;
    border-radius: 20px;
    font-family: 'Arvo', serif;
    display: block;
    font-size: 14px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    margin-bottom: 10px;
    outline: none!important;
}
select.ligne {
    margin-top: 15px;
}
a.button-horaires {
    border-radius: 20px;
    color: white;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.25em;
    text-decoration: none;
    transition: all 500ms;
}
a.button-horaires.tallis {
    border: 2px solid #23527c;
    background: #23527c;
}
a.button-horaires.tallis:hover {
    color: #23527c;
    background: white;
}
a.button-horaires.vbus {
    border: 2px solid #4b9390;
    background: #4b9390;
}
a.button-horaires.vbus:hover {
    color: #4b9390;
    background: white;
}
a.button-horaires.keolis_auvergne {
    border: 2px solid #00AAC3;
    background: #00AAC3;
}
a.button-horaires.keolis_auvergne:hover {
    color: #00AAC3;
    background: white;
}
select.direction, select.arret, .button-wrapper {
    display: none;
}

.custom-select {
    position: relative;
}
.custom-select select {
    display: none;
}
.select-selected {
    background: white;
    border: 1px solid #DEDEDE;
    border-radius: 20px;
    font-family: 'Arvo', serif;
    display: block;
    width: 100%;
    font-size: 14px;
    height: 40px;
    line-height: 24px;
    padding: 0 10px;
    margin-bottom: 10px;
    outline: none!important;
}
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

.select-items div,.select-selected {
    padding: 7px 16px;
    cursor: pointer;
}
.select-items div span, .select-selected span {
    display: inline-block;
    margin-right: 10px;
    height: 30px;
    line-height: 30px;
    padding: 0 11px;
    text-align: center;
    color: white;
    font-weight: bold;
}
.select-selected span {
    margin-top: -5px;
}

.select-items {
    border: 1px solid #CCC;
    background: white;
    position: absolute;
    font-size: 14px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 200px;
    overflow-y: scroll;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}