/*
 * @appointment UI Elements
 * @author      Victoria Shovkovych
 * @copyright   Copyright Computer Answers 2016
 * @link        http://www.computer-answers.com/
 * This code is copyrighted
 */

/* Checkbox */
.cbWrap {
    background: #ddd;
    width: 40px;
    height: 25px;
    border-radius: 25px;
    padding: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
	display: inline-block;
}

.cbWrap > span {
    display: block;
    width: 21px;
    height: 21px;
    background: #FFFFFF;
    border-radius: 26px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 1px 2px rgba(123, 123, 123, 0.33);
    transition: margin 0.2s ease-in-out;
}

.cbWrap:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: -15px;
    background: transparent;
    width: 40px;
    height: 25px;
    border-radius: 25px;
    z-index: 1;
    -webkit-transition: left 0.2s ease-in-out 0s, background 0.1s ease-in-out 0.1s;
    -moz-transition: left 0.2s ease-in-out 0s, background 0.1s ease-in-out 0.1s;
    transition: left 0.2s ease-in-out 0s, background 0.1s ease-in-out 0.1s;
}

input:checked + .cbWrap > span {
    margin-left: 15px;
}

input:checked + .cbWrap:before {
	background: #A2CE53;
	left: 0;
	-webkit-transition: background 0.1s ease-in-out, left 0.2s ease-in-out;
	-moz-transition: background 0.1s ease-in-out, left 0.2s ease-in-out;
	transition: background 0.1s ease-in-out, left 0.2s ease-in-out;
}

/* Radio */
.rbWrap > input[type="radio"] {
    opacity: 0;
    outline: none;
    z-index: 1;
}

.rdLbl {
    position: relative;
    padding-left: 5px;
    cursor: pointer;
}

.rdLbl:before {
	content: ' ';
	position: absolute;
	top: 1px;
	left: -20px;
	width: 12px;
	height: 12px;
	border: 1px solid #C1BDBD;
	border-radius: 50%;
}

.rdLbl:after {
    content: ' ';
    position: absolute;
    top: 4px;
    left: -11.5px;
    margin-left: -5.5px;
    width: 8px;
    height: 8px;
    background: #B7C3D2;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
}

.rbWrap > input[type="radio"]:checked + .rdLbl:after {
    opacity: 1;
    transform: scale(1);
}

.rbWrap > input[type="radio"] + .rdLbl:hover:after {
    background: #8AA7CC;
    opacity: 1;
    transform: scale(1);
}

/* Select */
.sWrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    position: relative;
	text-align: left;
	outline: none;
	z-index: 12;
}

.sWrap > ul, .sWrap > ul > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 200px;
    overflow: auto;
}

.sWrap > ul > li, .sWrap > ul > ul li {
    padding: 11px 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    color: #808694;
}

.sWrap > ul > li:last-child {
    border: none;
}

.sWrap > ul > li.active {
    background: #f7f8fa;
}

.sWrap > ul > li:hover {
    background: #F3F4F7;
}

.sWrap > ul > ul {
    overflow: visible;
    max-height: none;
}

.sWrap > ul > ul li.optLbl {
    font-weight: bold;
    cursor: default;
    background: #fafafa;
	color: #adadad;
}

.sWrap > ul > ul li:not(.optLbl) {
    padding-left: 40px;
}

.sWrap > ul > li.active:before {
    content: ' ';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 15px;
    height: 15px;
    border-left: 4px solid #7EAB28;
    border-bottom: 6px solid #7EAB28;
    -webkit-transform: skew(-30deg) scale(0.2) rotateZ(-62deg);
    -moz-transform: skew(-30deg) scale(0.2) rotateZ(-62deg);
    transform: skew(-30deg) scale(0.4) rotateZ(-62deg);
}

.sWrap > div {
    width: 100%;
    height: 46px;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px 30px 12px 15px;
    color: #5E6573;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sWrap > div:after {
    content: ' ';
    width: 0;
    height: 0;
    position: absolute;
    top: 20px;
    right: 12px;
    border: 6px solid transparent;
    border-top-color: #A5A5A5;
    border-bottom: 0;
}

.sWrap > div + ul {
    position: absolute;
    top: 46px;
    left: -1px;
    width: calc(100% + 2px);
    border: 1px solid #ddd;
    border-radius: 0 0 3px 3px;
    display: none; 
	background: #fff;
	z-index: 20;
    box-shadow: 1px 1px 1px rgba(114, 119, 128, 0.1);
}

.sWrap > div + ul > li.active:before {
    display: none;
}

/* Search form */
.sfWrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    position: relative;
	text-align: left;
	line-height: 14px;
	outline: none;
}

.sfWrap > div {
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 30px 10px 10px;
    color: #5E6573;
    border-bottom: 1px solid #ddd;
}

.sfWrap > div:after {
    content: ' ';
    display: block;
    clear: both;
}

.sfWrap > span {
    max-height: 200px;
    overflow: auto;	
	display: none;
	position: absolute;
    width: calc(100% + 2px);
    background: #fff;
    border: 1px solid #ddd;
    left: -1px;
    border-top: none;
    border-radius: 0 0 3px 3px;
	z-index: 3;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.sfWrap > div:before {
    content: ' ';
    width: 0;
    height: 0;
    position: absolute;
    top: 20px;
    right: 15px;
    border: 4px solid transparent;
    border-top-color: #A5A5A5;
    border-bottom: 0;
}

.sfWrap > span > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sfWrap > span > ul > li {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    color: #808694;
}

.sfWrap > span  > ul > li:last-child {
    border: none;
}

.sfWrap > span  > ul > li:hover {
    background: #F3F4F7;
}

.sfWrap > div > span {
    display: block;
    background: #A2CE53;
    color: #fff;
    padding: 3px 21px 3px 10px;
    margin: 0 3px 3px 0;
    float: left;
    border-radius: 3px;
    position: relative;
}

.sfWrap > div > span > i {
    position: absolute;
    top: 6px;
    right: 8px;
    display: block;
    width: 10px;
    height: 10px;
    padding-right: 3px;
}

.sfWrap > div > span > i:before {
    content: ' ';
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sfWrap > div > span > i:after {
    content: ' ';
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sfWrap > div > span > i:hover:before, .sfWrap > div > span > i:hover:after {
    opacity: 0.6;
}

.sfWrap > div > input {
    display: inline-block;
    background: #fff;
    color: #808694;
    padding: 3px 10px;
    border: none;
    width: 150px;
    outline: none;
    float: left;
}

.sfWrap > div > span > a {
    color: #fff;
    text-decoration: none;
}

.sfWrap > div > span > a:hover {
    opacity: 0.7;
}

/* Modals */
.mdlWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000078;
    display: none;
    z-index: 9999999;
    overflow: auto;
    text-align: left;
}

.mdl {
    width:  500px;
    max-width: -webkit-calc(100% - 20px);
    max-width: -moz-calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-height:  200px;
    position: relative;
    background-color:  #fff;
    color: #000;
    box-shadow: 0 7px 8px -4px rgba(0,0,0,.2), 0 13px 19px 2px rgba(0,0,0,.14), 0 5px 24px 4px rgba(0,0,0,.12);
    visibility: hidden;
    opacity: 0;
    border-radius: 2px;
    margin: 20px auto 60px;
    /* transition: opacity 0.3s ease-in-out 0s, margin-top 0.3s ease-in-out 0s, visibility 0s ease 0.3s; */
    transform: rotateX(-90deg);
    transition: 0.3s;
}

.mdl.show {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
	transition: 0.3s;
	transform: rotateX(0deg);
    /* transition: visibility 0s ease 0s, opacity 0.3s ease-in-out 0s, margin-top 0.3s ease-in-out 0s; */
}

.mdlTitle {
    min-height: 55px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 25px 45px 25px 25px;
    color: #299CCE;
    text-align: center;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    font-size: 18px;
    text-transform: uppercase;
}

.mdl > .mdlTitle > .mdlClose {
    position: absolute;
    color: #fff;
    top: 0px;
    right: -50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    font-size: 25px;
	float: right;
}

.mdl > .mdlTitle > .mdlClose:hover {
    opacity: 0.5;
}

.mdlBody {
    padding: 15px;
    min-height: 100px;
}

.mdlFooter {
    text-align: right;
    padding: 15px 25px;
    background-color: #F7F7F7;
    font-size: 16px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.mdlFooter > .btn {
    padding: 5px 20px;
    height: 48px;
}

/* Alerts */

.alr {
    padding: 25px 35px;
    font-size: 1rem;
    border-radius: 4px;
    background: #f1f1f1;
    color: #7F8C8D;
    position: fixed;
    top: 90px;
    right: 10px;
    z-index: 99999999999;
    box-shadow: 0 7px 8px -4px rgba(0,0,0,.2), 0 13px 19px 2px rgba(0,0,0,.14), 0 5px 24px 4px rgba(0,0,0,.12);
}

.alrClose {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.alrClose:hover {
    opacity: 0.7;
}

.alrSuccess {
    background: #23C19A;
    color: #fff;
}

.alrDanger {
    background: #E45858;
    color: #fff;
}

.alrWarning {
    background: #E68F42;
    color: #fff;
}

.alrInfo {
    background: #44ABD2;
    color: #fff;
}

/* Tabs */
.tabs > ul {
    list-style: none;
    padding: 20px 20px 0;
    margin: 0;
    border-bottom: 1px solid #EEF0F3;
	position: relative;
	background: #F7F8FA;
}

.tabs > ul:after {
	content: ' ';
	display: block;
	clear: both;
}

.tabs > ul > li {
    float: left;
    background: #fff;
    padding: 10px;
    border-radius: 4px 4px 0 0;
    margin-right: 10px;
    color: #686a76;
    cursor: pointer;
    position: relative;
    box-shadow: 0px -1px 1px rgba(0,0,0,0.1), 3px 0 2px rgba(0,0,0,0.05);
	bottom: -1px;
}

.tabs > ul > li:hover {
	color: #36b1e6;
}

.tabs > ul > li.active {
    color: #36b1e6;
	bottom: -2px;
    position: relative;
}

.tabs > .tab {
	display: none;
}

.tabs > ul > li > span, .tabs > ul > li.tabsAdd > ul > li > span {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    background: #d04646;
    border-radius: 3px;
    color: #fcfdfe;
    padding: 0px 5px;
    line-height: 16px;
}

.tabs > ul > li.tabsAdd > span {
    float: left;
    background: #7a8fa7;
    padding: 10px 18px;
    border-radius: 4px 4px 0 0;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: initial;
    right: initial;
    line-height: 24px;
    font-size: 18px;
}

.tabs > ul > li.tabsAdd {
    background: none;
    padding: 0;
}

.tabs > ul > li.tabsAdd > ul {
    position: absolute;
    top: 44px;
    right: 0;
    background: #7a8fa7;
    border-radius: 4px 0 4px 4px;
    padding: 20px 0px;
    list-style: none;
	display: none;
	z-index: 99;
}

.tabs > ul > li.tabsAdd > ul > li {
    display: block;
    padding: 5px 37px;
	position: relative;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

.tabs > ul > li.tabsAdd > ul > li:hover {
    background: #6b7e95;
}

/* Photo View */
.photoWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999999;
    background: rgba(45, 45, 45, 0.64);
	cursor: pointer;
}

.photoWrap > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #FFF;
    font-size: 24px;
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: opoacity 0.2s ease-in-out;
    -moz-transition: opoacity 0.2s ease-in-out;
    transition: opoacity 0.2s ease-in-out;
}

.photoWrap > span:hover {
    opacity: 1;
}

.photoWrap > img {
    max-width: calc(100% - 100px);
    max-height: calc(100% - 100px);
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* hnts */

.hnt {
    position: relative;
    display: inline-block;
}

.hnt:after {
    max-width: 200px;
    min-width: 75px;
    text-align: center;
    content: attr(data-title);
    position: absolute;
    z-index: 1;
    background: #000000d6;
    color: #fff;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    text-transform: none;
    border-radius: 3px;
    font-weight: normal;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 1px;
    line-height: 14px;
    padding: 10px;
	writing-mode: initial;
}

.hnt:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hnt:hover:before, .hnt:hover:after {
	transition-delay: 20s;
    visibility: visible;
    opacity: 1;
}

.hnt.hnts:hover:before, .hnt.hnts:hover:after {
	transition-delay: 0.3s;
    visibility: visible;
    opacity: 1;
}

.hnt.hntRight:after  {
	left: -webkit-calc(100% + 10x);
	left: -moz-calc(100% + 10x);
	left: calc(100% + 10px);
	top: 0px;
	margin-left: 15px;
}

.hnt.hntRight:before {
    top: 8px;
    left: -webkit-calc(100% + 5x);
    left: -moz-calc(100% + 5x);
    left: calc(100% + 5px);
    border-right-color: #000000d6;
    border-left: 0;
    margin-left: 15px;
}

.hnt.hntRight:hover:after, .hnt.hntRight:hover:before {
	margin-left: 1px;
}

.hnt.hntLeft:after  {
	left: -10px;
	top: 0px;
	margin-left: -14px;
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}

.hnt.hntLeft:before {
    left: -10px;
	top: 8px;
	margin-left: -14px;
    border-left-color: #000000d6;
    border-right: 0;
}

.hnt.hntLeft:hover:after, .hnt.hntLeft:hover:before {
	margin-left: 1px;
}

.hnt.hntBottom:after  {
	left: 50%;
    bottom: -5px;
    margin-bottom: -9px;
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

.hnt.hntBottom:before {
    left: 50%;
    bottom: -5px;
    margin-bottom: -9px;
    border-bottom-color: #000000d6;
    border-top: 0;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.hnt.hntBottom:hover:after, .hnt.hntBottom:hover:before {
	margin-bottom: 1px;
}

.hnt.hntTop:after  {
	left: 50%;
    top: -5px;
    margin-top: -9px;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}

.hnt.hntTop:before {
    left: 50%;
    top: -5px;
    margin-top: -9px;
    border-top-color: #000000d6;
    border-bottom: 0;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.hnt.hntTop:hover:after, .hnt.hntTop:hover:before {
	margin-top: 1px;
}

/* Charts */
.point {
	cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.point:hover {
    r: 10;
    stroke-width: 5;
}

.tTip {
    opacity: 0;
	visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out 0s, visibility 0s ease-in-out 0s;
    -moz-transition: opacity 0.3s ease-in-out 0s, visibility 0s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, visibility 0s ease-in-out 0s;
}

.tTip > rect, .tTip > polygon {
    opacity: 0.8;
    fill: #2b2b2b;
}

.point:hover + .tTip {
    opacity: 1;
	visibility: visible;
	-webkit-transition: visibility 0s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: visibility 0s ease-in-out, opacity 0.3s ease-in-out;
    transition: visibility 0s ease-in-out, opacity 0.3s ease-in-out;
}

/* Calendar */
.calendar {
    width: 350px;
    max-width: 100%;
    box-shadow: 0px 0px 4px #c3c3c3;
    border-radius: 3px;
	background: #fff;
}

.calendar > .calHeader {
    background: #2196f3;
    padding: 20px;
}

input[name="year"] {
    width: 60px;
    background: #fff;
    border: none;
    padding: 5px 10px;
    color: #2196f3;
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 3px;
}

.calArrow {
    width: 10%;
    display: inline-block;
    text-align: left;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.calArrow:last-child {
    text-align: right;
}

.calContent {
    padding: 20px;
}

.calWeek {
    display: flex;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #6196c3;
    margin: 10px 0 15px;
}

.calWeek > span {
    flex: 1;
    padding: 10px 2px;
}

.calDays:after {
    content: ' ';
    display: block;
    clear: both;
}

.calDays > span {
   width: 14.286%;
    display: block;
    float: left;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #6f7b84;
    padding: 10px 0;
    cursor: pointer;
}

.calDays > span:first-child {
    height: 10px;
}

.calDays > span:hover,
.calDays > span.active {
    background: #2196f3;
    color: #fff;
}

.calDays > span:first-child:hover {
    background: transparent;
}

.calCur {
    width: 80%;
    display: block;
    float: left;
    line-height: 30px;
    color: #fff;
    font-size: 15px;
}

.calMonth {
    margin-right: 7px;
    position: relative;
    cursor: pointer;
}

.calMonth:after {
    content: ',';
}

.calMonth > span {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2196f3;
    border: 1px solid #fff;
    border-bottom: 0;
    display: block;
    width: 250px;
    margin-top: 10px;
    box-shadow: 0 0 4px rgba(58, 58, 58, 0.35);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.calMonth.active > span {
    display: block;
}

.calMonth > span > span {
    width: 33.3%;
    display: block;
    float: left;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #ddd;
    padding: 2px 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.calMonth > span > span:nth-child(3n) {
    border-right: 0;
}

.calMonth > span > span.active,
.calMonth > span > span:hover {
    background: #58b6ff;
}

.calYear {
    cursor: pointer;
}

.calMonth > i {
    font-style: normal;
}

/* Transfer */
.transfer > .trW50 {
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: calc(50% - 10px);
    margin-right: 10px;
    float: left;
	height: 250px;
	border: 1px solid #ddd;
}

.transfer > .trW50.stTo {
    margin-right: 0px;
    margin-left: 10px;
	max-height: 250px;
	overflow: auto;
}

.transfer > .trW50 > input {
	height: 40px;
	border: none;
	border-bottom: 1px solid #ddd;
	width: 100%;
	padding: 5px 20px;
	color: #b2b2b2;
}

.transfer > .trW50 > .searchItems {
	max-height: 210px;
	overflow: auto;
}

.trItem > input {
    float: left;
    width: 50px;
    margin-right: 10px;
    line-height: 29px;
    padding: 0 5px;
    border: 1px solid #ddd;
    color: #797979;
}

.trItem {
    text-align: left;
    padding: 10px 80px 10px 20px;
    color: #9a9a9a;
    font-size: 13px;
    border-bottom: 1px solid #e6e6e6;
    line-height: 16px;
    position: relative;
	min-height: 52px;
}

.trItem > .trPrice {
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 16px;
    font-weight: bold;
    color: #93b4c1;
    font-size: 14px;
}

.trItem:hover {
    background: #f7f7f7;
    cursor: pointer;
}

body.dragging, body.dragging * {
  cursor: move !important;
}

.dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}

.userList ol li.placeholder {
  position: relative;
}
.userList ol li.placeholder:before {
  position: absolute;
}

.userList ol > li {
    display: block;
    padding: 10px 20px;
    color: #0088cc;
    background: #fff;
	border: 1px solid #e4e7ec;
    margin: 5px 0;
}

.userList ol li .uMore {
    display: block;
    float: right;
}

.userList ol li .uMore > ul li {
    padding: 0;
}
.userList > ol > li {
    margin: 0;
    border: 0px;
    border-bottom: 1px solid #e4e7ec;
}
/* .userList > ol > li ol {
    margin: 10px 0;
} */
.userList ol li:nth-child(even) {
    background: #f7f8fa;
}

.userList ol li a {
    text-decoration: none;
}

.userList ol li.placeholder {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}

.userList ol li.placeholder:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    margin-top: -5px;
    left: -5px;
    top: -4px;
    border: 5px solid transparent;
    border-left-color: red;
    border-right: none;
}

.userList ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.hntJS-hint {
    position: absolute;
    max-width: 200px;
    background: rgba(86, 86, 86, 0.72);
    color: #fff;
    padding: 5px 10px;
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    transform: translate(0, -100%);
    margin-top: -5px;
}

.hntJS-hint:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    left: 50%;
    bottom: -5px;
    margin-top: -9px;
    border-top-color: rgba(86, 86, 86, 0.72);
    border-bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

/* Color picker */

.color-picker:after {
    content: '';
    display: block;
    clear: both;
}

.color-picker>span {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    float: left;
    cursor: pointer;
    text-align: center;
}

.color-picker>span.active:after {
    content: '\2713';
    display: inline-block;
    color: #868686;
}

/* Color picker */