/* cmaExperienceStylesCombobox */

.nice-select.open{
    z-index: 20 !important;
}

.nice-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    z-index: 10 !important;
    width: 100% !important;
    background-color: #f7f7f7;
    border: 1px solid #999;
    border-radius: 3px;
    outline: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    height: 48px;
    padding: 12px 16px;
    background: #fff;

    clear: both;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/*.nice-select:hover {
    border-color: #dbdbdb;
}*/

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #006871;
}

.nice-select:after {
    border-bottom: 2px solid #006871;
    border-right: 2px solid #006871;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all .15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    transform: rotate(-135deg)
}

.nice-select.open .nice-select-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0)
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #ccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .nice-select-dropdown {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .nice-select-dropdown {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .nice-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    pointer-events: none;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(19px);
    transition: all .2s cubic-bezier(0.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9;
    opacity: 0;
    border-color:  #006871;
    background-color: #fff;
    display: block;
    border-radius: 0 0 3px 3px;
    border-top: none;
}

.nice-select .list {
    /*border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    max-height: 210px;
    overflow-y: auto*/
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 211px;
    overflow-y: scroll;
}

.nice-select-dropdown .list::-webkit-scrollbar
{
    /*-webkit-appearance: none;*/
    width: 13px;
    height: 13px;
}

.nice-select-dropdown .list::-webkit-scrollbar-track
{
    /*background: #b0b0b0;*/
    background: #e1e0e0;
    /*border: solid 2px rgba(33,33,33,0.5);*/
    border-radius: 2px;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb
{
    /*background: #404040;*/
    background: #949494;
    height: 25px;
    border-radius: 8px;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb:hover
{
    background: #868686;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb:active
{
    background: #404040;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb:vertical
{
    /*border-top: solid 2px rgba(33,33,33,0.5);
    border-bottom: solid 2px rgba(33,33,33,0.5);*/
}

.nice-select-dropdown .list::-webkit-scrollbar-button
{
    border-style: solid;
    height: 25px;
    width: 25px;
}

.nice-select-dropdown .list::-webkit-scrollbar-button:vertical:decrement
{
    border-width: 0 7px 14px 7px;
    border-color: transparent transparent #404040 transparent;
}

.nice-select-dropdown .list::-webkit-scrollbar-button:vertical:decrement:hover
{
    border-color: transparent transparent #505050 transparent;
}


/* Down */
.nice-select-dropdown .list::-webkit-scrollbar-button:vertical:increment
{
    border-width: 14px 7px 0 7px;
    border-color: #404040 transparent transparent transparent;
}

.nice-select-dropdown .list::-webkit-scrollbar-button:vertical:increment:hover
{
    border-color: #505050 transparent transparent transparent;
}



.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all .2s
}

.nice-select .option:hover, .nice-select .option.focus  {
    /*background-color: #f6f6f6*/
    background: rgba(0,104,113,.2);
}

.nice-select .option.selected, .nice-select .option.selected:hover, .nice-select .option.selected.focus {
    /*font-weight: bold*/
    background: #006871;
    color: #fff;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default
}

.nice-select .optgroup {
    background: #006871;
    color: #fff;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
    display: none
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
    display: block;
    border: 1px solid #006871;
}

/*.nice-select .list::-webkit-scrollbar {
    width: 0
}*/

.nice-select .has-multiple {
    white-space: inherit;
    height: auto;
    padding: 7px 12px;
    min-height: 36px;
    line-height: 22px
}

.nice-select .has-multiple span.current {
    border: 1px solid #ccc;
    background: #eee;
    padding: 0 10px;
    border-radius: 3px;
    display: inline-block;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 3px;
    margin-right: 3px
}

.nice-select span.current {
    font-size: min(16px, 4vw);
}

.nice-select .has-multiple .multiple-options {
    display: block;
    line-height: 24px;
    padding: 0
}

.nice-select .nice-select-search-box {
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    pointer-events: none;
    border-radius: 5px 5px 0 0
}

.nice-select .nice-select-search {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    color: #444;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
    margin: 0 10px 0 0;
    width: 100%;
    min-height: 36px;
    line-height: 22px;
    height: auto;
    outline: 0 !important;
    font-size: 14px
}

.has-error .nice-select {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    background: #f2e8e8;
}

.fieldset[disabled] .nice-select {
    background-color: #eee;
    opacity: 1;
    cursor: not-allowed;
}

/* TODO SELECT 2*/
.nice-select2 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 38px;
    line-height: 36px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
}
.nice-select2:hover {
    border-color: #dbdbdb;
}
.nice-select2:active, .nice-select2.open, .nice-select2:focus {
    border-color: #999;
}
.nice-select2:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px;
}
.nice-select2.open:after {
    transform: rotate(-135deg);
}
.nice-select2.open .nice-select2-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}
.nice-select2.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}
.nice-select2.disabled:after {
    border-color: #ccc;
}
.nice-select2.wide {
    width: 100%;
}
.nice-select2.wide .nice-select2-dropdown {
    left: 0 !important;
    right: 0 !important;
}
.nice-select2.right {
    float: right;
}
.nice-select2.right .nice-select2-dropdown {
    left: auto;
    right: 0;
}
.nice-select2.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}
.nice-select2.small:after {
    height: 4px;
    width: 4px;
}
.nice-select2.small .option {
    line-height: 34px;
    min-height: 34px;
}
.nice-select2 .nice-select2-dropdown {
    margin-top: 4px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    /*transform: scale(0.75) translateY(- math.div(-$input-height, 2));*/
    transform: scale(0.75) translateY(20px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    opacity: 0;
}
.nice-select2 .list {
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    max-height: 210px;
    overflow-y: auto;
}
.nice-select2 .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.nice-select2 .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}
.nice-select2 .option:hover, .nice-select2 .option.focus, .nice-select2 .option.selected.focus {
    background-color: #f6f6f6;
}
.nice-select2 .option.selected {
    font-weight: bold;
}
.nice-select2 .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}
.nice-select2 .optgroup {
    font-weight: bold;
}
.no-csspointerevents .nice-select2 .nice-select2-dropdown {
    display: none;
}
.no-csspointerevents .nice-select2.open .nice-select2-dropdown {
    display: block;
}
.nice-select2 .list::-webkit-scrollbar {
    width: 0;
}
.nice-select2 .has-multiple {
    white-space: inherit;
    height: auto;
    padding: 7px 12px;
    min-height: 36px;
    line-height: 22px;
}
.nice-select2 .has-multiple span.current {
    border: 1px solid #ccc;
    background: #eee;
    padding: 0 10px;
    border-radius: 3px;
    display: inline-block;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 3px;
    margin-right: 3px;
}
.nice-select2 .has-multiple .multiple-options {
    display: block;
    line-height: 24px;
    padding: 0;
}
.nice-select2 .nice-select2-search-box {
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    pointer-events: none;
    border-radius: 5px 5px 0 0;
}
.nice-select2 .nice-select2-search {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    color: #444;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
    margin: 0 10px 0 0;
    width: 100%;
    min-height: 36px;
    line-height: 22px;
    height: auto;
    outline: 0 !important;
    font-size: 14px;
}
