.cg-cb-container{
    display:inline-block;
    min-width: 70px;
}

.cg-cb-container.grayed-out .cg-combobox {
    background-color: #888;
}

.cg-cb-container.grayed-out .cg-combobox:hover {
    background-color: #999;
}

.cg-combobox {
    position: relative;
    text-align: center;
    border-radius: 5px;
    min-height: 100%;
    height: 30px;
    line-height: 26px;
    cursor: pointer;
    border: 1px solid #adadad;
    background: #FC6D5C;
    color: #fff;
    font-size: 18px;

    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.cg-combobox:hover,
.cg-combobox:hover .cg-cb-button,
.cg-combobox.cg-cb-focused,
.cg-combobox.cg-cb-focused .cg-cb-button{
    background: #FF5544;
    border-color: #579ee5;
}

.cg-combobox.cg-cb-focused{
    outline: auto #818181 1px;
    outline-color: -webkit-focus-ring-color;
}

.cg-cb-readable-label{
    position: absolute !important;
    cursor: default;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    z-index: -1 !important;
}

.cg-cb-label{
    display: table;
    height: 100%;
    width: 100%;
    padding-left: 5px;
    box-sizing: border-box;
}

.cg-cb-visible-label {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}
.cg-cb-button {
    display: none;
    right: 0;
    position:absolute;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 22px;
    border:none;
    cursor: pointer;
    border-left: 1px solid #adadad;
    background-color: #ffffff;
    background: #f0f0f0;
    background: -webkit-linear-gradient(#f0f0f0, #e5e5e5);
    background: -moz-linear-gradient(#f0f0f0, #e5e5e5);
    background: -ms-linear-gradient(#f0f0f0, #e5e5e5);
    background: -o-linear-gradient(#f0f0f0, #e5e5e5);
    background: linear-gradient(#f0f0f0, #e5e5e5);
}

.cg-cb-list {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0 0 0 -1px;
    border-left: 1px solid #adadad;
    border-right: 1px solid #adadad;
    border-top: 1px solid #adadad;
    background-color: #fff;
    z-index: 300;
    max-height: 300px;
    min-width: 100%;
    /*overflow:auto;*/
    overflow: hidden;
    color: #444;
}

.cg-cb-option {
    outline: 0;
    padding: 3px 0 3px 5px;
    border-bottom: 1px solid  #adadad;
    cursor: pointer;
}
.cg-cb-selected {
    background-color: #28a1da;
    color: #ffffff;
}
.cg-cb-option:hover {
    background-color: #d6effd;
}
.cg-cb-option.cg-cb-selected:hover {
    background-color: #5bb7e3;
    color: #ffffff;
}

.cg-cb-arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid;
    display: inline-block;
    vertical-align: middle;
}