.select
{
	width: 100%;
	position: relative;
}

.select.select-tip
{
	border-left: none;
}

.select > .title
{
	display: flex;
	align-items: center;

	width: 100%;

	height: 32px;
	font-size: 13px;
	padding: 0 6px;

	-moz-transition: ease .3s;
  -webkit-transition: ease .3s;
  -ms-transition: ease .3s;
	-o-transition: ease .3s;

	cursor: pointer;
	/*background-color: #fff;*/

	/*text-transform: lowercase;*/

	/*background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));*/

    /*background-image: -webkit-linear-gradient(to bottom,transparent,rgba(216, 223, 228, 0.53))!important;
    background-image: -moz-linear-gradient(to bottom,transparent,rgba(216, 223, 228, 0.53))!important;
    background-image: -o-linear-gradient(to bottom,transparent,rgba(216, 223, 228, 0.53))!important;
    background-image: linear-gradient(to bottom,transparent,rgba(216, 223, 228, 0.53))!important;*/
}

.select.select-tip > .title
{
	background-color: #f9f9f9;
}

.select.disabled > .title
{
	cursor: not-allowed !important;
	color: #878787 !important;
	background-color: #fafbfc !important;
}

.select.active
{
	/*zoom: 1.2;*/
	/*border-radius: 4px;*/
}

/*.select > .title:focus
{
	border-color: #83B3CA;
	box-shadow: 0 8px 4px -6px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
}*/

.select.active
{
	/*border: 1px solid #dadfe3;*/
    /*border-top-left-radius: 4px;
    border-top-right-radius: 4px;*/
}

/*.select.active > .title > .text
{
	padding-left: 2px;
	padding-right: 2px;
}*/

.select:not(.disabled):not(.active):hover
{
	border-color: #2196f3;
	/*box-shadow: 0 8px 4px -6px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);*/
}

/*.select > .title > span
{
	display: table-cell;
    vertical-align: middle;
}*/

.select > .title > .icon
{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;

  height: 20px;
  width: 20px;
}

.select > .title > .text
{
	padding-right: 8px;

	flex: 1;

	display: flex;
	align-items: center;

	text-overflow: ellipsis;
	white-space: nowrap;
  overflow: hidden;

  font-size: 12px;
	font-weight: 500;

  -webkit-transition: ease .2s;
     -moz-transition: ease .2s;
      -ms-transition: ease .2s;
       -o-transition: ease .2s;
          transition: ease .2s;
}

.select > .title > .caret
{
	width: 16px;
	height: 16px;
	/*background-color: rgba(0,0,0,0.1);
	border-radius: 4px;*/

	background-image: url('/jumboo/skins/controlpanel/images/icons/ic-dropdown-b.png');
	background-position: center;
	background-repeat: no-repeat;
    background-size: 8px;

    -webkit-transition: transform 0.2s linear;
       -moz-transition: transform 0.2s linear;
        -ms-transition: transform 0.2s linear;
         -o-transition: transform 0.2s linear;
            transition: transform 0.2s linear;

    /*width: 20px;
    height: 28px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: 1px solid #d9dddf;
    background-color: #f9f9f9;
    background-image: url(../images/icons/ic-dropdown-b.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    -webkit-transition: transform 0.2s linear;
    -moz-transition: transform 0.2s linear;
    -ms-transition: transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;*/
}

.select.active > .title > .caret
{
	/*background-color: transparent;
	border-left: none; */
	transform: rotate(-180deg);
}

.select li
{
	list-style: none;
}

/*.select > .dropdown::-webkit-scrollbar
{
    width: 3px;
    height: 3px;

    cursor: pointer;
}

.select > .dropdown::-webkit-scrollbar-track
{
    background-color: #d9dddf;
}

.select > .dropdown::-webkit-scrollbar-thumb
{
    background-color: #339966;
}

.select > .dropdown::-webkit-scrollbar-thumb:hover
{
    background-color: #3498db;
}*/

.select > .dropdown
{
	width: 100%; /* 1px border */
	max-height: 320px;
	margin-top: -1px;
	margin-left: -1px;
	/*margin-right: -1px;*/

	box-sizing: content-box;
	padding: 6px 0;
	overflow: auto;

	display: none;

	position: absolute;
	z-index: 1000;

	background-color: #fff;
	border: 1px solid #ccc;
  border-top: none;

	border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

	box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.8);
}

.select > .dropdown.active
{
	display: block;
}

.select > .dropdown > .item
{
	display: flex;
  flex: 1;
  align-self: stretch;
  align-items: center;

	width: 100%;
	padding: 6px 14px;
  font-size: 12px;
	font-weight: 500;

	-webkit-transition: ease .3s;
	   -moz-transition: ease .3s;
		  -ms-transition: ease .3s;
	     -o-transition: ease .3s;
			 		transition: ease .3s;

	cursor: pointer;

	text-overflow: ellipsis;
	/*white-space: nowrap;*/
    overflow: hidden;
    position: relative;
    /*text-transform: lowercase;*/
}

.select > .dropdown > .item.disabled
{
	cursor: not-allowed;
    color: #878787;
    /*background-color: #faffbd;*/
}

.select > .dropdown > .item[data-selected="true"]:after
{
	content: '';
	position: absolute;
	top: 10px;
	right: 12px;
	box-sizing: border-box;
	width: 5px;
	height: 8px;
	transform: rotate(45deg);
	border-width: 2px;
	border-style: solid;
	border-color: #2196f3;
	border-top: 0;
	border-left: 0;
}

.select > .dropdown > .item:not(.disabled):not([data-selected="true"]):hover
{
	background-color: #f5f5f5;
}

.select > .dropdown > .item[data-selected]:not(.disabled)
{
	/*text-shadow: 0px 1px 0px rgba(0,0,0,0.14);
	background-color: #339966;
	color: #ecf0f1;*/
	background-color: #fafbfc;
}

.select .flag
{
	min-width: 14px;
	height: 14px;
	background-color: #595959;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #2a333a;
	border-radius: 50%;
	margin-right: 6px;
}

.select .default
{
	min-width: 14px;
	height: 14px;
  margin-left: 4px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	background-image: url(https://image.flaticon.com/icons/svg/148/148841.svg);
}

.select > .dropdown > .item > .level
{
	content: "";
  display: block;
  width: 0;
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  border-left: 1px solid #ddd;
}

.select > .dropdown > .item .label
{
	width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background-color: #607d8b;
	margin-right: 6px;
}

/*.select > .dropdown > .header
{
	font-size: 13px;
    padding: 4px 0;
    margin: 0 16px;
    color: #A4ACAF;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.select > .dropdown > .divider
{
	display: block;
	height: 1px;
	background: #EBF1F2;
}

.select > .dropdown > .item[data-selected]
{
	text-shadow: 0px 1px 0px rgba(0,0,0,0.14);
	background-color: #3594ba !important;
}

.select > .title .color,
.select > .dropdown > .item > .title .color
{
	width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #607D8B;
    display: inline-block;
	margin-right: 6px;
}

.select > .title .color.gray,
.select > .dropdown > .item > .title .color.gray
{
	background-color: #607D8B;
}

.select > .title .color.peterriver,
.select > .dropdown > .item > .title .color.peterriver
{
	background-color: #3498db;
}

.select > .title .color.green,
.select > .dropdown > .item > .title .color.green
{
	background-color: #35ba75;
}

.select > .title .color.orange,
.select > .dropdown > .item > .title .color.orange
{
	background-color: #f39c12;
}

.select > .dropdown > .item[data-selected] > .title,
.select > .dropdown > .item[data-selected] > .title > .subtitle
{
	color: #ecf0f1 !important;
}

.select > .dropdown > .item:hover
{
	background-color: #EBF1F2;
}

.select > .dropdown > .item:hover
{
	text-decoration: none !important;
}

.select > .dropdown > .item > span
{
	display: table-cell;
    vertical-align: middle;
}

.select > .dropdown > .item > .title
{
	padding-left: 8px;

	max-width: 0;

	text-overflow: ellipsis;
	white-space: nowrap;
    overflow: hidden;

    font-size: 13px;
}

.select > .dropdown > .item > .title > .subtitle
{
	white-space: normal;
    font-size: 11px;
    display: block;
    color: #8d9598;
}

.select > .dropdown > li > .item > .icon
{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px 16px;

    height: 16px;
    width: 16px;
}*/
