/* ===== NICE SELECT CUSTOM STYLE ===== */

.nice-select{
    width:100%;
    height:68px;
 
    border:none !important;
   
    background:#fff;
    color:#8b8b8b;
    font-size:22px;
    font-weight:400;
    padding-left:25px;
    padding-right:60px;
    position:relative;
    z-index:99;
}

/* Arrow */
.nice-select:after{
    border-bottom:2px solid #8b8b8b;
    border-right:2px solid #8b8b8b;
    width:8px;
    height:8px;
    right:28px;
    margin-top:-6px;
}

/* Dropdown Open */
.nice-select.open{
    border-radius:35px;
}

/* Dropdown List */
.nice-select .list{
    width:100%;
    margin-top:10px;
    border:none;
    border-radius:25px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:99999;

    /* IMPORTANT */
    max-height:260px;
    overflow-y:auto;

    opacity:1;
    pointer-events:auto;
}

/* Scrollbar */
.nice-select .list::-webkit-scrollbar{
    width:6px;
}

.nice-select .list::-webkit-scrollbar-thumb{
    background:#c5c5c5;
    border-radius:10px;
}

/* Options */
.nice-select .option{
    font-size:18px;
    line-height:30px;
    min-height:auto;
    padding:14px 22px;
    color:#777;
    border-bottom:1px solid #f1f1f1;
    white-space:normal;
}

/* Hover */
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus{
    background:#f7f7f7;
    color:#000;
}

/* Selected */
.nice-select .option.selected{
    font-weight:600;
    color:#000;
}

/* Dropdown message box mela varanum */
.form-item,
.form-group,
.contact-form,
.form-wrapper{
    overflow:visible !important;
    position:relative;
}

/* Message box */
textarea.form-control{
    min-height:130px;
    border-radius:20px;
    padding:25px;
}