
/* 
** jQuery Nice Select - v1.0
** Author: Made by Hernán Sartorio
** Modifed:  EKU
** Source:  MANAGER PANEL
** version: 1.1.2 (47502)
*/

/* INITIAL STYLE */
.nice-select-holder + .nice-select-holder {
	margin-left: 4px
}
.nice-select .dropdown {
	background: #c1d1de;
	border-radius: 7px;
	padding: 0 24px 0 15px;
	width: 145px;
	height: 32px
}
.nice-select .dropdown:hover {background: #bbcbda}
.nice-select .dropdown .title-holder {
	width: 100%;
	height: inherit
}
.nice-select .dropdown .title-holder .vertical-table {
	/* allows elip */
	table-layout: fixed;
}
.nice-select .dropdown .title-holder p {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	display: block;
	width: 100%;
	font-size: .75rem;
	line-height: 16px; 
	font-weight: 600;
	letter-spacing: -.25px
}
.nice-select .dropdown .title-holder .vertical-cell {width: 100%}
.nice-select .dropdown .graphic-holder {
    position: absolute;
    padding-right: 4px;
    right: 0;
    top: 0;
    height: inherit;
    background: white;
    border-radius: 0 10px 10px 0;
}
.nice-select .dropdown .graphic-holder .icon {
	font-size: 17px; 
	height: 15px
}
.nice-select.open .dropdown .graphic-holder .icon {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotate(180deg);
}
.nice-select .dropdown .title-holder p, .nice-select .dropdown .graphic-holder .icon {
	color: #0a2540;
}


/* ----------------- */

/* MOBILE */
.nice-select.mobile .dropdown {height: 36px}
.nice-select.mobile .dropdown .title-holder p {
	font-size: .85rem;
	line-height: 18px;
}

/* ----------------- */


/* DEFAULT STYLE (CHROME LOOK) */
.nice-select.default-style .dropdown {
	background: #fff;
	box-shadow: inset 0 0 0 .75px #ccc;
	border: none;
	border-radius: 3px;
	padding: 0 24px 0 11px;
	width: 200px;
	height: 28px;
}
.nice-select.default-style.active .dropdown {box-shadow: inset 0 0 0 .75px #3b93ff}
.nice-select.default-style:hover .dropdown {
	/*background: #f7f7f7;*/
}
.nice-select.default-style .dropdown .title-holder p, 
.nice-select.default-style .dropdown .graphic-holder .icon {
	font-weight: normal;
	color: #555;
	letter-spacing: 0;
	padding-left: 1px; /*1 pixel bug fix*/
}
.nice-select.nice-multipick .dropdown .title-holder p b {
	font-weight: normal
}

/* ----------------- */



/* DARK STYLE - TOPBAR SIDE */
.nice-select.topbar-dark-style .dropdown {background: #1c2131}
.nice-select.topbar-dark-style .dropdown:hover {background: #171c2b}
.nice-select.topbar-dark-style .dropdown p {
    color: #fff;
    font-weight: 400;
}
.nice-select.topbar-dark-style .dropdown .icon {color: #fff}

/* ----------------- */


/* PRELOAD STYLE */  
select.nice-select.default-style::-ms-expand  {display: none}
select.nice-select.default-style {
	-webkit-appearance: none;
	-moz-appearance: none;
	animation: nice-select-load-blink 1.45s linear infinite;
	background: #fff;
	border: 0;
	padding: 0 8px 0 15px;
	border-radius: 7px;
	box-sizing: content-box;
	width: 145px;
	height: 32px
}
@keyframes nice-select-load-blink {
	7% {opacity: 1}
	43% {opacity: .75}
	57% {opacity: .75}
	97% {opacity: 1}
}
/* ----------------- */

/* DROPDOWN LIST */
.nice-select .nice-list {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.25);
	box-sizing: border-box;
	color: #0a2540;
	padding: 4px 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 3px 0 0 0;
	transform-origin: top;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-font-smoothing: subpixel-antialiased;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
	min-width: 100%;
	width: 100%;
	height: auto;
}

/*bug fix - to allow to read the height of the scroll */
.stop-animation {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
}
.read-height {
	opacity: 0 !important;
	-webkit-transform: scaleY(1) !important;
	-ms-transform: scaleY(1) !important;
	transform: scaleY(1) !important;
}
.nice-select .nice-list .scrollable {
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
	max-height: 400px;
}

.nice-select .nice-list .scrollable::-webkit-scrollbar-track{background-color: transparent}
.nice-select .nice-list .scrollable::-webkit-scrollbar{width: 5px; background-color: transparent; border-radius: 10px}
.nice-select .nice-list .scrollable::-webkit-scrollbar-thumb{border-radius: 10px; background-color: #d0dae4}
.nice-select.open .nice-list {
	pointer-events: auto;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.nice-select .nice-list:hover .option:not(:hover) {background-color: transparent}
.nice-select .nice-list ul {
	margin: 0;
	padding: 0;
}
.nice-select .nice-list ul .search-not-found {
	width: 100%;
    text-align: center;
    text-align-last: center;
    padding: 3px 0;
	cursor: default;
}
.nice-select .nice-list ul li + .search-not-found {padding-top: 0}
.nice-select .nice-list ul .search-not-found.inactive {display: none}
.nice-select .nice-list ul .search-not-found .icon {
	border-bottom: 3px solid #ff3f6a;
}
.nice-select .nice-list .nice-search-borders {
	width: 100%;
	padding: 3px 6px;
}
.nice-select .nice-list .nice-search-wrap {
	background: #fff;
	border: none;
	border-radius: 3px;
	/*box-shadow: inset 0 0 0 .75px #0a2540;*/
	box-shadow: inset 0 0 0 .75px #99a4ad;
	margin: 0;
	height: 30px;
}
.nice-select .nice-list .nice-search-input {
	background: none;
    border: 0;
    outline: none;
    height: inherit;
    margin: 0;
	padding: 0 42px 0 8px;
    font-size: .75rem;
	color: #0a2540;
   line-height: 29px;
	width: 100%;
}
.nice-select .nice-list .nice-search-input::placeholder {color: #8d9ba9}

.nice-select .nice-list .nice-search-wrap .icon {
	top: 0;
	color: #41607e;
    font-size: 20px;
    vertical-align: middle;
    line-height: 30px;
	height: inherit;
}
.nice-select .nice-list .nice-search-wrap .search-icon,
.nice-select .nice-list .nice-search-wrap .clear-search {
	color: #657687
}
.nice-select .nice-list .nice-search-wrap .search-icon {
	right: 2px;
	cursor: default;
}

.nice-select .nice-list .nice-search-wrap .clear-search {
	right: 18px;
    padding: 0 3px;
	opacity: 1;
}
.nice-select .nice-list .nice-search-wrap .clear-search.active {cursor: pointer}
.nice-select .nice-list .nice-search-wrap .clear-search:hover {color: #0a2540}
.nice-select .nice-list .nice-search-wrap .clear-search.inactive {opacity: 0; cursor: default}


.nice-select .nice-list .nice-multipick-borders {
	width: 100%;
	padding: 0 6px 4px 7px;
}
.nice-select .nice-list .nice-multipick-wrap {
	background: #fff;
	border: none;
	margin: 0;
	height: auto;
	min-height: 22px;
	white-space: normal;
}
.nice-select .nice-list .nice-multipick-wrap .empty {
    color: #96a5b4;
    font-size: .725rem;
    line-height: 22px;
    text-align: center;
    text-align-last: center;
	width: 100%;
}
.nice-select .nice-list .nice-multipick-wrap .empty.inactive {display: none}

.nice-select .nice-list .nice-multipick-wrap .item,
.nice-select .nice-list .nice-multipick-wrap .item p,
.nice-select .nice-list .nice-multipick-wrap .item .icon {
	display: inline-block;
	vertical-align: top;
}
.nice-select .nice-list .nice-multipick-wrap .item {
    background: #fff;
    box-shadow: inset 0 0 0 0.75px #a6b4c1, 0px 1.5px 0px #f0f2f4;
    border-radius: 10px;
	cursor: default;
    padding: 4px 22px 3px 6px;
	position: relative;
    margin: 3px 2px 0 0;
    min-height: 13px;
}
/*.nice-select .nice-list .nice-multipick-wrap .item + .item {margin-top: 3px}*/
.nice-select .nice-list .nice-multipick-wrap .item p {
	font-size: .7rem;
    line-height: 13px;
    color: #425466;
    font-weight: bold;
    text-align: left;
    /*white-space: normal;*/
	
	max-width: 182px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.nice-select .nice-list .nice-multipick-wrap .item .icon {
    color: #75879a;
	cursor: pointer;
    font-size: 12px;
    line-height: 15px;
    width: 13px;
    height: 13px;
    position: absolute;
	top: 45%;
    right: 0;
    transform: translate(-50%, -50%);
}
.nice-select .nice-list .nice-multipick-wrap .item .icon:hover {color: #3a4d60;}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	font-size: .75rem;
	line-height: 1.05rem;
	list-style: none;
	outline: none;
	padding: 4px 6px 4px 10px;
	text-align: left;
	white-space: normal;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option .left,
.nice-select .option .middle,
.nice-select .option .right {
	display: inline-block;
    vertical-align: top;
}
.nice-select .option.hide, .nice-select .option.force-hide {display: none}

.nice-select .option .left {width: 0%}
.nice-select .option .middle {width: 100%}
.nice-select .option .right {width: 0}

.nice-select.nice-count .option .left {width: 0%}
.nice-select.nice-count .option .middle {width: 60%}
.nice-select.nice-count .option .right {width: 40%}

.nice-select.nice-multipick .option .left {width: 8%}
.nice-select.nice-multipick .option .middle {width: 57%}
.nice-select.nice-multipick .option .right {width: 35%}

.nice-select.nice-multipick .option {
	padding: 4px 6px 4px 2px;
}
.nice-select.nice-multipick .left {text-align: right}
.nice-select .checkmark.inactive {display: none}
.nice-select .checkmark .icon {
	padding-right: 4px;
    line-height: 16px;
    font-size: 14px;
    width: 12px;
}


.nice-select .option u {
	background: #ffd767;
    font-weight: bold;
    color: #3a3a3a;
    text-decoration: none;
}
.nice-select .option b {
	font-weight: normal;
}
.nice-select .option .count {
	background: #eff7ff;
    border-radius: 2px;
    margin-top: 2.5px;
    padding: 1px 3px 1px 1.5px;
    font-size: .6rem;
    font-weight: bold;
    box-shadow: inset 0 0 0 0.75px #89a;
    line-height: 10px;
    display: inline-block;
    vertical-align: top;
}
.nice-select .option .count + .count {margin-left: 3px}
.nice-select .option .count .icon {
	padding-right: 0;
    font-size: 10px;
    line-height: inherit;
}
.nice-select .option .count.history {
	background: #ebebeb;
	box-shadow: inset 0 0 0 0.75px #bababa;
	color: #26282b;
	padding: 1px 3px;
}
.nice-select .option .count.history .icon {
	padding-right: 2px;
	font-size: 9px;
}
.nice-select .option:hover {background-color: #f6f6f6}
/*.nice-select .option.selected, .nice-select .option.selected:hover {background-color: #f6f6f6}*/
.nice-select .option.selected b {font-weight: bold}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default
}
.nice-select .option.no-match {
	display: none
}

/* --- CE 1.0.9f --- */
.nice-select .option b .lang-img {
	background: no-repeat left;
	background-size: cover;
    margin: 3px 8px 0 2px;
    width: 15px;
    height: 10px;
    display: inline-block;
    vertical-align: top;
}
.nice-select .dropdown .title-holder p .lang-img {
	background: no-repeat left;
    background-size: cover;
    margin: 8.5px 8px 0 2px;
    width: 16px;
    height: 11px;
    display: inline-block;
    vertical-align: top;
}
/* ------*/

/* --- CE 1.0.9c --- */
.nice-select .option b .dep-indicator {
	background: url(/global/svg/icons/dep-sub.svg) no-repeat left;
    background-size: contain;
    margin: 3.5px 8px 0 10px;
    width: 6px;
    height: 8px;
    display: inline-block;
    vertical-align: top;
}
.nice-select .option.selected b .dep-name {
	font-weight: 600;
}
/* --- EE 2.0.5g --- */
.nice-select-dropdown-overlay.active {height: 100%}
.nice-select-dropdown-overlay.inactive {height: 0}
.nice-select-dropdown-overlay.inactive.no-first-click {display: none}
.nice-select.nice-dropdown-overlay .nice-list .scrollable {max-height: 300px}
.nice-select.nice-dropdown-overlay .nice-list {margin-left: .5%; width: 99%}

/* --- disabled --- */
.nice-select.default-style.disabled {
	cursor: not-allowed;
	/*border: 1.5px solid #adc5de;*/
	color: #6c8eb1;
	pointer-events: none
}
.nice-select.default-style.disabled:after {border-color: #adc5de}
.nice-select.default-style.disabled .dropdown {background: #edf2f8}
/* -- border, small version -- */
.nice-select.default-style.small-ver .dropdown {
    /*border: 1.5px solid #adc5de;*/
    height: 28px;
}
.nice-select.default-style.disabled .dropdown .title-holder p,
.nice-select.default-style.disabled .dropdown .graphic-holder .icon {color: #6c8eb1}
.nice-select-holder .nice-select.default-style.disabled {cursor: not-allowed} /* not working */
.nice-select.default-style.nice-border .dropdown {
	border: none;
}
.nice-select.default-style.nice-border .border-holder {
	border-radius: 8px; 
	border: 1.5px solid #adc5de;
	/*box-shadow: inset 0 0 0 1.25px #adc5de;*/
}
.nice-select.default-style.nice-border.open .border-holder {
    border-color: #0a2540;
}
/* ------*/
