.nice-select {
    position: relative;
    display: block;
    float: left;
    clear: both;
    box-sizing: border-box;
    width: auto;
    height: 48px;
    padding-left: 20px;
    padding-right: 35px;
    border: solid 1px rgba(var(--wdtHeadAltColorRgb),0.15);
    border-radius: var(--wdtRadius_1X);
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    font-size: var(--wdtFontSize_Base);
    font-weight: normal;
    line-height: 46px;
    text-align: left !important;
    white-space: nowrap;
    background-color: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    text-overflow: ellipsis;
    margin-bottom: 30px;
}
.nice-select:active, 
.nice-select.open, 
.nice-select:focus { border-color: var(--wdtHeadAltColor); }
.nice-select:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    
    border-bottom: 2px solid var(--wdtHeadAltColor);
    border-right: 2px solid var(--wdtHeadAltColor);

    pointer-events: none;
    
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
}
.nice-select.open:after { 
    -webkit-transform: rotate(-135deg); 
        -ms-transform: rotate(-135deg); 
            transform: rotate(-135deg); 
}
.nice-select.open .list { opacity: 1; pointer-events: auto; 
    -webkit-transform: perspective(100px) rotateX(0) scale(1); 
        -ms-transform: perspective(100px) rotateX(0) scale(1); 
            transform: perspective(100px) rotateX(0) scale(1); 
}
.nice-select .list {
    background-color: var(--wdtBodyBGColor);
    border-radius: var(--wdtRadius_1X);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 10px;
    z-index: 9;
    opacity: 0;
    overflow: hidden;
    padding: 10px 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform:  perspective(1000px) rotateX(-5deg) scale(0.92);
        -ms-transform:  perspective(1000px) rotateX(-5deg) scale(0.92);
            transform:  perspective(1000px) rotateX(-5deg) scale(0.92);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
            transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}
.nice-select .option {
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
    list-style: none;
    outline: none;
    padding: 7px 20px;
    text-align: left;
    color: var(--wdtHeadAltColor);
    -webkit-transition: all 0.2s;
            transition: all 0.2s;
    white-space: normal;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus { background-color: transparent; color: var(--wdtPrimaryColor); }
.nice-select .option.selected { font-weight: var(--wdtFontWeight_Base); }
.nice-select .option.disabled { background-color: transparent; color: #999 !important; cursor: default; }
.nice-select.wide { width: 100%; min-width: 200px; }
.nice-select.wide .list { left: 0 !important; right: 0 !important; }
.nice-select.right { float: right; }
.nice-select.right .list { 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.disabled { border-color: #ededed; color: #999; pointer-events: none; }
.nice-select.disabled:after { border-color: #cccccc; }
.nice-select .list:hover .option:not(:hover) { background-color: transparent !important; color: var(--wdtHeadAltColor); }
.no-csspointerevents .nice-select .list { display: none; }
.no-csspointerevents .nice-select.open .list { display: block; }

.nice-select.wdt-drop-down ul.list li:first-child{
    display: none;
}

.nice-select.wdt-drop-down:focus + .wpcf7-not-valid-tip{
    opacity: 0;
}