.genius-modal select{
    display: none;
}
.genius-modal select[name="hours"] ~ .nice-select{
    min-width: 250px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}
.genius-modal select[name="genius_expert"] ~ .nice-select{
    border-color: transparent;
    background: transparent;
    padding-left: 0;
}
.genius-modal .nice-select {
    -webkit-tap-highlight-color: transparent;
    background: #F9FBFC;
    border: 2px solid #001C47;
    box-sizing: border-box;
    border-radius:10px;
    clear: both;
    cursor: pointer;
    float: left;
    font-family: inherit;
    font-size: 18px;
    height: 52px;
    line-height: 211%;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -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;
    white-space: nowrap;
    width: auto;
    font-weight: 600;
    color: #283242;
    display: flex;
    align-items: center;
    direction: ltr;
}
.genius-modal .nice-select:hover {
    border-color: #002333; }
.genius-modal .nice-select:active, .genius-modal .nice-select.open, .genius-modal .nice-select:focus {
    border-color: #002333; }
.genius-modal .nice-select:after {
    border-bottom: 2px solid #002333;
    border-right: 2px solid #002333;
    content: '';
    display: block;
    height: 10px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    -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;
    width: 10px;
}
.genius-modal .nice-select:focus .list:after,
.genius-modal .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); }
.genius-modal .nice-select:focus .list,
.genius-modal .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0); }
.genius-modal .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
.genius-modal .nice-select.disabled:after {
    border-color: #cccccc; }
.genius-modal .nice-select.wide {
    width: 100%; }
.genius-modal .nice-select.wide .list {
    left: 0 !important;
    right: 0 !important; }
.genius-modal .nice-select.right {
    float: right; }
.genius-modal .nice-select.right .list {
    left: auto;
    right: 0; }
.genius-modal .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
.genius-modal .nice-select.small:after {
    height: 4px;
    width: 4px; }
.genius-modal .nice-select.small .option {
    line-height: 34px;
    min-height: 34px; }
.genius-modal .nice-select .list {
    background: #FFFFFF;
    border: 1px solid #001C47;
    box-sizing: border-box;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
    border-radius: 0;
    margin-top: 4px;
    opacity: 0;
    overflow: auto;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -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;
    z-index: 9;
    min-width: 240px;
    width: 100%;
    max-height: 350px;
}
.genius-modal .nice-select .list::-webkit-scrollbar {
    width: 3px;
}
.genius-modal .nice-select .list::-webkit-scrollbar-thumb {
    background-color:#001C47;
    border-radius: 5px;
    opacity: .5;
}
.genius-modal .nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
    color:#002333;
}

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

.genius-modal .nice-select .option.selected.focus:hover,
.genius-modal .nice-select .option.selected.focus,
.genius-modal .nice-select .option:hover,
.genius-modal .nice-select .option.focus{
    background-color: #002333;
    color: #fff;
}
.genius-modal .nice-select .option.selected{
    position: relative;
    font-weight: bold;
}
.genius-modal .nice-select .option.selected:not(.disabled):after {
    content: '';
    background: url('../img/icon/check-select.svg') no-repeat center right/contain;
    width: 12px;
    height: 10px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 10px;
    margin: auto;
  }
.genius-modal .nice-select .list:hover .option:not(:hover):after{
    filter: brightness(0.1);
}
.genius-modal .nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default; }

.no-csspointerevents .genius-modal .nice-select .list {
    display: none; }

.no-csspointerevents .genius-modal .nice-select.open .list {
    display: block; }