.advanced-filter {
  border: 1px solid #969696;
  box-shadow: 1px 1px 3px rgba(66, 66, 66, 0.2);
  box-sizing: border-box;
  border-radius: 2px;
  margin-bottom: 20px;
}

.advanced-filter * {
  box-sizing: border-box;
}

.advanced-filter .filter-title,
.advanced-filter .filter-content {
  margin-left: 20px;
  margin-right: 20px;
}

.advanced-filter .filter-title {
  height: 51px;
  border-bottom: 1px solid transparent;
  line-height: 50px;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}

.advanced-filter .filter-title .toggle-collapse {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  transition: border-color 0.2s;
  background-color: inherit;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.advanced-filter .filter-title .toggle-collapse:after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 20%;
  transition: border-color 0.2s, transform 0.2s;
}

.advanced-filter .filter-footer {
  text-align: right;
}

.advanced-filter .filter-footer .mc-btn {
  margin-left: 10px;
}

.advanced-filter.expanded .filter-title {
  border-bottom-color: #ddd;
}

.advanced-filter.expanded .filter-title .toggle-collapse {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.advanced-filter.expanded .filter-title+.filter-content,
.advanced-filter.expanded .filter-title~.filter-footer {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  display: block;
}

.advanced-filter.expanded .filter-title+.filter-content.flex-wide,
.advanced-filter.expanded .filter-title~.filter-footer.flex-wide {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.advanced-filter .filter-content {
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.advanced-filter .filter-content .filters-grid .row {
  margin-bottom: 20px;
  position: relative;
}

.advanced-filter .filter-content .filters-grid .row.horizontal {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item {
  min-width: 22%;
  max-width: 22%;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item.x2 {
  min-width: 48%;
  max-width: 48%;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item.x3 {
  min-width: 32%;
  max-width: 32%;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item label {
  margin-bottom: 4px;
  display: block;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item input,
.advanced-filter .filter-content .filters-grid .row.horizontal .item .gui-c-select {
  min-width: auto;
  width: 100%;
}

.advanced-filter .filter-content .filters-grid .row.horizontal .item .block {
  display: block;
}

.advanced-filter .filter-content .filters-grid .row:last-child {
  margin-bottom: 0;
}

.advanced-filter .filter-content .filters-grid .row:not(.horizontal) .item {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 12px;
  margin-right: 0;
}

.advanced-filter .filter-content .filters-grid .row:not(.horizontal) .item>label {
  width: 130px;
  line-height: 30px;
}

.advanced-filter .filter-content .filters-grid .row:not(.horizontal) .item .field {
  -ms-flex: 1 auto;
  flex: 1 auto;
}

.advanced-filter .filter-content .filters-grid .row:not(.horizontal):last-child {
  margin-bottom: 0;
}

.advanced-filter .filter-content .filters-grid .row .filter-part-title {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  text-align: center;
}

.advanced-filter .filter-content .filters-grid .row .filter-part-title .bg {
  display: inline-block;
  padding: 0 10px;
  background-color: #fff;
  font-weight: bold;
  font-size: 13px;
}

.advanced-filter .filter-footer {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  display: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.advanced-filter .csv-link {
  position: relative;
  padding-left: 28px;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.advanced-filter .csv-link i {
  position: absolute;
  font-size: 25px;
  top: 3px;
  left: 0;
}

.advanced-filter .csv-link .csv-title,
.advanced-filter .csv-link .count {
  display: block;
  text-align: left;
}

.advanced-filter .csv-link .csv-title {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
}

.advanced-filter .csv-link .count {
  font-size: 11px;
  line-height: 15px;
  color: #424242;
}

.advanced-filter .csv-link:hover {
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.advanced-filter.type-2 .filter-title,
.advanced-filter.type-2 .filter-content {
  margin-left: 0;
  margin-right: 0;
}

.advanced-filter.type-2 .filter-title {
  padding-left: 20px;
  padding-right: 20px;
}

.advanced-filter.type-2 .filter-title .toggle-collapse {
  right: 10px;
}

.advanced-filter.type-2 .filter-content .row {
  padding-left: 20px;
  padding-right: 20px;
}

.advanced-filter.type-2 .filter-content .sep {
  padding-bottom: 19px;
  border-bottom: 1px solid #dfdfdf;
}

.service-links {
  position: relative;
}

.mc-advanced-filter-dropdown * {
  box-sizing: ;
}

.mc-advanced-filter-dropdown .tab {
  height: 40px;
  position: relative;
  border: 1px solid #ddd;
  color: #969696;
  background-image: none;
  background-color: #fff;
  border-radius: 2px;
  display: block;
  cursor: pointer;
}

.mc-advanced-filter-dropdown .tab i {
  font-size: 18px;
  margin-right: 10px;
}

.mc-advanced-filter-dropdown .tab .arr {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  transition: border-color 0.2s;
  background-color: inherit;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  right: 10px;
}

.mc-advanced-filter-dropdown .tab .arr:after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 20%;
  transition: border-color 0.2s, transform 0.2s;
}

.mc-advanced-filter-dropdown .tab .arr:after {
  border-color: #969696;
}

.mc-advanced-filter-dropdown .tab .counter-wrapper {
  padding: 11px 30px 11px 20px;
}

.mc-advanced-filter-dropdown .tab .counter-wrapper>* {
  display: inline-block;
  vertical-align: middle;
}

.mc-advanced-filter-dropdown .tab .number {
  font-size: 12px;
  line-height: 18px;
  margin-right: 10px;
}

.mc-advanced-filter-dropdown .tab .changes-exist {
  color: #424242;
}

.mc-advanced-filter-dropdown .filter-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 39px;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 2;
}

.mc-advanced-filter-dropdown .filter-container .filter-wrapper {
  background-color: #fff;
}

.mc-advanced-filter-dropdown .filter-container .filter-wrapper .dropdown.mc-form-field {
  height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.mc-advanced-filter-dropdown .filter-container .filter-wrapper .dropdown.mc-form-field .current-value {
  top: 6px;
  line-height: 18px;
}

.mc-advanced-filter-dropdown .filter-container .filter-wrapper .dropdown.mc-form-field input {
  height: 20px;
  line-height: 20px;
  font-size: 12px;
}

.mc-advanced-filter-dropdown .advanced-filter {
  box-shadow: 0px 3px 3px rgba(70, 70, 70, 0.2);
}

.mc-advanced-filter-dropdown .advanced-filter .filter-title {
  cursor: default;
}

.mc-advanced-filter-dropdown.opened .tab {
  border-color: #969696 #969696 transparent #969696;
  color: #424242;
}

.mc-advanced-filter-dropdown.opened .tab .arr {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 5px;
}

.mc-advanced-filter-dropdown.opened .tab .arr:after {
  border-color: #424242;
}

.mc-advanced-filter-dropdown.opened .filter-container {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  visibility: visible;
}

.mc-advanced-filter-dropdown.opened .advanced-filter {
  border-radius: 2px 0 2px 2px;
}

.mc-advanced-filter-dropdown.opened .advanced-filter .filters-grid .row.horizontal .item {
  margin-left: 0;
}

.mc-btn {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: top;
  border-radius: 2px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  transition: background-color 0.2s, padding-left 0.2s, padding-right 0.2s, text-shadow 0.2s;
  border: none;
  /* BTNS SIZE */
  /* BTNS COLORS */
  /*	BTNS SPECIAL */
  /*&.btn-spec-fileinput
		position relative
		cursor pointer
		display inline-block
		vertical-align top

		input[type=file]
			position absolute
			top 0
			right 0
			bottom 0
			left 0
			width 100%
			height 100%
			cursor: pointer
			z-index 1
			opacity 0*/
}

.mc-btn * {
  box-sizing: border-box;
}

.mc-btn i {
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.mc-btn.btn-overlayed {
  background-image: none;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.mc-btn.btn-overlayed:active {
  box-shadow: none;
}

.mc-btn.btn-icon-left i {
  margin-right: 7px;
}

.mc-btn.btn-icon-right i {
  margin-left: 7px;
}

.mc-btn:hover {
  background-image: none;
  color: #fff;
}

.mc-btn:active {
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  background-image: none;
}

.mc-btn:disabled,
.mc-btn.disabled,
.mc-btn.inactive {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  background-image: none;
}

.mc-btn:disabled:active,
.mc-btn.disabled:active,
.mc-btn.inactive:active {
  box-shadow: none;
}

.mc-btn.btn-smallest {
  min-height: 23px;
  height: auto;
  padding: 0px 10px;
  font-size: 11px;
  line-height: 21px;
}

.mc-btn.btn-smallest i {
  line-height: 21px;
}

.mc-btn.btn-small {
  min-height: 32px;
  height: auto;
  padding: 7px 20px;
  font-size: 12px;
  line-height: 16px;
}

.mc-btn.btn-small i {
  font-size: 17px;
}

.mc-btn.btn-small:active {
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
}

.mc-btn.btn-middle {
  min-height: 38px;
  height: auto;
  font-size: 14px;
  padding: 9px 20px;
  line-height: 20px;
}

.mc-btn.btn-middle i {
  font-size: 19px;
}

.mc-btn.btn-middle:active {
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
}

.mc-btn.btn-big {
  min-height: 50px;
  height: auto;
  font-size: 17px;
  padding: 12px 20px;
  line-height: 26px;
}

.mc-btn.btn-big.btn-wide {
  padding: 12px 10px;
}

.mc-btn.btn-big i {
  font-size: 22px;
}

.mc-btn.btn-big:active {
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
}

.mc-btn.btn-major {
  background-color: #6cb758;
}

.mc-btn.btn-major:active {
  background-color: #66ad53;
}

.mc-btn.btn-major.btn-overlayed {
  background-color: rgba(108, 183, 88, 0.8);
}

.mc-btn.btn-major.btn-overlayed:active,
.mc-btn.btn-major.btn-overlayed:hover {
  background-color: #6cb758;
}

.mc-btn.btn-casual {
  background-color: #5d7bd0;
}

.mc-btn.btn-casual:active {
  background-color: #5874c5;
}

.mc-btn.btn-casual.btn-overlayed {
  background-color: rgba(93, 123, 208, 0.8);
}

.mc-btn.btn-casual.btn-overlayed:active,
.mc-btn.btn-casual.btn-overlayed:hover {
  background-color: #5d7bd0;
}

.mc-btn.btn-critical {
  background-color: #d35853;
}

.mc-btn.btn-critical:active {
  background-color: #c8534e;
}

.mc-btn.btn-critical.btn-overlayed {
  background-color: rgba(211, 88, 83, 0.8);
}

.mc-btn.btn-critical.btn-overlayed:active,
.mc-btn.btn-critical.btn-overlayed:hover {
  background-color: #d35853;
}

.mc-btn.btn-yellow {
  background-color: #f3c045;
}

.mc-btn.btn-yellow:active {
  background-color: #e6b641;
}

.mc-btn.btn-yellow.btn-overlayed {
  background-color: rgba(243, 192, 69, 0.8);
}

.mc-btn.btn-yellow.btn-overlayed:active,
.mc-btn.btn-yellow.btn-overlayed:hover {
  background-color: #f3c045;
}

.mc-btn.btn-minor {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #969696;
}

.mc-btn.btn-minor:active {
  background-color: #f2f2f2;
  text-shadow: 0 0 0 transparent;
}

.mc-btn.btn-minor.btn-overlayed {
  background-color: rgba(255, 255, 255, 0.8);
}

.mc-btn.btn-minor.btn-overlayed:active,
.mc-btn.btn-minor.btn-overlayed:hover {
  background-color: #fff;
}

.mc-btn.btn-dark-blue {
  background-color: #21629e;
}

.mc-btn.btn-dark-blue:active {
  background-color: #1f5d96;
}

.mc-btn.btn-dark-blue.btn-overlayed {
  background-color: rgba(33, 98, 158, 0.8);
}

.mc-btn.btn-dark-blue.btn-overlayed:active,
.mc-btn.btn-dark-blue.btn-overlayed:hover {
  background-color: #21629e;
}

.mc-btn.btn-cyan {
  background-color: #6fa9bf;
}

.mc-btn.btn-cyan:active {
  background-color: #69a0b5;
}

.mc-btn.btn-cyan.btn-overlayed {
  background-color: rgba(111, 169, 191, 0.8);
}

.mc-btn.btn-cyan.btn-overlayed:active,
.mc-btn.btn-cyan.btn-overlayed:hover {
  background-color: #6fa9bf;
}

.mc-btn.btn-gold {
  background-color: #a09966;
}

.mc-btn.btn-gold:active {
  background-color: #989160;
}

.mc-btn.btn-gold.btn-overlayed {
  background-color: rgba(160, 153, 102, 0.8);
}

.mc-btn.btn-gold.btn-overlayed:active,
.mc-btn.btn-gold.btn-overlayed:hover {
  background-color: #a09966;
}

.mc-btn.btn-spec-big {
  min-width: 350px;
  height: 78px;
  line-height: 74px;
  font-size: 25px;
  font-weight: normal;
}

.mc-btn.btn-spec-round {
  border-radius: 50%;
  height: 44px;
  width: 44px;
  overflow: hidden;
}

.mc-btn.btn-spec-round i {
  font-size: 22px;
}

.mc-btn.btn-spec-round .icon-mc_other_retry {
  transition: transform 0.4s ease-out;
}

.mc-btn.btn-spec-round:active .icon-mc_other_retry {
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mc-btn.btn-spec-round .icon-mc_other_takesnapshot {
  display: inline-block;
  transition: transform 0.2s ease-out;
}

.mc-btn.btn-spec-round:active .icon-mc_other_takesnapshot {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.mc-btn.btn-spec-blog {
  height: 44px;
  width: 44px;
  color: #424242;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.mc-btn.btn-spec-blog i {
  font-size: 20px;
}

.mc-btn.btn-wide {
  width: 100%;
}

.btn-spec-fileinput {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}

.btn-spec-fileinput input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.mc-radiobutton {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}

.mc-radiobutton * {
  box-sizing: border-box;
}

.mc-radiobutton .radio-btn-wrap {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  text-align: center;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.2s;
}

.mc-radiobutton .radio-btn-wrap .radio-btn-dot {
  border-radius: 50%;
  background-color: #424242;
  position: absolute;
  display: inline-block;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  margin: auto;
  transition: transform 0.15s, background-color 0.2s;
  -ms-transform: scale(0);
  transform: scale(0);
}

.mc-radiobutton input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.mc-radiobutton input[type=radio]:checked+.radio-btn-wrap .radio-btn-dot {
  -ms-transform: scale(1);
  transform: scale(1);
}

.mc-radiobutton input[type=radio]:hover+.radio-btn-wrap {
  background-color: #f2f2f2;
}

.mc-radiobutton input[type=radio]:disabled+.radio-btn-wrap {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.mc-radiobutton input[type=radio]:disabled:hover+.radio-btn-wrap {
  background-color: #fff;
}

.mc-checkbox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}

.mc-checkbox * {
  box-sizing: border-box;
}

.mc-checkbox .checkbox-wrap {
  width: 17px;
  height: 17px;
  border-radius: 1px;
  border: 1px solid #ddd;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.2s;
}

.mc-checkbox .check-wrap {
  position: relative;
  z-index: 1;
  top: 4px;
  left: 0;
  transition: opacity 0.2s, transform 0.2s;
  -ms-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.mc-checkbox .check-wrap .check-1,
.mc-checkbox .check-wrap .check-2 {
  position: absolute;
  border-bottom: 2px solid #424242;
  display: inline-block;
  border-radius: 1px;
}

.mc-checkbox .check-wrap .check-1 {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 1px;
  width: 0;
  width: 8px;
}

.mc-checkbox .check-wrap .check-2 {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 0;
  top: -1px;
  left: 5px;
  width: 15px;
}

.mc-checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.mc-checkbox input[type=checkbox]:hover+.checkbox-wrap {
  background-color: #f2f2f2;
}

.mc-checkbox input[type=checkbox]:checked+.checkbox-wrap .check-wrap {
  -ms-transform: rotateX(0);
  transform: rotateX(0);
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-checkbox input[type=checkbox]:checked~.checkbox-caption {
  font-weight: bold;
}

.mc-checkbox input[type=checkbox]:disabled+.checkbox-wrap {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.mc-checkbox input[type=checkbox]:disabled:hover+.checkbox-wrap {
  background-color: #fff;
}

.mc-checkbox .checkbox-caption {
  display: inline-block;
  vertical-align: middle;
}

.mc-checkbox.nowrap {
  white-space: nowrap;
}

.mc-checkbox.nowrap .checkbox-caption {
  margin-left: 10px;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled {
  cursor: default;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  border-width: 0;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap .check-wrap {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  position: static;
  height: 100%;
  -ms-transform: none;
  transform: none;
  display: block;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap .check-wrap .check-1,
.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap .check-wrap .check-2 {
  position: absolute;
  width: 8px;
  top: 8px;
  left: auto;
  -ms-transform: none;
  transform: none;
  border-color: #eee;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap .check-wrap .check-1 {
  left: 0;
}

.mc-checkbox.disabled-style-1 input[type=checkbox]:disabled+.checkbox-wrap .check-wrap .check-2 {
  right: 0;
}

.mc-slide-switcher {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}

.mc-slide-switcher * {
  box-sizing: border-box;
}

.mc-slide-switcher input[type=checkbox] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.mc-slide-switcher input[type=checkbox]:checked+.switcher-fill .switcher {
  margin-left: 21px;
}

.mc-slide-switcher.inverted .switcher-fill .switcher {
  margin-left: 21px;
}

.mc-slide-switcher.inverted input[type=checkbox]:checked+.switcher-fill .switcher {
  margin-left: 0;
}

.mc-slide-switcher.sl-green input[type=checkbox]:checked+.switcher-fill {
  background-color: #6cb758;
}

.mc-slide-switcher.sl-pink input[type=checkbox]:checked+.switcher-fill {
  background-color: #ed72d5;
}

.mc-slide-switcher.sl-pink-l input[type=checkbox]:checked+.switcher-fill {
  background-color: #d5908d;
}

.mc-slide-switcher.sl-blue input[type=checkbox]:checked+.switcher-fill {
  background-color: #5d7bd0;
}

.mc-slide-switcher.sl-yellow input[type=checkbox]:checked+.switcher-fill {
  background-color: #ffe462;
}

.mc-slide-switcher.sl-yellow-l input[type=checkbox]:checked+.switcher-fill {
  background-color: #fae281;
}

.mc-slide-switcher.sl-cyan input[type=checkbox]:checked+.switcher-fill {
  background-color: #629eb7;
}

.mc-slide-switcher.sl-cyan-l input[type=checkbox]:checked+.switcher-fill {
  background-color: #9bd3f9;
}

.mc-slide-switcher.sl-dark input[type=checkbox]:checked+.switcher-fill {
  background-color: #424242;
}

.mc-slide-switcher.sl-dark-l input[type=checkbox]:checked+.switcher-fill {
  background-color: #d7d7d7;
}

.mc-slide-switcher.sl-red input[type=checkbox]:checked+.switcher-fill {
  background-color: #d35853;
}

.mc-slide-switcher.sl-turquoise input[type=checkbox]:checked+.switcher-fill {
  background-color: #2BCCCC;
}


.mc-slide-switcher .switcher-fill {
  position: relative;
  width: 41px;
  height: 20px;
  background-color: #969696;
  border-radius: 10px;
  padding: 1px;
  transition: background-color 0.2s;
}

.mc-slide-switcher .switcher-fill .switcher {
  height: 18px;
  width: 18px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  transition: margin 0.2s;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
}

.mc-slide-switcher.with-labels {
  padding-right: 25px;
  padding-left: 25px;
}

.mc-slide-switcher.with-labels .label {
  position: absolute;
  line-height: 20px;
  top: 0;
  font-size: 12px;
  font-weight: bold;
  color: #969696;
}

.mc-slide-switcher.with-labels .label.on {
  right: 0;
  color: #6cb758;
}

.mc-slide-switcher.with-labels .label.off {
  left: 0;
}

.mc-slide-switcher.small .switcher-fill {
  position: relative;
  width: 24px;
  height: 14px;
  background-color: #969696;
  border-radius: 10px;
  padding: 1px;
  transition: background-color 0.2s;
}

.mc-slide-switcher.small .switcher-fill .switcher {
  height: 12px;
  width: 12px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  transition: margin 0.2s;
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.16);
  margin-left: 0px;
}

.mc-slide-switcher.small input[type=checkbox]:checked+.switcher-fill .switcher {
  margin-left: 10px;
}

/* MIXIN FOR FORM FIELD STYLE */
/* MIXIN FOR FORM FIELD FOCUSED STYLE */
textarea.mc-form-field {
  position: relative;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: border-color 0.2s;
  color: #424242;
  padding: 9px 10px;
  resize: none;
  min-width: 300px;
  min-height: 50px;
  overflow: hidden;
}

textarea.mc-form-field * {
  box-sizing: border-box;
}

textarea.mc-form-field.error {
  border-color: #d35853;
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

textarea.mc-form-field.error:hover {
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

textarea.mc-form-field.success {
  border-color: #6cb758;
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

textarea.mc-form-field.success:hover {
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

textarea.mc-form-field.disabled,
textarea.mc-form-field.inactive,
textarea.mc-form-field:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

textarea.mc-form-field:hover {
  box-shadow: 0 0 5px 0 rgba(221, 221, 221, 0.4);
}

textarea.mc-form-field.large {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}

textarea.mc-form-field.size-short {
  min-width: auto;
  width: 90px;
}

textarea.mc-form-field.size-stretch {
  width: 100%;
}

textarea.mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

textarea.mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon {
  border-left-color: #969696;
}

textarea.mc-form-field.not-empty {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

textarea.mc-form-field.not-empty .field-icon {
  border-left-color: #969696;
}

textarea.mc-form-field::-webkit-input-placeholder {
  color: #969696;
}

textarea.mc-form-field:-moz-placeholder {
  color: #969696;
}

textarea.mc-form-field::-moz-placeholder {
  color: #969696;
}

textarea.mc-form-field:-ms-input-placeholder {
  color: #969696;
}

input[type=text].mc-form-field,
input[type=password].mc-form-field,
input[type=email].mc-form-field {
  position: relative;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: border-color 0.2s;
  color: #424242;
  height: 31px;
  padding: 9px 12px;
  min-width: 190px;
}

input[type=text].mc-form-field *,
input[type=password].mc-form-field *,
input[type=email].mc-form-field * {
  box-sizing: border-box;
}

input[type=text].mc-form-field.error,
input[type=password].mc-form-field.error,
input[type=email].mc-form-field.error {
  border-color: #d35853;
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

input[type=text].mc-form-field.error:hover,
input[type=password].mc-form-field.error:hover,
input[type=email].mc-form-field.error:hover {
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

input[type=text].mc-form-field.success,
input[type=password].mc-form-field.success,
input[type=email].mc-form-field.success {
  border-color: #6cb758;
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

input[type=text].mc-form-field.success:hover,
input[type=password].mc-form-field.success:hover,
input[type=email].mc-form-field.success:hover {
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

input[type=text].mc-form-field.disabled,
input[type=password].mc-form-field.disabled,
input[type=email].mc-form-field.disabled,
input[type=text].mc-form-field.inactive,
input[type=password].mc-form-field.inactive,
input[type=email].mc-form-field.inactive,
input[type=text].mc-form-field:disabled,
input[type=password].mc-form-field:disabled,
input[type=email].mc-form-field:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

input[type=text].mc-form-field:hover,
input[type=password].mc-form-field:hover,
input[type=email].mc-form-field:hover {
  box-shadow: 0 0 5px 0 rgba(221, 221, 221, 0.4);
}

input[type=text].mc-form-field.large,
input[type=password].mc-form-field.large,
input[type=email].mc-form-field.large {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}

input[type=text].mc-form-field.size-short,
input[type=password].mc-form-field.size-short,
input[type=email].mc-form-field.size-short {
  min-width: auto;
  width: 90px;
}

input[type=text].mc-form-field.size-stretch,
input[type=password].mc-form-field.size-stretch,
input[type=email].mc-form-field.size-stretch {
  width: 100%;
}

input[type=text].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive),
input[type=password].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive),
input[type=email].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

input[type=text].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon,
input[type=password].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon,
input[type=email].mc-form-field:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon {
  border-left-color: #969696;
}

input[type=text].mc-form-field.not-empty,
input[type=password].mc-form-field.not-empty,
input[type=email].mc-form-field.not-empty {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

input[type=text].mc-form-field.not-empty .field-icon,
input[type=password].mc-form-field.not-empty .field-icon,
input[type=email].mc-form-field.not-empty .field-icon {
  border-left-color: #969696;
}

input[type=text].mc-form-field::-webkit-input-placeholder,
input[type=password].mc-form-field::-webkit-input-placeholder,
input[type=email].mc-form-field::-webkit-input-placeholder {
  color: #969696;
}

input[type=text].mc-form-field:-moz-placeholder,
input[type=password].mc-form-field:-moz-placeholder,
input[type=email].mc-form-field:-moz-placeholder {
  color: #969696;
}

input[type=text].mc-form-field::-moz-placeholder,
input[type=password].mc-form-field::-moz-placeholder,
input[type=email].mc-form-field::-moz-placeholder {
  color: #969696;
}

input[type=text].mc-form-field:-ms-input-placeholder,
input[type=password].mc-form-field:-ms-input-placeholder,
input[type=email].mc-form-field:-ms-input-placeholder {
  color: #969696;
}

input[type=text].mc-form-field.size-tiny,
input[type=password].mc-form-field.size-tiny,
input[type=email].mc-form-field.size-tiny {
  min-width: auto;
  width: 60px;
}

input[type=text].mc-form-field.size-medium,
input[type=password].mc-form-field.size-medium,
input[type=email].mc-form-field.size-medium {
  height: 40px;
}

input[type=text].mc-form-field.size-medium~.field-icon,
input[type=password].mc-form-field.size-medium~.field-icon,
input[type=email].mc-form-field.size-medium~.field-icon {
  height: 38px;
  width: 38px;
}

input[type=text].mc-form-field.size-medium:focus~.field-icon,
input[type=password].mc-form-field.size-medium:focus~.field-icon,
input[type=email].mc-form-field.size-medium:focus~.field-icon {
  color: #969696;
  border-left-color: #969696;
}

input[type=text].mc-form-field~.field-icon,
input[type=password].mc-form-field~.field-icon,
input[type=email].mc-form-field~.field-icon {
  font-size: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 31px;
  height: 31px;
  z-index: 1;
  cursor: pointer;
  border-left: 1px solid #ddd;
  display: -ms-flexbox;
  display: flex;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #969696;
  transition: color 0.2s, border-color 0.2s;
  height: 29px;
  top: 1px;
}

input[type=text].mc-form-field~.clear-field,
input[type=password].mc-form-field~.clear-field,
input[type=email].mc-form-field~.clear-field {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 9px;
  top: 50%;
  margin-top: -8px;
  border-radius: 50%;
  background-color: rgba(150, 150, 150, 0.4);
  color: #fff;
  font-size: 8px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.2s, transform 0.2s, opacity 0.2s;
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

input[type=text].mc-form-field~.clear-field i,
input[type=password].mc-form-field~.clear-field i,
input[type=email].mc-form-field~.clear-field i {
  position: relative;
  left: 0;
  width: 9px;
  height: 9px;
  display: block;
  overflow: hidden;
  top: 4px;
  left: 4px;
}

input[type=text].mc-form-field~.clear-field:hover,
input[type=password].mc-form-field~.clear-field:hover,
input[type=email].mc-form-field~.clear-field:hover {
  background-color: rgba(150, 150, 150, 0.7);
}

input[type=text].mc-form-field~.clear-field:active,
input[type=password].mc-form-field~.clear-field:active,
input[type=email].mc-form-field~.clear-field:active {
  background-color: #969696;
}

input[type=text].with-icon,
input[type=password].with-icon,
input[type=email].with-icon {
  padding-right: 35px;
}

input[type=text].with-icon.size-medium,
input[type=password].with-icon.size-medium,
input[type=email].with-icon.size-medium {
  padding-right: 45px;
}

input[type=text].with-icon.size-medium.with-clear,
input[type=password].with-icon.size-medium.with-clear,
input[type=email].with-icon.size-medium.with-clear {
  padding-right: 77px;
}

input[type=text].with-icon.size-medium.with-clear~.clear-field,
input[type=password].with-icon.size-medium.with-clear~.clear-field,
input[type=email].with-icon.size-medium.with-clear~.clear-field {
  right: 51px;
}

input[type=text].with-icon.with-clear,
input[type=password].with-icon.with-clear,
input[type=email].with-icon.with-clear {
  padding-right: 67px;
}

input[type=text].with-icon.with-clear~.clear-field,
input[type=password].with-icon.with-clear~.clear-field,
input[type=email].with-icon.with-clear~.clear-field {
  right: 41px;
}

input[type=text].with-icon.not-empty~.field-icon,
input[type=password].with-icon.not-empty~.field-icon,
input[type=email].with-icon.not-empty~.field-icon {
  border-left-color: #969696;
}

input[type=text].with-clear,
input[type=password].with-clear,
input[type=email].with-clear {
  padding-right: 36px;
}

input[type=text].with-clear.not-empty~.clear-field,
input[type=password].with-clear.not-empty~.clear-field,
input[type=email].with-clear.not-empty~.clear-field {
  visibility: visible;
  display: block;
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-form-field-wrapper {
  position: relative;
  display: inline-block;
}

.mc-form-field-wrapper.size-stretch {
  width: 100%;
}

.mc-form-field-wrapper .field-icon {
  font-size: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 31px;
  height: 31px;
  z-index: 1;
  cursor: pointer;
  border-left: 1px solid #ddd;
  display: -ms-flexbox;
  display: flex;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #969696;
  transition: color 0.2s, border-color 0.2s;
}

.mc-form-field-wrapper.with-prefix:before {
  display: block;
  position: absolute;
  top: 0;
  left: 9px;
  position: absolute;
  line-height: 32px;
  z-index: 2;
}

.mc-form-field-wrapper.with-prefix.euro:before {
  content: '\20AC';
}

.mc-form-field-wrapper.with-prefix.usd:before {
  content: '$';
}

.mc-form-field-wrapper.with-prefix input[type=text],
.mc-form-field-wrapper.with-prefix input[type=password],
.mc-form-field-wrapper.with-prefix input[type=email] {
  padding-left: 18px;
}

.mc-form-field-wrapper.with-icon input[type=text],
.mc-form-field-wrapper.with-icon input[type=password],
.mc-form-field-wrapper.with-icon input[type=email] {
  padding-right: 35px;
}

.mc-form-field-wrapper input[type=text]:hover~.field-icon,
.mc-form-field-wrapper input[type=password]:hover~.field-icon,
.mc-form-field-wrapper input[type=email]:hover~.field-icon,
.mc-form-field-wrapper input[type=text]:focus~.field-icon,
.mc-form-field-wrapper input[type=password]:focus~.field-icon,
.mc-form-field-wrapper input[type=email]:focus~.field-icon {
  color: #424242;
}

.mc-form-field-wrapper input[type=text]:focus~.field-icon,
.mc-form-field-wrapper input[type=password]:focus~.field-icon,
.mc-form-field-wrapper input[type=email]:focus~.field-icon {
  border-color: #969696;
}

.mc-form-field-wrapper input[type=text]:focus~.field-icon:hover,
.mc-form-field-wrapper input[type=password]:focus~.field-icon:hover,
.mc-form-field-wrapper input[type=email]:focus~.field-icon:hover {
  color: #516dbd;
}

.mc-form-field-wrapper.error .mc-form-field-state,
.mc-form-field-wrapper.success .mc-form-field-state {
  visibility: visible;
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-form-field-wrapper.success .mc-form-field-state .tooltip {
  display: none;
}

.mc-form-field-wrapper.success .mc-form-field-state .validation-sign {
  display: block;
}

.mc-form-field-state {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  transition: opacity 0.2s;
}

.mc-form-field-state .tooltip {
  position: absolute;
  bottom: 100%;
  width: 150px;
  margin-left: -80px;
  left: 50%;
  background-color: #d35853;
  box-shadow: none;
  padding: 9px 10px;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.mc-form-field-state .tooltip.bottom {
  bottom: 100%;
  margin-bottom: 10px;
}

.mc-form-field-state .tooltip.bottom .tt-arrow {
  left: 50%;
}

.mc-form-field-state .tooltip.right {
  left: 100%;
  margin-left: 10px;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  bottom: auto;
}

.mc-form-field-state .tooltip .tt-arrow:after {
  background-color: #d35853;
}

.mc-form-field-state .validation-sign {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  display: none;
}

.mc-form-field-state .validation-sign i {
  font-size: 14px;
}

.dropdown .select-value {
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
  font-size: 12px;
}

.dropdown .select-value.long-title {
  margin-right: 30px;
  white-space: nowrap;
  overflow: hidden;
}

.dropdown .select-value.selected {
  color: #424242;
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.dropdown.mc-form-field {
  position: relative;
  /* border-radius: 2px;
  background-color: #fff; */
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: border-color 0.2s;
  /* height: 31px;
  padding: 8px 12px;
  min-width: 180px; */
  text-align: left;
  cursor: pointer;
}

.dropdown.mc-form-field * {
  box-sizing: border-box;
}

.dropdown.mc-form-field.error {
  border-color: #d35853;
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.dropdown.mc-form-field.error:hover {
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.dropdown.mc-form-field.success {
  border-color: #6cb758;
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.dropdown.mc-form-field.success:hover {
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.dropdown.mc-form-field.disabled,
.dropdown.mc-form-field.inactive,
.dropdown.mc-form-field:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.dropdown.mc-form-field:hover {
  box-shadow: 0 0 5px 0 rgba(221, 221, 221, 0.4);
}

.dropdown.mc-form-field.large {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.dropdown.mc-form-field.size-short {
  min-width: auto;
  width: 90px;
}

.dropdown.mc-form-field.size-stretch {
  width: 100%;
}

.dropdown.mc-form-field.opened {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.dropdown.mc-form-field.opened .field-icon {
  border-left-color: #969696;
}

.dropdown.mc-form-field .current-value {
  position: absolute;
  /* top: 8px;
  left: 6px;
  right: 0; */
  white-space: nowrap;
  overflow: hidden;
}

.dropdown.mc-form-field .drop-arrow {
  /* border-left: 1px solid #ddd;
  background-color: inherit; */
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
}

.dropdown.mc-form-field .drop-arrow:after {
  border-color: #c6c6c6;
}

.dropdown.mc-btn {
  min-width: 200px;
}

.dropdown.mc-btn .drop-arrow {
  width: 10px;
  display: inline-block;
}

.dropdown.mc-btn .drop-arrow:after {
  position: relative;
  left: 5px;
  border-color: #fff;
}

.dropdown .drop-arrow {
  transition: border-color 0.2s;
}

.dropdown .drop-arrow:after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 20%;
  transition: border-color 0.2s, transform 0.2s;
}

.dropdown .clear-field {
  font-size: 10px;
  color: #c6c6c6;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  z-index: 3;
  display: block;
  transition: transform 0.2s, tranwsform 0.2s;
  width: 14px;
  height: 14px;
  text-align: center;
}

.dropdown .clear-field i {
  position: relative;
  top: 3px;
  display: block;
}

.dropdown .clear-field.hidden {
  transition: opacity 0.3s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
}

.dropdown .clear-field.hidden.show {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  visibility: visible;
}

.dropdown .clear-field:hover {
  color: #585858;
}

.dropdown .clear-field:active {
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.dropdown .small-loader {
  left: auto;
  right: 20px;
  z-index: 2;
  margin-top: -9px;
}

.dropdown .small-loader.spin+.clear-field:not(.hidden) {
  -ms-transform: scale(0);
  transform: scale(0);
}

.dropdown.opened .dropdown-list {
  -ms-filter: none;
  filter: none;
  opacity: 1;
  visibility: visible;
}

.dropdown.opened.mc-form-field .drop-arrow {
  border-left-color: #969696;
}

.dropdown.opened.mc-form-field .drop-arrow:after {
  border-color: #878787;
}

.dropdown.opened.mc-btn .drop-arrow:after {
  border-color: inherit;
}

.dropdown.opened .drop-arrow:after {
  -ms-transform: rotate(-45deg) rotateX(180deg);
  transform: rotate(-45deg) rotateX(180deg);
  top: 0;
  bottom: -1px;
}

.dropdown.dl-top .dropdown-list {
  -ms-transform: translate(0, -110%);
  transform: translate(0, -110%);
  top: -2px;
  left: 2px;
  right: 2px;
  border: 1px solid #969696;
}

.dropdown.dl-top.opened .dropdown-list {
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.dropdown.dl-bottom.mc-form-field .dropdown-list {
  bottom: -2px;
  left: 2px;
  right: 2px;
  border: 1px solid #969696;
}

.dropdown.dl-bottom.mc-btn .dropdown-list {
  bottom: 5px;
  left: 15px;
  right: 15px;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.3);
  color: #424242;
  font-size: 12px;
  padding: 15px 0;
  /*ie fix*/
  /*mCustomScrollbar adds "position:relative" inline style*/
  position: absolute !important;
}

.dropdown.dl-bottom.mc-btn .dropdown-list .option-item {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: normal;
}

.dropdown.dl-bottom .dropdown-list {
  -ms-transform: translate(0, 110%);
  transform: translate(0, 110%);
}

.dropdown.dl-bottom.opened .dropdown-list {
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.dropdown .dropdown-list {
  position: absolute;
  background-color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  visibility: hidden;
  border-radius: 2px;
  max-height: 300px;
  z-index: 3;
  overflow: auto;
}

.dropdown .dropdown-list .option-item {
  display: block;
  padding: 10px 12px;
  transition: background-color 0.2s;
}

.dropdown .dropdown-list .option-item.selected {
  background-color: rgba(221, 221, 221, 0.4);
}

.dropdown .dropdown-list .option-item:hover:not(.disabled) {
  background-color: #ddd;
}

.dropdown .dropdown-list .option-item.disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.dropdown select {
  display: none;
}

.dropdown.autocomplete input {
  padding-right: 50px;
  font-size: 12px;
  font-family: Arial;
}

.dropdown.autocomplete .small-loader {
  right: 37px;
  margin-top: -9px;
}

.dropdown.autocomplete .clear-field {
  right: 40px;
}

.dropdown.autocomplete .dropdown-list {
  left: -1px;
  right: -1px;
  bottom: 0;
  border-radius: 0 0 2px 2px;
}

.dropdown.autocomplete.type-2 .small-loader {
  right: 5px;
  left: auto;
}

.dropdown.autocomplete.type-2 .small-loader.spin+.drop-arrow {
  display: none;
}

.dropdown.disabled,
.dropdown.inactive {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.dropdown.mc-tag-selector {
  /*mc-form-field-style('formfield')*/
  padding: 4px 4px 0 4px;
  height: auto;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.dropdown.mc-tag-selector.size-medium {
  height: 40px;
}

.dropdown.mc-tag-selector .tags-list {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.dropdown.mc-tag-selector .tags-list .tag {
  height: inherit;
  background-color: #5d7bd0;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
  height: 20px;
  line-height: 20px;
  padding-left: 25px;
  padding-right: 5px;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  margin-bottom: 4px;
}

.dropdown.mc-tag-selector .tags-list .tag .close {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  text-align: center;
  cursor: pointer;
}

.dropdown.mc-tag-selector .tags-list .tag i {
  font-size: 10px;
  cursor: pointer;
}

.dropdown.mc-tag-selector div.input {
  display: block;
  -ms-flex: 1 auto;
  flex: 1 auto;
  width: auto;
  height: 20px;
  line-height: 20px;
  /*outline: 1px solid red*/
  margin-bottom: 4px;
}

.dropdown.mc-tag-selector.mc-form-field .dropdown-list {
  left: -1px;
  right: -1px;
  bottom: 1px;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.dropdown.mc-tag-selector.multiple-select {
  height: 30px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
}

.dropdown.mc-tag-selector.multiple-select.opened {
  border-radius: 2px 2px 0 0;
}

.dropdown.mc-tag-selector.multiple-select.opened .dropdown-list {
  border-radius: 0 0 2px 2px;
}

.dropdown.mc-tag-selector.multiple-select .total-wrapper .placeholder {
  line-height: 20px;
}

.dropdown.mc-tag-selector.multiple-select .total-wrapper .placeholder,
.dropdown.mc-tag-selector.multiple-select .tags-list.all .placeholder {
  color: #969696;
}

.dropdown.mc-tag-selector.multiple-select .dropdown-list {
  max-height: none;
  overflow: hidden;
  bottom: 0;
  box-shadow: 0 3px 3px 0 rgba(150, 150, 150, 0.4);
}

.dropdown.mc-tag-selector.multiple-select .dropdown-list .list-wrapper {
  max-height: 380px;
  overflow: auto;
  /*.list-container
                        max-height 380px*/
}

.dropdown.mc-tag-selector.multiple-select .option-item {
  padding: 0;
}

.dropdown.mc-tag-selector.multiple-select .option-item:hover {
  background-color: #f9f9f9;
}

.dropdown.mc-tag-selector.multiple-select .option-item label.mc-checkbox {
  display: block;
  padding: 10px 12px;
}

.dropdown.mc-tag-selector.multiple-select .option-item label.mc-checkbox .name {
  /*color _c6
                        font-weight bold*/
  display: inline-block;
  vertical-align: middle;
}

.dropdown.mc-tag-selector.multiple-select .option-item label.mc-checkbox input[type="checkbox"]:checked~.name {
  color: #424242;
}

.dropdown.mc-tag-selector.multiple-select .option-item label.mc-checkbox .checkbox-wrap {
  margin-right: 6px;
}

.dropdown.mc-tag-selector.multiple-select .tags-list.all {
  padding: 10px 12px 6px 12px;
  border-bottom: 1px solid #969696;
}

.dropdown.mc-tag-selector.multiple-select .tags-list.all .placeholder {
  margin-bottom: 4px;
  line-height: 20px;
}

.dropdown.default .current-value {
  color: #969696;
}

.code-wrapper {
  font-size: 10px;
  position: relative;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: border-color 0.2s;
  color: #424242;
  padding: 10px;
  color: #424242;
  word-wrap: break-word;
}

.code-wrapper * {
  box-sizing: border-box;
}

.code-wrapper.error {
  border-color: #d35853;
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.code-wrapper.error:hover {
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.code-wrapper.success {
  border-color: #6cb758;
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.code-wrapper.success:hover {
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.code-wrapper.disabled,
.code-wrapper.inactive,
.code-wrapper:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.code-wrapper:hover {
  box-shadow: 0 0 5px 0 rgba(221, 221, 221, 0.4);
}

.code-wrapper.large {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.code-wrapper.size-short {
  min-width: auto;
  width: 90px;
}

.code-wrapper.size-stretch {
  width: 100%;
}

.code-wrapper:focus:not(.error):not(.success):not(.disabled):not(.inactive) {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.code-wrapper:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon {
  border-left-color: #969696;
}

.code-wrapper.not-empty {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.code-wrapper.not-empty .field-icon {
  border-left-color: #969696;
}

.code-wrapper::-webkit-input-placeholder {
  color: #969696;
}

.code-wrapper:-moz-placeholder {
  color: #969696;
}

.code-wrapper::-moz-placeholder {
  color: #969696;
}

.code-wrapper:-ms-input-placeholder {
  color: #969696;
}

.code-wrapper>span {
  display: block;
  word-wrap: break-word;
}

.code-wrapper:empty {
  color: #969696;
}

.code-wrapper:focus {
  color: #424242;
}

.mc-tag-selector {
  position: relative;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: border-color 0.2s;
  color: #424242;
  padding: 4px 4px 0 4px;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.mc-tag-selector * {
  box-sizing: border-box;
}

.mc-tag-selector.error {
  border-color: #d35853;
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.mc-tag-selector.error:hover {
  box-shadow: 0 0 5px 0 rgba(211, 88, 83, 0.4);
}

.mc-tag-selector.success {
  border-color: #6cb758;
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.mc-tag-selector.success:hover {
  box-shadow: 0 0 5px 0 rgba(108, 183, 88, 0.4);
}

.mc-tag-selector.disabled,
.mc-tag-selector.inactive,
.mc-tag-selector:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.mc-tag-selector:hover {
  box-shadow: 0 0 5px 0 rgba(221, 221, 221, 0.4);
}

.mc-tag-selector.large {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.mc-tag-selector.size-short {
  min-width: auto;
  width: 90px;
}

.mc-tag-selector.size-stretch {
  width: 100%;
}

.mc-tag-selector:focus:not(.error):not(.success):not(.disabled):not(.inactive) {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.mc-tag-selector:focus:not(.error):not(.success):not(.disabled):not(.inactive) .field-icon {
  border-left-color: #969696;
}

.mc-tag-selector.not-empty {
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
}

.mc-tag-selector.not-empty .field-icon {
  border-left-color: #969696;
}

.mc-tag-selector::-webkit-input-placeholder {
  color: #969696;
}

.mc-tag-selector:-moz-placeholder {
  color: #969696;
}

.mc-tag-selector::-moz-placeholder {
  color: #969696;
}

.mc-tag-selector:-ms-input-placeholder {
  color: #969696;
}

.mc-tag-selector.size-medium {
  height: 40px;
}

.mc-tag-selector .tags-list {
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.mc-tag-selector .tags-list .tag {
  height: inherit;
  background-color: #5d7bd0;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
  height: 21px;
  line-height: 21px;
  padding-left: 25px;
  padding-right: 5px;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  margin-bottom: 4px;
}

.mc-tag-selector .tags-list .tag .close {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  text-align: center;
  cursor: pointer;
}

.mc-tag-selector .tags-list .tag i {
  font-size: 10px;
  cursor: pointer;
}

.mc-tag-selector div.input {
  display: block;
  -ms-flex: 1 auto;
  flex: 1 auto;
  width: auto;
  height: 20px;
  line-height: 20px;
  margin-bottom: 4px;
  min-width: 50px;
}

.mc-slider {
  border: 1px solid #ddd;
}

.mc-slider.ui-slider {
  position: relative;
  text-align: left;
}

.mc-slider.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  -ms-touch-action: none;
  touch-action: none;
  background-color: #fff;
  border: 1px solid #a5a5a5;
}

.mc-slider.ui-slider .ui-slider-range {
  background-color: rgba(204, 204, 204, 0.4);
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.mc-slider.ui-slider.ui-state-disabled .ui-slider-handle,
.mc-slider.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.mc-slider.ui-slider-horizontal {
  height: 8px;
}

.mc-slider.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.mc-slider.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.mc-slider.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.mc-slider.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.mc-slider.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.mc-slider.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.mc-slider.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.mc-slider.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.mc-slider.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.mc-uplader-wrapper .ulpoad-button {
  margin-bottom: 10px;
}

.mc-uplader-wrapper .upload-notice {
  color: #969696;
  font-size: 12px;
}

.mc-uplader-wrapper .upload-notice strong {
  color: #424242;
}

.mc-uplader-wrapper.state-exists .img {
  max-width: 280px;
  max-height: 160px;
  margin-bottom: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.mc-uplader-wrapper.state-exists .img img {
  display: block;
  max-width: 100%;
}

.mc-uplader-wrapper.state-exists .action-buttons-wrapper .action {
  margin-right: 15px;
}

.mc-uplader-wrapper.state-exists .action-buttons-wrapper .action:last-child {
  margin-right: 0;
}

.mc-uplader-wrapper.state-exists .action-buttons-wrapper .action.delete {
  color: #d35853;
}

.mc-dd-link-style {
  display: inline-block;
  color: #424242;
  padding-right: 10px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-drag: none;
  -moz-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}

.mc-dd-link-style i.arr {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 6px;
  display: block;
  top: 50%;
  margin-top: -3px;
}

.mc-form-select-style {
  display: inline-block;
  position: relative;
}

.mc-form-select-style .dd-list {
  position: absolute;
  visibility: hidden;
  left: -20px;
  border: 1px solid;
  border-color: #969696;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.4);
  top: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  z-index: 3;
}

.mc-form-select-style .dd-list .item {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 13px;
}

.mc-form-select-style .dd-list .item:last-child {
  margin-bottom: 0;
}

.mc-form-select-style .scrollbar-wrapper {
  max-height: 147px;
}

.mc-form-select-style .scrollbar-wrapper .mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0px;
  -ms-filter: none;
  filter: none;
  opacity: 1;
  margin: 0;
}

.mc-form-select-style.opened .mc-dd-link-style i.arr {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mc-form-select-style.opened .dd-list {
  visibility: visible;
}

.mc-form-styled-input {
  color: #464646;
  font-size: 13px;
  line-height: 17px;
  position: relative;
  min-height: 17px;
  display: inline-block;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: #c4c9ef;
  letter-spacing: 0;
  font-weight: 400;
  font-family: Arial;
  -ms-filter: none;
  filter: none;
  opacity: 1;
  transition: border-color 0.2s;
  max-width: 100%;
}

.mc-form-styled-input .placeholder,
.mc-form-styled-input .placeholder-text {
  position: relative;
  margin-top: -17px;
  z-index: 1;
  display: none;
}

.mc-form-styled-input .placeholder,
.mc-form-styled-input .placeholder-text,
.mc-form-styled-input .field {
  padding: 0 5px;
}

.mc-form-styled-input .field {
  position: relative;
  z-index: 2;
  min-height: 17px;
}

.mc-form-styled-input .field:focus+.placeholder,
.mc-form-styled-input .field:focus+.placeholder-text {
  color: #464646;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.mc-form-styled-input .field>span {
  display: inline-block;
}

.mc-form-styled-input .field>br {
  display: none;
}

.mc-form-styled-input:before,
.mc-form-styled-input:after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  bottom: 0;
  left: 0;
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: inherit;
}

.mc-form-styled-input:after {
  left: auto;
  right: 0;
}

.mc-form-styled-input.empty {
  border-color: transparent;
  color: #3b5998;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  opacity: 0.75;
  text-align: left;
}

.mc-form-styled-input.empty .placeholder,
.mc-form-styled-input.empty .placeholder-text {
  display: block;
}

.mc-form-styled-input.error {
  border-color: #d35853;
}

.mc-form-styled-input.error .tooltip {
  visibility: visible;
}

.mc-form-styled-input.error .tooltip .message {
  -ms-transform: rotate(0);
  transform: rotate(0);
  top: 0px;
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-form-styled-input.focused {
  border-color: #5765d1;
  -ms-filter: none;
  filter: none;
  opacity: 1;
  cursor: text;
  transition: border-color 1s;
}

.mc-form-styled-input.inactive {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.mc-form-styled-input.inactive .field {
  cursor: default;
}

.mc-form-styled-input .tooltip {
  display: none;
  position: absolute;
  color: #fff;
  z-index: 10;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  line-height: 24px;
  bottom: 100%;
  margin-bottom: 7px;
  top: auto;
  width: 150px;
  right: -59px;
  visibility: hidden;
  border-radius: 2px;
  background: #d35853;
  padding: 1px 5px;
}

.mc-form-styled-input .tooltip:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0;
  border-color: #d35853 transparent transparent;
}

.mc-form-styled-input .tooltip .message {
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
  transition: all 0.3s;
  position: relative;
  top: 10px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.mc-form-styled-input .tooltip.visible {
  display: block;
}

.mc-file-input {
  width: 0;
  height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
}

.i-mb10 {
  margin-bottom: 10px;
}

.i-mb0 {
  margin-bottom: 0;
}

.mc-preloader-wrapper {
  position: relative;
  height: 550px;
  width: 100%;
}

.ui-dialog .mc-preloader-wrapper {
  height: 300px;
}

.centered,
#spin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.round,
#spin-wrap,
#spin-wrap #spin {
  border-radius: 50%;
}

#spin-wrap {
  width: 180px;
  height: 180px;
  background: #dedede;
}

#spin-wrap #spin {
  width: 78%;
  height: 78%;
  margin: 11%;
  background: #fff;
}

#spin-wrap #spin:before,
#spin-wrap #spin:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

#spin-wrap #spin:before {
  left: 50%;
  border-radius: 0 100% 100% 0/50%;
  background: url(../_/_/mcFrame/images/3gVfXM4.png) no-repeat right center;
  background-size: 200% 100%;
  -ms-transform-origin: left center;
  transform-origin: left center;
  animation: spin 1.5s linear infinite reverse;
}

#spin-wrap #spin:after {
  left: 0;
  border-radius: 100% 0 0 100%/50%;
  background: url(../_/_/mcFrame/images/3gVfXM4.png) no-repeat;
  background-size: 200% 100%;
  -ms-transform-origin: right center;
  transform-origin: right center;
  animation: spin 3s linear infinite;
}

#spin-wrap.sm {
  width: 40px;
  height: 40px;
}

#spin-wrap.sm #spin {
  width: 70%;
  height: 70%;
  margin: 15%;
}

#spin-wrap .loading-text {
  font-weight: bold;
  font-size: 18px;
  height: 11%;
  text-align: center;
  color: #a1a1a1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
}

.loading-text {
  animation: opacityload 2s linear infinite;
}

@keyframes opacityload {
  0% {
    -ms-filter: none;
    filter: none;
    opacity: 1;
  }

  50% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
  }

  100% {
    -ms-filter: none;
    filter: none;
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -ms-transform: rotate(-270deg);
    transform: rotate(-270deg);
  }
}

.mc-table-wrapper {
  padding-left: 3px;
  padding-right: 3px;
}

.mc-table {
  width: 100%;
  border: 1px solid #ddd;
  font-size: 12px;
  text-align: left;
  border-collapse: collapse;
}

.mc-table .c.link {
  color: #7e8eb5;
}

.mc-table .c.success {
  color: #6cb758;
}

.mc-table .c.error {
  color: #d35853;
}

.mc-table .c.dark {
  color: #424242;
}

.mc-table .table-ear {
  position: absolute;
  top: -1px;
  bottom: -1px;
  background-color: #f7f7f7;
  width: 5px;
  border: solid #ddd;
  z-index: 2;
}

.mc-table .table-head-total-row {
  border-top: 1px solid #ddd;
}

.mc-table thead td {
  border-right: 1px solid #ddd;
  position: relative;
  z-index: 1;
  color: #424242;
  padding: 20px;
}

.mc-table thead td:first-child .table-ear {
  left: -4px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-width: 1px 0 1px 1px;
}

.mc-table thead td:last-child .table-ear {
  right: -4px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-width: 1px 1px 1px 0;
}

.mc-table thead td .simple {
  color: #969696;
}

.mc-table.striped tr:nth-child(even) {
  background-color: #fbfbfb;
}

.mc-table.striped tr:nth-child(even) .hide-if-to-long:after {
  background-image: linear-gradient(to right, rgba(251, 251, 251, 0.1), #fbfbfb);
}

.mc-table.hover-row tr:hover {
  background-color: #f7f7f7;
}

.mc-table.sortable .sort-control {
  position: absolute;
  right: 20px;
  top: 22%;
}

.mc-table.sortable .sort-control .s-arrow {
  display: block !important;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
  margin: 5px 0;
  transition: opacity 0.2s;
}

.mc-table.sortable .sort-control .s-arrow:hover,
.mc-table.sortable .sort-control .s-arrow:active,
.mc-table.sortable .sort-control .s-arrow.active {
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-table.sortable .sort-control .s-arrow.up {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #717fa2;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.mc-table.sortable .sort-control .s-arrow.down {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #717fa2;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mc-table.sortable .sort-control .s-arrow.active {
  border-color: #58637e;
}

.mc-table.sortable.small-size thead td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  vertical-align: top;
}

.mc-table.sortable.small-size thead td>span {
  display: block;
}

.mc-table.sortable.small-size thead td .simple {
  margin-bottom: 10px;
}

.mc-table.sortable.small-size.sortable .sort-control {
  position: static;
}

.mc-table.sortable.small-size.sortable .sort-control .s-arrow {
  display: inline-block !important;
  vertical-align: middle;
  width: 4px;
  height: 4px;
}

.mc-table.sortable.small-size.sortable .sort-control .s-arrow.up {
  top: 1px;
}

.mc-table.sortable.small-size.sortable .sort-control .s-arrow.down {
  bottom: 2px;
  margin-left: 3px;
}

.mc-table tr td {
  max-width: 150px;
}

.mc-table tr td:last-child {
  border-right: none;
}

.mc-table thead tr {
  background-color: #f7f7f7;
  font-weight: bold;
}

.mc-table thead tr:last-child:not(:first-child) {
  border-top: 1px solid #ddd;
}

.mc-table thead tr:last-child:not(:first-child) td {
  border-right: none;
}

.mc-table tbody tr {
  border-top: 1px solid #ddd;
  transition: background-color 0.2s;
}

.mc-table tbody tr.decorated-row {
  background-color: #f7f7f7;
}

.mc-table tbody td {
  color: #969696;
  padding: 17px;
}

.mc-table tbody td.child-db>* {
  display: inline-block;
  width: 100%;
}

.mc-table tbody td.sorted {
  background-color: rgba(247, 247, 247, 0.3);
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(221, 221, 221, 0.3);
}

.mc-table.lot-of-data thead td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  vertical-align: top;
}

.mc-table.lot-of-data thead td>span {
  display: block;
}

.mc-table.lot-of-data thead td .simple {
  margin-bottom: 10px;
}

.mc-table.lot-of-data.sortable .sort-control {
  position: static;
}

.mc-table.lot-of-data.sortable .sort-control .s-arrow {
  display: inline-block !important;
  vertical-align: middle;
  width: 4px;
  height: 4px;
}

.mc-table.lot-of-data.sortable .sort-control .s-arrow.up {
  top: 1px;
}

.mc-table.lot-of-data.sortable .sort-control .s-arrow.down {
  bottom: 2px;
  margin-left: 3px;
}

.mc-table.lot-of-data tbody td {
  font-size: 12px;
}

.mc-tabs {
  box-sizing: border-box;
  font-size: 0;
  margin-left: 1px;
  display: inline-block;
  text-align: center;
}

.mc-tabs * {
  box-sizing: border-box;
}

.mc-tabs:before,
.mc-tabs:after {
  content: " ";
  display: table;
}

.mc-tabs:after {
  clear: both;
}

.mc-tabs .tab-item {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  float: left;
  border: 1px solid #ddd;
  color: #969696;
  margin-left: -1px;
  cursor: pointer;
  font-weight: bold;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, color 0.2s, margin 0.2s, padding-top 0.2s;
}

.mc-tabs .tab-item:hover {
  background-image: none;
}

.mc-tabs .tab-item:active {
  background-color: #f7f7f7;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.mc-tabs .tab-item .counter {
  display: inline-block;
  margin-right: 5px;
  color: #424242;
}

.mc-tabs .tab-item .counter.type-1,
.mc-tabs .tab-item .counter.type-2,
.mc-tabs .tab-item .counter.type-3 {
  color: #fff;
  background-color: #6cb758;
  font-size: 10px;
  width: 24px;
  height: 17px;
  text-align: center;
  border-radius: 2px;
  padding: 3px;
}

.mc-tabs .tab-item .counter.type-2 {
  background-color: #6fa9bf;
}

.mc-tabs .tab-item .counter.type-3 {
  background-color: #a09966;
}

.mc-tabs .tab-item:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.mc-tabs .tab-item:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.mc-tabs .tab-item.active {
  border-bottom-color: transparent;
  color: #424242;
  background-image: none;
  background-color: #fff;
  margin-top: -5px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.mc-tabs .tab-item.active:active {
  box-shadow: none;
  background-color: inherit;
}

.mc-tabs.regular .tab-item {
  font-size: 14px;
  height: 40px;
  padding: 11px 20px;
}

.mc-tabs.regular .tab-item.active {
  height: 45px;
  padding-top: 16px;
}

.mc-tabs.regular~.simple-text {
  line-height: 40px;
}

.mc-tabs.small .tab-item {
  font-size: 12px;
  height: 31px;
  padding: 7px 30px;
}

.mc-tabs.small .tab-item.pad-l-r-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.mc-tabs.small .tab-item.active {
  height: 36px;
  padding-top: 12px;
}

.mc-tabs.pagination .tab-item {
  font-size: 12px;
  height: 34px;
  width: 34px;
  padding: 8px;
}

.mc-tabs.pagination .tab-item.active {
  height: 39px;
  width: 39px;
  padding-top: 13px;
}

.mc-tabs.pagination .tab-item.prev {
  margin-right: 10px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.mc-tabs.pagination .tab-item.prev:after {
  content: '';
  left: 1px;
  border-radius: 1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #878787;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.mc-tabs.pagination .tab-item.next {
  margin-left: 10px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.mc-tabs.pagination .tab-item.next:after {
  content: '';
  right: 1px;
  border-radius: 1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: #878787;
  border-width: 0 2px 2px 0;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mc-tabs.pagination .tab-item.page-stepper {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.mc-tabs.pagination .tab-item.page-stepper.visible {
  -ms-filter: none;
  filter: none;
  opacity: 1;
}

.mc-tabs.custom .tab-item {
  height: 61px;
  padding: 16px;
  font-size: 14px;
  color: #424242;
  background-image: none;
  background-color: #f7f7f7;
  min-width: 160px;
}

.mc-tabs.custom .tab-item.active {
  padding-top: 20px;
  background-color: #fff;
}

.mc-tabs.custom .tab-item .tab-info {
  font-size: 11px;
  color: #969696;
  font-size: 0;
  margin-top: 5px;
}

.mc-tabs.custom .tab-item .tab-info .section {
  padding: 0 10px;
  display: inline-block;
  border-right: 1px solid #ddd;
  font-size: 11px;
  min-width: 60px;
}

.mc-tabs.custom .tab-item .tab-info .section:first-child {
  text-align: right;
}

.mc-tabs.custom .tab-item .tab-info .section:last-child {
  border: none;
  text-align: left;
}

.mc-tabs~.simple-text {
  font-weight: bold;
  font-size: 14px;
  margin-left: 20px;
}

.mc-tabs .new-label {
  position: absolute;
  bottom: 100%;
  right: 12px;
  background-color: #6cb758;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  border-radius: 2px 2px 0 0;
  padding: 2px 4px;
  line-height: 11px;
  font-weight: bold;
}

.mc-page-switcher {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}

.mc-page-switcher:before,
.mc-page-switcher:after {
  content: " ";
  display: table;
}

.mc-page-switcher:after {
  clear: both;
}

.mc-page-switcher .page-select {
  border: 1px solid #ddd;
  float: left;
  height: 34px;
  padding: 9px 12px;
  width: 68px;
  color: #424242;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  box-sizing: border-box;
}

.mc-page-switcher .goto-page {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  float: left;
  border: 1px solid #ddd;
  color: #969696;
  margin-left: -1px;
  cursor: pointer;
  font-weight: bold;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  height: 34px;
  transition: background-color 0.2s;
  padding: 9px 18px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: transparent;
  line-height: 14px;
  font-size: 12px;
}

.mc-page-switcher .goto-page:hover {
  background-image: none;
}

.mc-page-switcher .goto-page:active {
  background-color: #f7f7f7;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.rpp-switcher {
  display: inline-block;
}

.rpp-switcher .dropdown.mc-form-field {
  height: 34px;
  min-width: 165px;
  line-height: 34px;
}

.rpp-switcher .dropdown.mc-form-field .current-value{
  padding: 0 30px 0 10px;
  white-space: inherit;
  width: 130px;
  padding-left: 10px;
  text-overflow: ellipsis;
}

.rpp-switcher .dropdown.mc-form-field .dropdown .dropdown-list .option-item{
  line-height: 15px;
}

#measurement {
  padding-top: 30px;
}

#measurement label {
  margin-bottom: 10px;
}

#measurement .mc-radiobutton span {
  color: #869dac;
}

#measurement .mc-radiobutton .radio-btn-wrap {
  margin-top: -3px;
  background-color: rgba(219, 226, 230, 0.5);
}

.t-center {
  text-align: center !important;
}
