*,
*:after,
*:before {
    box-sizing: border-box;
}
.select {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    height:28px;
    line-height:26px;
    color: #000000;
    vertical-align: middle;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.select .placeholder:focus{
    border: 1px solid #535353;
    background: #eee;
    color:#aaa;
}
.select .placeholder {
    position: relative;
    display: block;
    background-color: #393d41;
    z-index: 1;
    padding: 0;
    height:28px;
    cursor: pointer;
    font-size:12px;
    color:#aaaaaa;
    padding: 0 10px;
    font-family: "Calibri-L", sans-serif;
}

.select .placeholder:hover {
    background: #34383c;
    color:#aaa;
}

.select .placeholder:after {
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    content: '\f078';
    z-index: 10;
    color:#8c8c8c;
    font-weight:100;
}

.select.is-open .placeholder:after {
    content: '\f077';
}

.select.is-open ul {
    display: block;
}

.select.select--white .placeholder {
    background: #f7f7f7;
    color: #000;
}

.select.select--white .placeholder:hover {
    background: #fafafa;
}

.select ul::-webkit-scrollbar {
    width: 4px;
}
.select ul::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}
.select ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #ccc;
}

.select ul {
    display: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    background: #f7f7f7;
    top: 100%;
    left: 0;
    list-style: none;
    margin: -1px 0 0 0;
    padding: 0;
    z-index: 100;
    border-left:1px solid #eee;
    border-right:1px solid #eee;
}
ul.country_select{
    display: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height:300px;
    background: #f7f7f7;
    top: 100%;
    left: 0;
    list-style: none;
    margin: -1px 0 0 0;
    padding: 0;
    z-index: 100;
    border-left:1px solid #eee;
    border-right:1px solid #eee;
}

.select ul li {
    display: block;
    text-align: left;
    padding: 0.1em 1em 0.1em 1em;
    color: #555;
    cursor: pointer;
    font-size:12px;
    border-top:1px solid #eee;
}
.select ul li:last-child {
    border-bottom:1px solid #eee;
}

.select ul li:hover {
    background: #efefef;
}