/* Default custom select styles */
div.cs-select {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: left;
    background: #EDEDED;
    z-index: 9;
    width: 100%;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.cs-select-payment {
    margin-bottom: 15px;
    width: auto;
}

div.cs-select-payment .cs-options li span {
    padding-left: 10px;
}

div.cs-select-payment span {
    height: 40px;
    padding: 9px 45px 6px 10px;
}

div.cs-select-payment span:after {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    top: 6px;
    right: 10px;
}

.select-box .cs-select-payment.cs-active > span::after {
    -ms-transform: translateY(22%) rotate(180deg);
    -webkit-transform: translateY(22%) rotate(180deg);
    transform: translateY(22%) rotate(180deg);
}

div.cs-select:focus {
    outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select select {
    display: none;
}

.cs-select span {
    color: #000;
    display: block;
    height: 48px;
    position: relative;
    cursor: pointer;
    padding: 15px 50px 15px 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select > span {
    padding-right: 50px;
}

.cs-select > span::after,
.cs-select .cs-selected span::after {
    speak: none;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cs-select > span::after {
    font-family: FontAwesome;
    content: '\f078';
    right: 25px;
    color: #009ac8;
    font-weight: 700;
    font-size: 22px;
}

.select-box-2 .cs-select > span::after {
    font-family: FontAwesome;
    content: '\f067';
    color: #76bb0a;
}

.cs-select.cs-active > span::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

div.cs-active {
    z-index: 200;
}

/* Options */
.cs-select .cs-options {
    -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow:    0px 4px 7px 0px rgba(0, 0, 0, 0.1);
    box-shadow:         0px 4px 7px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    overflow: hidden;
    width: 100%;
    background: #fff;
    visibility: hidden;
}

.cs-select.cs-active .cs-options {
    visibility: visible;
}

.cs-select ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cs-select ul span {
    font-size: 16px;
}

.cs-select ul span:hover {
    background: #EDEDED;
}

.cs-select ul li.cs-focus span {
    background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
    padding-left: 1em;
}

.cs-select li.cs-optgroup > span {
    cursor: default;
}

.select-box-label .cs-select ul span {
    font-size: 14px;
}
.select-box-label .cs-select .cs-options {
    padding-top: 40px;
}

.select-box-label .cs-active span:after {
    display: none;
}
