.mgc {
  position: relative;
  width: 16px;
  height: 16px;
  background-clip: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: -0.15px 0.6px 0 0;
  vertical-align: text-bottom;
  border-radius: 3px;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc:checked:after {
  content: '';
  display: block;
  height: 4px;
  width: 7px;
  border: 0 solid #333;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  left: 3px;
}
.mgc:disabled {
  opacity: 0.65;
}
.mgc:focus {
  outline: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.075), 0 0px 2px #38a7ff;
          box-shadow: inset 0 1px 1px rgba(255,255,255,0.075), 0 0px 2px #38a7ff;
}
.mgc:checked {
  background-color: #fff;
  border-color: #d7d7d7;
}
.mgc:checked:after {
  border-color: #414141;
}
.mgc-primary {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc-primary:checked {
  background-color: #337ab7;
  border-color: #337ab7;
}
.mgc-primary:checked:after {
  border-color: #fff;
}
.mgc-success {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc-success:checked {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.mgc-success:checked:after {
  border-color: #fff;
}
.mgc-info {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc-info:checked {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.mgc-info:checked:after {
  border-color: #fff;
}
.mgc-warning {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc-warning:checked {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.mgc-warning:checked:after {
  border-color: #fff;
}
.mgc-danger {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgc-danger:checked {
  background-color: #cf3b3a;
  border-color: #cf3b3a;
}
.mgc-danger:checked:after {
  border-color: #fff;
}
.mgc-circle {
  border-radius: 50%;
}
.mgc-sm {
  width: 12px;
  height: 12px;
}
.mgc-sm:checked:after {
  top: 2px;
  left: 1px;
  height: 3px;
  width: 6px;
}
.mgc-lg {
  width: 19px;
  height: 19px;
}
.mgc-lg:checked:after {
  top: 3px;
  left: 3px;
  height: 5px;
  width: 10px;
}
input[type="radio"].mgr {
  position: relative;
  width: 16px;
  height: 16px;
  background-clip: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: -0.15px 0.6px 0 0;
  vertical-align: text-bottom;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
input[type="radio"].mgr:disabled {
  opacity: 0.65;
}
input[type="radio"].mgr:before {
  content: '';
  display: block;
  height: 0px;
  width: 0px;
  -webkit-transition: width 0.25s, height 0.25s;
  transition: width 0.25s, height 0.25s;
}
input[type="radio"].mgr:checked:before {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  margin: 3px 0 0 3px;
}
input[type="radio"].mgr:focus {
  outline: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.075), 0 0px 2px #38a7ff;
          box-shadow: inset 0 1px 1px rgba(255,255,255,0.075), 0 0px 2px #38a7ff;
}
input[type="radio"].mgr:checked {
  border: 1px solid #555;
}
input[type="radio"].mgr:checked:before {
  background-color: #555;
}
.mgr-primary {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgr-primary:checked {
  border: 1px solid #337ab7;
}
.mgr-primary:checked:before {
  background-color: #337ab7;
}
.mgr-success {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgr-success:checked {
  border: 1px solid #5cb85c;
}
.mgr-success:checked:before {
  background-color: #5cb85c;
}
.mgr-info {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgr-info:checked {
  border: 1px solid #5bc0de;
}
.mgr-info:checked:before {
  background-color: #5bc0de;
}
.mgr-warning {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgr-warning:checked {
  border: 1px solid #f0ad4e;
}
.mgr-warning:checked:before {
  background-color: #f0ad4e;
}
.mgr-danger {
  background-color: #fff;
  border: 1px solid #d7d7d7;
}
.mgr-danger:checked {
  border: 1px solid #cf3b3a;
}
.mgr-danger:checked:before {
  background-color: #cf3b3a;
}
.mgr-sm {
  width: 12px;
  height: 12px;
}
.mgr-sm:checked:before {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin: 2px 0 0 2px;
}
.mgr-lg {
  width: 19px;
  height: 19px;
}
.mgr-lg:checked:before {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  margin: 3px 0 0 3px;
}
.mgc-switch {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 41px;
  height: 24px;
  border: 1px solid #dfdfdf;
  outline: 0;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #dfdfdf;
}
.mgc-switch:before,
.mgc-switch:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.mgc-switch:before {
  width: 39px;
  height: 22px;
  background-color: #fdfdfd;
}
.mgc-switch:after {
  width: 22px;
  height: 22px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
          box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.mgc-switch:checked {
  border-color: #04be02;
  background-color: #04be02;
}
.mgc-switch:checked:before {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.mgc-switch:checked:after {
  -webkit-transform: translateX(17px);
          transform: translateX(17px);
}
.mgc-switch:focus {
  outline: 0;
}
.mgc-sm.mgc-switch {
  height: 20px;
  width: 32px;
}
.mgc-sm.mgc-switch:before {
  height: 18px;
  width: 30px;
}
.mgc-sm.mgc-switch:after {
  width: 18px;
  height: 18px;
}
.mgc-sm.mgc-switch:checked:after {
  top: 0px;
  left: 2px;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.mgc-lg.mgc-switch {
  height: 32px;
  width: 52px;
}
.mgc-lg.mgc-switch:before {
  height: 30px;
  width: 50px;
}
.mgc-lg.mgc-switch:after {
  width: 30px;
  height: 30px;
}
.mgc-lg.mgc-switch:checked:after {
  top: 0px;
  left: 2px;
  -webkit-transform: translateX(18px);
          transform: translateX(18px);
}
/**
 * FileUploader
 * Copyright (c) 2017 Innostudio.de
 * Website: http://innostudio.de/fileuploader/
 * Version: 1.3 (21-Sep-2017)
 * Requires: jQuery v1.7.1 or later
 * License: https://innostudio.de/fileuploader/documentation/#license
 */

/* 
    Configuration
*/
.fileuploader,
.fileuploader *,
.fileuploader :before,
.fileuploader :after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* 
    Parent
*/
.fileuploader {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 0;
    background: #f5f6fA;
    border-radius: 4px;
    line-height: normal;
    text-align: left;
}

/* 
    Input
*/
.fileuploader-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

/* input caption */
.fileuploader-input-caption {
    position: relative;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 11px 15px;
    margin-right: 15px;
    background: #fff;
    border: 1px solid #dde4f6;
    border-radius: 4px;
    color: #789BEC;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .2s ease-out;
    		transition: all .2s ease-out;
}

/* input button */
.fileuploader-input-button {
    display: inline-block;
    background: #6381E6;
    padding: 12px 20px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    		transition: all .2s ease-out;
}
.fileuploader-input-button:hover {
    background: #758fe9;
}
.fileuploader-input-button:active {
    background: #6381E6;
    -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* input focused state */
.fileuploader-focused .fileuploader-input-caption {
    border-color: #b8c2ef;
}
.fileuploader-focused .fileuploader-input-button {
    background: #758fe9;
    border-color: #758fe9;
}

/* input disabled state */
.fileuploader-disabled .fileuploader-input {
    opacity: 0.7;
    cursor: default;
    pointer-events: none !important;
}

/* input dragging state */
.fileuploader-theme-default .fileuploader-dragging {
    background: #fff;
    border: 1px dashed #dde4f6;
}
.fileuploader-theme-default .fileuploader-dragging .fileuploader-input-caption {
    border-color: transparent;
}
.fileuploader-theme-default .fileuploader-dragging .fileuploader-input-button {
    -webkit-transform: translateY(100%);
    		transform: translateY(100%);
    opacity: 0;
}

/* input uploading state */
.fileuploader.fileuploader-is-uploading .fileuploader-input-caption:after {
    width: 14px;
    height: 14px;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    opacity: 0.8;
}

/* global loader */
.fileuploader.fileuploader-is-uploading .fileuploader-input-caption:after,
.fileuploader-item .fileuploader-item-image.fileuploader-loading:after,
.fileuploader-item.upload-pending .fileuploader-action-remove:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-top: 3px solid #dde4f6;
    border-right: 3px solid #dde4f6;
    border-bottom: 3px solid #dde4f6;
    border-left: 3px solid #979fb8;
    -webkit-transform: translateZ(0);
			transform: translateZ(0);
    -webkit-animation: fileuploaderSpin 1s infinite linear;
    		animation: fileuploaderSpin 1s infinite linear;
}
/*
    Thumbnails
    default theme
*/

/* list */
.fileuploader-items-list {
    display: block;
    margin: 0 -15px;
    padding: 0;
    list-style: none;
}

/* item */
.fileuploader-item {
    position: relative;
    margin: 0;
    padding: 20px 15px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-animation: fileuploaderSlideIn 0.4s ease;
    		animation: fileuploaderSlideIn 0.4s ease;
}
.fileuploader-item:last-child {
    border-bottom: 0;
    margin-bottom: -15px;
}

/* item uploading state */
.fileuploader-item.upload-failed {
    background: rgba(219, 104, 104, 0.08);
}
.fileuploader-item.upload-pending .fileuploader-action-remove:after {
    width: 26px;
    height: 26px;
    right: -5px;
    top: 50%;
    margin-top: -13px;
    opacity: 0.2;
}

/* item columns */
.fileuploader-item .columns {
    position: relative;
    z-index: 2;
}

/* item column-thumbnail */
.fileuploader-item .column-thumbnail {
    position: absolute;
    width: 36px;
    height: 36px;
	line-height: 36px;
    left: 0;
    top: 0;
}
.fileuploader-item .column-thumbnail .fileuploader-item-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.fileuploader-item .fileuploader-item-image img {
    max-width: none;
    max-height: 100%;
    min-height: 100%;
}
.fileuploader-item .fileuploader-item-image img,
.fileuploader-item .fileuploader-item-image canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-animation: fileuploaderFadeIn .2s ease;
            animation: fileuploaderFadeIn .2s ease;
}

/* thumbnail loading state */
.fileuploader-item .column-thumbnail .fileuploader-item-image.fileuploader-loading:after {
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
    border-radius: 50%;
    opacity: 0.12;
}
/* thumbnail popup button */
.fileuploader-item .column-thumbnail .fileuploader-action-popup {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}
.fileuploader-item.file-has-popup .column-thumbnail .fileuploader-action-popup {
    display: block;
}
.fileuploader-item .column-thumbnail .fileuploader-action-popup:hover {
    opacity: 1;
}
.fileuploader-item .column-thumbnail .fileuploader-action-popup:active {
    background: rgba(0,0,0,0.4);
}
.fileuploader-item.file-type-video .column-thumbnail .fileuploader-action-popup:after,
.fileuploader-item.file-type-audio .column-thumbnail .fileuploader-action-popup:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid rgba(0, 0, 0, 0);
    border-bottom: 8px solid rgba(0, 0, 0, 0);
    border-left: 10px solid #fff;
}

/* item icon */
.fileuploader-item .fileuploader-item-icon {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background: #ddd;
    border-radius: 4px;
    cursor: default;
    -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
    -webkit-animation: fileuploaderFadeIn .2s ease;
            animation: fileuploaderFadeIn .2s ease;
}
.fileuploader-item .fileuploader-item-icon.is-bright-color {
    color: #888;
}
.fileuploader-item .fileuploader-item-icon i {
    display: block;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: bold;
}

/* item icon like file */
/*
.fileuploader-item .fileuploader-item-icon {
    width: 30px;
    margin: 0 auto;
    border-radius: 3px;
}
.fileuploader-item .fileuploader-item-icon i {
    padding-top: 3px;
}
.fileuploader-item .fileuploader-item-icon:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom-left-radius: 2px;
    border-width: 4px;
    border-style: solid;
    border-color: #f5f6fa #f5f6fa rgba(255, 255, 255, .35) rgba(255, 255, 255, .35);
}
.fileuploader-item .fileuploader-item-icon {
    -webkit-animation: fileuploaderFadeIn 0.4s ease;
    		animation: fileuploaderFadeIn 0.4s ease;
}
*/

/* item column-title */
.fileuploader-item .column-title {
    display: block;
    padding-left: 51px;
    padding-right: 81px;
    color: #74809D;
}
.fileuploader-item a {
    color: #74809D;
    text-decoration: none;
}
.fileuploader-item .column-title div {
    width: 100%;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.fileuploader-item .column-title span {
    font-size: 12px;
    color: #979fb8;
}

/* item actions */
.fileuploader-item .column-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -9px;
}
.fileuploader-action {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: top;
    -webkit-transform: translateZ(0px);
			transform: translateZ(0px);
    -webkit-transition: all 0.2s ease-out;
    		transition: all 0.2s ease-out;
}
.fileuploader-item .column-actions .fileuploader-action + .fileuploader-action {
    margin-left: 10px;
}
.fileuploader-item .column-actions .fileuploader-action-success {
    position: absolute;
    right: 0;
    top: 0;
}
.fileuploader-item .column-actions .fileuploader-action-success:hover,
.fileuploader-item .column-actions .fileuploader-action-success:active {
    opacity: 0;
}

/* icon.remove */
.fileuploader-action-remove {
    background: #fae1e1;
    border: 1px solid #ffcfcf;
}
.fileuploader-action-remove:hover {
    background: #ffefef;
}
.fileuploader-action-remove:active {
    background: #ffcfcf;
}
.fileuploader-action-remove i:before,
.fileuploader-action-remove i:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    height: 8px;
    width: 2px;
    background-color: #f59595;
}
.fileuploader-action-remove i:before {
    -webkit-transform: rotate(45deg);
    		transform: rotate(45deg);
}
.fileuploader-action-remove i:after {
    -webkit-transform: rotate(-45deg);
    		transform: rotate(-45deg);
}

/* icon-start */
.fileuploader-action-start {
    background: #6381E6;
    border-radius: 50%;
}
.fileuploader-action-start i {
	position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -2px;
    margin-top: -5px;
    border-radius: 2px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
}
.fileuploader-action-start:hover {
    background: #758fe9;
}
.fileuploader-action-start:active {
    background: #6381E6;
    -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* icon.success */
.fileuploader-action-success {
    background: #6381E6;
    border: 0;
    -webkit-transform: rotate(45deg);
    		transform: rotate(45deg);
}
.fileuploader-action-success i:before,
.fileuploader-action-success i:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	-webkit-transform: rotate(0);
    		transform: rotate(0);
}
.fileuploader-action-success i:before {
    width: 4px;
    height: 2px;
    left: 6px;
    top: 11px;
    background: #fff;
}
.fileuploader-action-success i:after {
    top: 4px;
    left: 9px;
    width: 2px;
    height: 9px;
    background: #fff;
}

/* icon-download */
.fileuploader-action-download {
    background: #6381E6;
    border-radius: 50%;
}
.fileuploader-action-download i {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1px;
    margin-top: -4px;
    width: 2px;
    height: 5px;
    border-radius: 0;
    background: #fff;
}
.fileuploader-action-download i:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -4px;
    left: -3px;
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-top: 5px solid #fff;
    border-radius: 2px;
}
.fileuploader-action-download:hover {
    background: #758fe9;
}
.fileuploader-action-download:active {
    background: #6381E6;
    -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* icon-retry */
.fileuploader-action-retry {
    background: #6381E6;
    border-radius: 50%;
}
.fileuploader-action-retry i:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.fileuploader-action-retry i:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 3px;
    left: 3px;
    top: 9px;
    background: #6381E6;
	-webkit-transform: rotate(-35deg);
			transform: rotate(-35deg);
}
.fileuploader-action-retry:hover,
.fileuploader-action-retry:hover i:after {
    background: #758fe9;
}
.fileuploader-action-retry:active {
	-webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
	        box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}
.fileuploader-action-retry:active,
.fileuploader-action-retry:active i:after {
    background: #6381E6;
}

/* icon-sort */
.fileuploader-action-sort {
	background: #b0b8d0;
	text-align: center;
	cursor: move;
}
.fileuploader-action-sort:hover,
.fileuploader-action-sort:active {
	background: #979fb8;
}
.fileuploader-action-sort i {
	position: relative;
	display: inline-block;
	top: 8px;
	width: 8px;
	height: 2px;
	background: #fff;
	vertical-align: top;
}
.fileuploader-action-sort i:before {
	content: '';
	position: absolute;
	display: inline-block;
	background: #fff;
	width: 100%;
	height: 2px;
	top: -3px;
	left: 0;
}
.fileuploader-action-sort i:after {
	content: '';
	position: absolute;
	display: inline-block;
	background: #fff;
	width: 100%;
	height: 2px;
	top: 3px;
	left: 0;
}

/* item progress bar */
.fileuploader-item .fileuploader-progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
	width: 100%;
    height: 4px;
	border-radius: 4px;
    overflow: hidden;
}
.fileuploader-item .fileuploader-progressbar .bar {
	position: absolute;
	left: 0;
	top: 0;
    width: 0%;
	height: 100%;
    border-radius: 4px;
    background: #6381E6;
    -webkit-transition: width 0.3s ease;
    		transition: width 0.3s ease;
}
.fileuploader-item .progress-bar2 .fileuploader-progressbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
			user-select: none;
}
.fileuploader-item .progress-bar2 .fileuploader-progressbar .bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-radius: 0;
    background: rgba(104, 125, 219, 0.08);
    -webkit-transition: width 0.3s ease;
    		transition: width 0.3s ease;
}
.fileuploader-item .progress-bar2 span {
    position: absolute;
    top: 50%;
    margin-top: -29px;
    right: 15px;
    color: rgba(151, 159, 184, 0.16);
    font-size: 48px;
}

/* clipboard paste loading */
.fileuploader-input-caption .fileuploader-pending-loader {
    margin-right: 5px;
}
.fileuploader-pending-loader {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    vertical-align: middle;
}
.fileuploader-pending-loader:after,
.fileuploader-pending-loader .left-half {
    background: #fff;
}
.fileuploader-pending-loader .right-half,
.fileuploader-pending-loader .spinner {
    background: #789BEC;
}
.fileuploader-pending-loader:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 4;
}
.fileuploader-pending-loader .left-half,
.fileuploader-pending-loader .right-half,
.fileuploader-pending-loader .spinner {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}
.fileuploader-pending-loader .left-half {
    left: 0;
    opacity: 1;
    border-radius: 100% 0 0 100%/ 50% 0 0 50%;
    -webkit-animation: fileuploaderOpacity 3s steps(1, end) infinite;
            animation: fileuploaderOpacity 3s steps(1, end) infinite;
    z-index: 3;
}
.fileuploader-pending-loader .right-half {
    right: 0;
    opacity: 0;
    border-radius: 0 100% 100% 0/ 0 50% 50% 0;
    -webkit-animation: fileuploaderOpacity 3s steps(1, end) reverse infinite;
            animation: fileuploaderOpacity 3s steps(1, end) reverse infinite;
    z-index: 1;
}
.fileuploader-pending-loader .spinner {
    left: 0;
    border-radius: 100% 0 0 100%/ 50% 0 0 50%;
    -webkit-animation: fileuploaderSpin 3s linear infinite;
            animation: fileuploaderSpin 3s linear infinite;
    -webkit-transform-origin: center right;
            transform-origin: center right;
    z-index: 2;
}
/* fileuploader popup */
.fileuploader-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(40, 46, 61, 0.9);
	z-index: 10000;
	
	-webkit-animation: fileuploaderFadeIn 0.4s ease;
            animation: fileuploaderFadeIn 0.4s ease;
}
.fileuploader-popup-preview {
	width: 100%;
	height: 100%;
	padding: 40px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	z-index: 2;
}
.fileuploader-popup-preview .node {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 10px;
	text-align: center;
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
	-webkit-animation: fileuploaderSlideInDown 0.4s;
            animation: fileuploaderSlideInDown 0.4s;
}
.fileuploader-popup-preview .node.image > img,
.fileuploader-popup-preview .node.video > video,
.fileuploader-popup-preview .node.audio > audio,
.fileuploader-popup-preview .node.astext > div {
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	padding: 0;
	color: #47525d;
	background: #fff;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.4);
			box-shadow: 0 0 20px rgba(0,0,0,0.4);
    border-radius: 4px;
}
.fileuploader-popup-preview .node.audio audio {
	width: 450px;
}
.fileuploader-popup-preview .node.astext div {
    max-width: 992px;
	padding: 20px;
    margin: 0 auto;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	overflow-y: auto;
	white-space: pre-wrap;
}
.fileuploader-popup-preview .tools {
	width: 100%;
	margin-top: 30px;
}
.fileuploader-popup-preview .tools:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	margin-top: -240px;
	height: 2000px;
	background: rgba(35, 40, 54, 0.96);
	-webkit-box-shadow: 0px -2px 10px rgba(0,0,0,0.4);
			box-shadow: 0px -2px 10px rgba(0,0,0,0.4);
	z-index: -1;
}
.fileuploader-popup-preview .tools ul {
	display: table;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	
	-webkit-animation: fileuploaderSlideIn 0.4s;
            animation: fileuploaderSlideIn 0.4s;
}
.fileuploader-popup-preview .tools li {
	display: inline-block;
	padding: 0 20px;
	max-width: 50%;
	vertical-align: middle;
}
.fileuploader-popup-preview .tools li span {
	display: block;
	color: #868896;
	margin-top: 3px;
	font-size: 14px;
}
.fileuploader-popup-preview .tools li h5 {
	margin: 8px 0;
	color: #dfdeee;
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; 
}
.fileuploader-popup-preview .tools li a {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	-webkit-transition: opacity 0.2s ease;
			transition: opacity 0.2s ease;
}
.fileuploader-popup-preview .tools li a:hover {
	opacity: 0.6;
}
.fileuploader-popup-preview .tools li a i {
	display: inline-block;
	width: 23px;
	height: 23px;
	margin-bottom: 2px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.fileuploader-popup-preview .tools li a[data-action="crop"] i {
	background-image: url('data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiI+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNiAwLjd2LTAuN2gtMC43bC0zIDNoLTcuM3YtM2gtMnYzaC0zdjJoM3Y4aDh2M2gydi0zaDN2LTJoLTN2LTcuM2wzLTN6TTUgNWg1LjNsLTUuMyA1LjN2LTUuM3pNMTEgMTFoLTUuM2w1LjMtNS4zdjUuM3oiLz4KPC9zdmc+Cg==');
}
.fileuploader-popup-preview .tools li a[data-action="rotate-cw"] i {
	background-image: url('data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiI+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xNiA3di00bC0xLjEgMS4xYy0xLjMtMi41LTMuOS00LjEtNi45LTQuMS00LjQgMC04IDMuNi04IDhzMy42IDggOCA4YzIuNCAwIDQuNi0xLjEgNi0yLjhsLTEuNS0xLjNjLTEuMSAxLjMtMi43IDIuMS00LjUgMi4xLTMuMyAwLTYtMi43LTYtNnMyLjctNiA2LTZjMi40IDAgNC41IDEuNSA1LjUgMy41bC0xLjUgMS41aDR6Ii8+Cjwvc3ZnPgo=');
}
.fileuploader-popup-preview .tools li a[data-action="remove"] i {
	background-image: url('data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiI+CjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yIDV2MWgxdjljMCAwIDEuMSAxIDQuNSAxczQuNS0xIDQuNS0xdi05aDF2LTFoLTExek02IDE0aC0xdi03aDF2N3pNOCAxNGgtMXYtN2gxdjd6TTEwIDE0aC0xdi03aDF2N3oiLz4KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTEyIDNjMCAwIDAtMC41LTItMC44di0wLjdjMC0wLjgtMC43LTEuNS0xLjUtMS41aC0yYy0wLjggMC0xLjUgMC43LTEuNSAxLjV2MC43Yy0xLjYgMC4zLTIgMC44LTIgMC44aC0xdjFoMTF2LTFoLTF6TTYgMS41YzAtMC4zIDAuMi0wLjUgMC41LTAuNWgyYzAuMiAwIDAuNSAwLjIgMC41IDAuNXYwLjZjMC0wLjEtMC45LTAuMS0xLjUtMC4xcy0xLjEgMC0xLjUgMC4xdi0wLjZ6Ii8+Cjwvc3ZnPgo=');
}
.fileuploader-popup-preview .tools li.separator {
	position: relative;
	margin: 5px 40px 5px 0px;
	height: 40px;
	border-right: 1px solid #36394e;
}
.fileuploader-popup-preview .tools .buttons {
	text-align: center;
	margin-top: 30px;
	
	-webkit-animation: fileuploaderSlideIn 0.4s;
            animation: fileuploaderSlideIn 0.4s;
}
.fileuploader-popup-button {
	display: inline-block;
	background: transparent;
	color: #596671;
	font-weight: bold;
	border-radius: 4px;
	padding: 11px 20px;
	margin: 0 10px;
	cursor: pointer;
	border: none;
	outline: 0;
	border: 2px solid #596671;
	text-decoration: none;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;   
}
.fileuploader-popup-button:hover {
	background: #e6ebf4;
	border-color: #e6ebf4;
	color: #90a0bc;
	text-decoration: none;
}
.fileuploader-popup-button:focus,
.fileuploader-popup-button:active {
	color: #90a0bc;
	background: #d1d9e8;
	border-color: #d1d9e8;
	text-decoration: none;
}
.fileuploader-popup-button.button-success {
	color: #fff;
	background: #6381E6;
	border-color: #6381E6;
}
.fileuploader-popup-button.button-success:hover {
	background: #758fe9;
	border-color: #758fe9;
	color: #fff;
	text-decoration: none;
}
.fileuploader-popup-button.button-success:focus,
.fileuploader-popup-button.button-success:active {
	color: #fff;
	background: #6381E6;
	border-color: #6381E6;
}

.fileuploader-cropper,
.fileuploader-cropper * {
	-webkit-user-select: none;
       -moz-user-select: none;
    	-ms-user-select: none;
			user-select: none;
}
.fileuploader-cropper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,20,27,.65);
    z-index: 9;
}
.fileuploader-cropper-area {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	z-index: 2;
}
.fileuploader-cropper-area.has-grid:before,
.fileuploader-cropper-area.has-grid:after {
	content: '';
	position: absolute;
	border: 1px solid rgba(250, 250, 250, 0.8);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
	z-index: 1;
}
.fileuploader-cropper-area.has-grid:before {
	top: 0;
	left: 50%;
	height: 100%;
	width: 34%;
	border-top: 0;
	border-bottom: 0;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
}
.fileuploader-cropper-area.has-grid:after {
	top: 50%;
	left: 0;
	height: 34%;
	width: 100%;
	border-left: 0;
	border-right: 0;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}
.fileuploader-cropper-area.has-grid.moving:before,
.fileuploader-cropper-area.has-grid.moving:after {
	opacity: 1;
}
.fileuploader-cropper-area .point {
	position: absolute;
	width: 12px;
	height: 12px;
	background: #fafafa;
	-webkit-box-shadow: 0 0 6px rgba(0,0,0,0.4);
	        box-shadow: 0 0 6px rgba(0,0,0,0.4);
	border-radius: 50%;
	z-index: 3;
}
.fileuploader-cropper-area .point-a {
	top: -6px;
	left: -6px;
	cursor: nw-resize;
}
.fileuploader-cropper-area .point-b {
	top: -6px;
	left: 50%;
	margin-left: -6px;
	cursor: n-resize;
}
.fileuploader-cropper-area .point-c {
	top: -6px;
	right: -6px;
	cursor: ne-resize;
}
.fileuploader-cropper-area .point-d {
	top: 50%;
	right: -6px;
	margin-top: -6px;
	cursor: w-resize;
}
.fileuploader-cropper-area .point-e {
	bottom: -6px;
	right: -6px;
	cursor: nw-resize;
}
.fileuploader-cropper-area .point-f {
	bottom: -6px;
	left: 50%;
	margin-left: -6px;
	cursor: s-resize;
}
.fileuploader-cropper-area .point-g {
	bottom: -6px;
	left: -6px;
	cursor: sw-resize;
}
.fileuploader-cropper-area .point-h {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	cursor: w-resize;
}

.fileuploader-cropper-area .area-move {
	position: absolute;
	width: 95%;
	height: 95%;
	left: 50%;
	top: 50%;
	z-index: 2;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
	cursor: move;
}
.fileuploader-cropper-area .area-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.fileuploader-cropper-area .area-image img {
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	-webkit-transform-origin: top left;
			transform-origin: top left;
}

/* fileuploader-sorter */
.fileuploader-item.sorting {
	background: #f5f6fA;
	border-radius: 4px;
	opacity: 0.9;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	        box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	z-index: 799;
}

.fileuploader-item.sorting,
.fileuploader-item.sorting .fileuploader-item-image img,
.fileuploader-item.sorting .fileuploader-item-image canvas,
.fileuploader-item.sorting .fileuploader-item-icon,
.fileuploader-sorter-placeholder {
	-webkit-animation: none;
    		animation: none;
}
.fileuploader-sorter-placeholder {
	background: rgba(0, 0, 0, 0.03);
	margin: 0;
	padding: 0;
}

/* animations */
@-webkit-keyframes fileuploaderOpacity {
    0% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
@keyframes fileuploaderOpacity {
    0% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fileuploaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fileuploaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fileuploaderScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes fileuploaderScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes fileuploaderSlideIn {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes fileuploaderSlideIn {
    from {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes fileuploaderSlideOut {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
}
@keyframes fileuploaderSlideOut {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
}
@-webkit-keyframes fileuploaderSlideInDown {
    from {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fileuploaderSlideInDown {
    from {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@-webkit-keyframes fileuploaderSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes fileuploaderSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}/* input & thumbnails size */
.fileuploader-theme-thumbnails .fileuploader-thumbnails-input,
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item {
	display: inline-block;
	width: 140px;
	height: 100px;
    line-height: 76px;
	padding: 10px;
	vertical-align: top;
}
/* input-inner */
.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner {
	width: 100%;
	height: 100%;
    border: 2px dashed #c2cdda;
    border-radius: 4px;
    text-align: center;
    font-size: 30px;
    color: #acb9c7;
	vertical-align: top;
	cursor: pointer;
	-webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
	-webkit-transition: all 0.1s ease;
	        transition: all 0.1s ease;
}
.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner:hover {
	border-color: #92a7bf;
	color: #899baf;
}
.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner:active,
.fileuploader-theme-thumbnails .fileuploader-dragging .fileuploader-thumbnails-input-inner {
	background: #fff;
}
/* thumbnails */
.fileuploader-theme-thumbnails .fileuploader-items-list {
	margin: -5px -10px;
}
.fileuploader-theme-thumbnails .fileuploader-item {
	-webkit-animation: fileuploaderScaleIn 0.2s ease;
			animation: fileuploaderScaleIn 0.2s ease;
	border-bottom: 0;
}
.fileuploader-theme-thumbnails .fileuploader-item-inner {
	position: relative;
	border-radius: 4px;
	background: rgba(255,255,255,0.6);
	overflow: hidden;
	z-index: 1;
}
.fileuploader-theme-thumbnails .fileuploader-item-inner,
.fileuploader-theme-thumbnails .fileuploader-item-inner .thumbnail-holder,
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item-image {
    width: 100%;
	height: 100%;
}
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item-image {
	position: relative;
	text-align: center;
	overflow: hidden;
}
.fileuploader-theme-thumbnails .fileuploader-item .fileuploader-item-image img,
.fileuploader-theme-thumbnails .fileuploader-item .fileuploader-item-image canvas {
    border-radius: 0;
}
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item-image img {
	max-height: 100%;
	min-height: 100%;
    max-width: none;
}
.fileuploader-theme-thumbnails .fileuploader-item .fileuploader-item-image.fileuploader-loading:after {
	top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    opacity: 0.2;
}
.fileuploader-theme-thumbnails .fileuploader-items-list .actions-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background: rgba(33, 33, 33, 0.55);
	text-align: right;
	-webkit-transition: opacity 0.2s ease;
			transition: opacity 0.2s ease;
	opacity: 0;
	z-index: 3;
}
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item:hover .actions-holder {
	opacity: 1;
}
.fileuploader-theme-thumbnails .fileuploader-action {
	background: none;
	border: 0;
	width: 24px;
	height: 24px;
	margin: 3px 3px 0 0;
	z-index: 2;
}
.fileuploader-theme-thumbnails .fileuploader-action-remove i:before,
.fileuploader-theme-thumbnails .fileuploader-action-remove i:after {
	top: 4px;
	left: 10px;
	height: 14px;
	width: 3px;
	background: #fff;
}

.fileuploader-theme-thumbnails .fileuploader-action-sort i {
    top: 10px;
    width: 12px;
}
.fileuploader-theme-thumbnails .fileuploader-action-sort i:before {
    top: -4px;
}
.fileuploader-theme-thumbnails .fileuploader-action-sort i:after {
    top: 4px;   
}

.fileuploader-theme-thumbnails .fileuploader-action-popup {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
	z-index: 1;
}

/* uploading */
.fileuploader-theme-thumbnails .fileuploader-item.upload-failed {
	background: none;
}
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item.upload-failed .fileuploader-item-icon {
	display: block !important;
	background: #db6868 !important;
	color: #fff;
}
.fileuploader-theme-thumbnails .fileuploader-item.upload-pending .fileuploader-action-remove:after {
	right: 0;
	margin-top: -14px;
}
.fileuploader-theme-thumbnails .fileuploader-item .progress-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fileuploader-theme-thumbnails .fileuploader-item .progress-holder .fileuploader-progressbar {
	position: relative;
    top: 50%;
	width: 80%;
    height: 6px;
	margin: 0 auto;
	background: #dde4f6;
}

/* sorter */
.fileuploader-theme-thumbnails .fileuploader-item.sorting {
    -webkit-animation: none;
			animation: none;
}
.fileuploader-theme-thumbnails .fileuploader-sorter-placeholder {
    background: none;   
}
.fileuploader-theme-thumbnails .fileuploader-sorter-placeholder div {
    background: #fff;
}/*!* LIBRARIES *!

@import "../../../node_modules/bootstrap/scss/bootstrap";

!* BASIC STYLES *!

@import "_variables.scss";
@import "_breakpoints.scss";

!* RESPONSIVENESS BELOW *!

@import "responsiveness.scss";*/

.single-media .fileuploader {
  background: transparent !important;
  padding: 0 !important;
}

.dt-bootstrap .color-palette {
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}

.dt-bootstrap .dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
}

.dt-bootstrap .dropdown-item:hover {
  background: #eee;
}

.dt-bootstrap .dataTables_length {
  display: inline-block;
  margin: 0 0 0 10px;
}

.dt-bootstrap td .btn {
  margin: 0 2px;
}

/* PAGES */

.padding-left-10 {
  padding-left: 10px;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.page-sidebar {
  width: 240px;
}

.page-sidebar .site-logo {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  .page-sidebar .site-logo {
    width: 80%;
    margin-top: 0;
  }
}

.dashboard-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .dashboard-container .col-md-2 {
    min-width: 250px;
  }

  .dashboard-container .col-md-4 {
    min-width: 500px;
  }
}

.page-sidebar-collapsed.admin-panel .object-change {
  display: none;
}

.page-sidebar-collapsed.admin-panel .logo-box {
  padding: 5px;
}

.page-sidebar-collapsed.admin-panel .page-content {
  width: calc( 100% - 60px);
}

@media (min-width: 768px) {
  .admin-panel .page-content {
    width: calc(100% - 240px);
  }
}

.admin-panel .object-change {
  text-align: left;
  padding: 10px 20px;
  margin-top: 14px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.admin-panel .object-change .change {
  cursor: pointer;
  margin-top: 8px;
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.admin-panel .object-change .change i {
  font-size: 10px;
  position: relative;
  bottom: 2px;
  margin-left: 3px;
}

.admin-panel .object-change .object-image {
  height: 50px;
  width: 50px;
}

.admin-panel .object-change .object-image .temporary-photo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
}

.admin-panel .object-change .object-image .temporary-photo i {
  color: #fff;
  line-height: 50px;
}

.admin-panel .page-footer {
  text-align: center;
  padding: 5px 20px;
  background-color: #d3d9e0;
  height: 70px;
  line-height: 60px;
  font-size: 14px;
}

.admin-panel .page-footer p {
  vertical-align: middle;
  margin: 0;
  display: inline-block;
}

.admin-panel #main-wrapper .panel.promote-panel,
.admin-panel #main-wrapper .panel.add-object-panel,
.admin-panel #main-wrapper .panel.review-panel,
.admin-panel #main-wrapper .panel.favourite-panel,
.admin-panel #main-wrapper .panel.general-info-panel {
  padding-top: 25px;
  text-align: center;
}

.admin-panel #main-wrapper .panel.promote-panel i,
.admin-panel #main-wrapper .panel.add-object-panel i,
.admin-panel #main-wrapper .panel.review-panel i,
.admin-panel #main-wrapper .panel.favourite-panel i,
.admin-panel #main-wrapper .panel.general-info-panel i {
  color: #0859bd;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body,
.admin-panel #main-wrapper .panel.review-panel .panel-body,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body {
  padding-top: 0 !important;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p.subtitle,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p.subtitle,
.admin-panel #main-wrapper .panel.review-panel .panel-body p.subtitle,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p.subtitle,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p.subtitle {
  font-size: 14px !important;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p.number,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p.number,
.admin-panel #main-wrapper .panel.review-panel .panel-body p.number,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p.number,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p.number {
  font-size: 28px !important;
  font-weight: 500;
  margin-top: 10px;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body .place-number,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body .place-number,
.admin-panel #main-wrapper .panel.review-panel .panel-body .place-number,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body .place-number,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body .place-number {
  font-weight: 500;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body hr,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body hr,
.admin-panel #main-wrapper .panel.review-panel .panel-body hr,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body hr,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body hr {
  margin: 10px 0;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p,
.admin-panel #main-wrapper .panel.review-panel .panel-body p,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p {
  font-size: 18px;
  margin: 0;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p.smaller,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p.smaller,
.admin-panel #main-wrapper .panel.review-panel .panel-body p.smaller,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p.smaller,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p.smaller {
  font-size: 12px;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p.small,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p.small,
.admin-panel #main-wrapper .panel.review-panel .panel-body p.small,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p.small,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p.small {
  font-size: 14px;
}

.admin-panel #main-wrapper .panel.promote-panel .panel-body p:last-of-type,
.admin-panel #main-wrapper .panel.add-object-panel .panel-body p:last-of-type,
.admin-panel #main-wrapper .panel.review-panel .panel-body p:last-of-type,
.admin-panel #main-wrapper .panel.favourite-panel .panel-body p:last-of-type,
.admin-panel #main-wrapper .panel.general-info-panel .panel-body p:last-of-type {
  margin-bottom: 10px;
}

.admin-panel #main-wrapper .panel.general-info-panel .message {
  font-size: 13px !important;
  margin-top: 20px !important;
}

.admin-panel #main-wrapper .panel.general-info-panel .additional-info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.admin-panel #main-wrapper .panel.general-info-panel .additional-info .upper {
  font-weight: 600;
}

.admin-panel #main-wrapper .panel.general-info-panel .additional-info .upper,
.admin-panel #main-wrapper .panel.general-info-panel .additional-info .bottom {
  font-size: 14px;
  text-align: center;
  margin: 0 !important;
}

.admin-panel #main-wrapper .panel.general-info-panel .user-info-wrapper {
  position: relative;
}

.admin-panel #main-wrapper .panel.general-info-panel .mini-img {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.admin-panel #main-wrapper .panel.general-info-panel .user-info {
  text-align: left;
  position: relative;
}

.admin-panel #main-wrapper .panel.general-info-panel .user-info .name {
  font-size: 14px;
  font-weight: 600;
}

.admin-panel #main-wrapper .panel.general-info-panel .user-info .date {
  font-size: 11px;
  margin: 0 !important;
}

.admin-panel #main-wrapper .panel.general-info-panel p {
  text-align: left;
}

.admin-panel #main-wrapper .panel.welcome-panel {
  font-size: 16px;
}

.admin-panel #main-wrapper .panel.welcome-panel .panel-body {
  padding-top: 0 !important;
}

.admin-panel #main-wrapper .panel.welcome-panel .welcome-text {
  font-size: 20px;
  font-weight: 500;
}

.admin-panel #main-wrapper .panel.welcome-panel .welcome-text .username {
  color: #0859bd;
}

.admin-panel #main-wrapper .admin-object-name {
  font-weight: 600;
  margin-left: 10px;
}

.admin-panel #main-wrapper .panel {
  position: relative;
}

.admin-panel #main-wrapper .panel-title {
  color: #2b2b2b;
  padding-bottom: 0;
  line-height: 34px;
}

.admin-panel #main-wrapper .panel-heading {
  background-color: #0859bd;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 7px 7px 7px 20px;
}

.admin-panel #main-wrapper .panel-heading .pull-right {
  margin-top: 6px;
}

.admin-panel #main-wrapper .panel-heading .btn.btn-primary {
  border-color: #fff !important;
  background-color: #0859bd !important;
  margin: 0 !important;
}

.admin-panel #main-wrapper .panel-heading i {
  color: #fff;
}

.admin-panel #main-wrapper .panel-body {
  padding-top: 10px !important;
}

@media (min-width: 992px) {
  .admin-panel #main-wrapper .review-panel,
  .admin-panel #main-wrapper .favourite-panel,
  .admin-panel #main-wrapper .promote-panel,
  .admin-panel #main-wrapper .welcome-panel,
  .admin-panel #main-wrapper .add-object-panel {
    min-height: 215px;
  }
}

.admin-panel .slimScrollDiv {
  width: 100%;
}

.admin-panel .page-sidebar-menu i {
  color: #0859bd !important;
}

.admin-panel .page-sidebar-menu ul li.active-page > a:after {
  background-color: #0859bd;
  width: 7px;
}

.admin-panel .page-sidebar {
  min-height: 100vh;
  border-right: 1px solid #d7d7d7;
}

.admin-panel .page-sidebar .page-sidebar-inner .header {
  display: none;
}

.admin-panel .page-sidebar .logo-box {
  margin-left: 10px;
  width: 85%;
  padding-left: 0;
  display: inline-block;
}

.admin-panel .page-sidebar .logo-box img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.admin-panel .logo-links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.admin-panel #fixed-sidebar-toggle-button {
  display: none;
}

.admin-panel #collapsed-sidebar-toggle-button,
.admin-panel #toggle-fullscreen,
.admin-panel #back-to-home {
  color: #0859bd !important;
}

.admin-panel #back-to-home {
  margin-left: 7px;
  font-size: 16px;
  margin-top: 12px;
}

.admin-panel .page-header {
  height: 70px;
}

.admin-panel .page-header .special-offer {
  display: inline-block;
  padding-top: 15px;
}

@media (max-width: 991.98px) {
  .admin-panel .page-header .special-offer {
    display: none;
  }
}

.admin-panel .page-header .special-offer p {
  margin: 0;
  display: inline-block;
  font-size: 14px;
  color: #0859bd;
  margin-right: 15px;
  vertical-align: middle;
}

.admin-panel .page-header .special-offer span {
  color: #0859bd;
}

.admin-panel .page-header .special-offer span.big {
  font-size: 30px;
  vertical-align: middle;
}

.admin-panel .page-header .special-offer span.small {
  font-size: 15px;
  vertical-align: -webkit-baseline-middle;
}

.admin-panel .page-header .special-offer.with-chart {
  margin-right: -240px;
}

.admin-panel .page-header .nav {
  height: 70px;
  padding-top: 12px;
}

.admin-panel .page-header .nav > li > a {
  padding-top: 14px;
}

.admin-panel .page-header .nav ul li {
  color: #0859bd;
}

.admin-panel .page-header .nav ul li i {
  color: #0859bd;
}

.admin-panel .page-header .navbar-default {
  background-color: #fff;
  height: 70px;
}

.admin-panel .page-header .navbar-default .navbar-collapse {
  height: 70px !important;
  text-align: center;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status {
  display: inline-block;
  float: left;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .left,
.admin-panel .page-header .navbar-default .navbar-right .payment-status .right {
  display: inline-block;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .left {
  padding-right: 15px;
  border-right: 1px solid #d7d7d7;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .left .buy-now {
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .left .buy-now a {
  color: #0859bd;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .right {
  padding-left: 15px;
  margin-right: 40px;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .right .amount-title {
  font-weight: 600;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status .right .amount {
  text-align: center;
}

.admin-panel .page-header .navbar-default .navbar-right .payment-status p {
  margin-bottom: 0;
  color: #0859bd;
}

.admin-panel .page-header .navbar-default .navbar-right .dropdown i {
  color: #0859bd;
  margin-left: 8px;
}

.chart-sum {
  font-weight: bold;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border-color: #d7d7d7;
  height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 4px;
}

/* NAV TABS */

.nav-tabs-custom {
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.nav-tabs-custom > .nav-tabs {
  margin: 0;
  border-bottom-color: #f4f4f4;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.nav-tabs-custom > .nav-tabs > li {
  border-top: 3px solid transparent;
  margin-right: 5px;
}

.nav-tabs-custom > .nav-tabs > li.disabled > a {
  color: #777;
}

.nav-tabs-custom > .nav-tabs > li > a {
  color: #444;
  border-radius: 0;
}

.nav-tabs-custom > .nav-tabs > li > a.text-muted {
  color: #999;
}

.nav-tabs-custom > .nav-tabs > li > a,
.nav-tabs-custom > .nav-tabs > li > a:hover {
  background: transparent;
  margin: 0;
}

.nav-tabs-custom > .nav-tabs > li > a:hover {
  color: #999;
}

.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  border-color: transparent;
}

.nav-tabs-custom > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}

.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
  background-color: #fff;
  color: #444;
}

.nav-tabs-custom > .nav-tabs > li.active > a {
  border-top-color: transparent;
  border-left-color: #f4f4f4;
  border-right-color: #f4f4f4;
}

.nav-tabs-custom > .nav-tabs > li:first-of-type {
  margin-left: 0;
}

.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  border-left-color: transparent;
}

.nav-tabs-custom > .nav-tabs.pull-right {
  float: none !important;
}

.nav-tabs-custom > .nav-tabs.pull-right > li {
  float: right;
}

.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  margin-right: 0;
}

.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  border-left-width: 1px;
}

.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  border-left-color: #f4f4f4;
  border-right-color: transparent;
}

.nav-tabs-custom > .nav-tabs > li.header {
  line-height: 35px;
  padding: 0 10px;
  font-size: 20px;
  color: #444;
}

.nav-tabs-custom > .nav-tabs > li.header > .fa,
.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
.nav-tabs-custom > .nav-tabs > li.header > .ion {
  margin-right: 5px;
}

.nav-tabs-custom > .tab-content {
  background: #fff;
  padding: 10px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.nav-tabs-custom .dropdown.open > a:active,
.nav-tabs-custom .dropdown.open > a:focus {
  background: transparent;
  color: #999;
}

.nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}

.nav-tabs-custom.tab-info > .nav-tabs > li.active {
  border-top-color: #00c0ef;
}

.nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  border-top-color: #dd4b39;
}

.nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  border-top-color: #f39c12;
}

.nav-tabs-custom.tab-success > .nav-tabs > li.active {
  border-top-color: #00a65a;
}

.nav-tabs-custom.tab-default > .nav-tabs > li.active {
  border-top-color: #d2d6de;
}

/* PAGINATION */

.pagination > li > a {
  background: #fafafa;
  color: #666;
}

.pagination.pagination-flat > li > a {
  border-radius: 0 !important;
}

#map-box {
  height: 500px;
}

.facilities-title {
  cursor: pointer;
  font-size: 22px;
  padding: 6px;
  border-left: 5px solid #eee;
  margin: 5px;
}

.facilities-title:hover,
.facilities-title[aria-expanded="true"] {
  border-left: 5px solid #0859BC;
  background: #eee;
}

.row {
  margin-bottom: 10px;
}

.subscription-active {
  color: limegreen;
}

.bold {
  font-weight: bold;
}

.tip-mark {
  background-color: #EBEBEB;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.dropdown a {
  padding-top: 7px;
}

.dropdown-toggle-options {
  height: 34px;
}

@media (max-width: 767.98px) {
  .object-edit-menu {
    width: 100%;
  }
}

.extra-buttons {
  margin-top: 25px;
}

@media (max-width: 767.98px) {
  .extra-buttons {
    margin-top: 0;
    padding-left: 100px;
  }
}

#reply_content {
  width: 100%;
}

.submit-section {
  padding-left: 0;
}

.box-title {
  border-bottom: 1px dotted #EBEBEB;
  font-size: 20px;
  padding-bottom: 10px;
}

.select-period,
.pay-button {
  padding-top: 10px;
}

.pay-button {
  float: left;
}

@media (max-width: 991.98px) {
  .pay-button {
    text-align: center;
    float: initial;
  }
}

.promotion-row {
  padding-bottom: 20px;
  padding-top: 10px;
  border-bottom: 1px solid #d3d3d3;
}

@media (max-width: 991.98px) {
  .promotion-row {
    padding-bottom: 10px;
  }
}

.promotion-expiry {
  margin-left: 170px;
}

@media (max-width: 991.98px) {
  .promotion-expiry {
    display: block;
    margin-left: 130px;
  }
}

.dataTables_length {
  margin-left: 0 !important;
}

.short-name-powertip {
  cursor: pointer;
}

.fileuploader-items-list .fileuploader-item:first-child {
  border: 3px solid #0859bd;
}

.fileuploader-items-list .fileuploader-item:nth-child(-n+3) .fileuploader-item-inner {
  border: 1px solid #484848;
}

.single-media .fileuploader-item:first-child {
  border: none;
}

.single-media .fileuploader-item:nth-child(-n+3) .fileuploader-item-inner {
  border: none;
}

.first-pic {
  display: inline-block;
  width: 50px;
  height: 1.3em;
  border: 3px solid #0859bd;
  margin-right: 5px;
}

.three-pics {
  display: inline-block;
  width: 40px;
  height: 1.2em;
  border: 2px solid #484848;
  margin-right: 5px;
}

.dot {
  display: none;
  background-color: limegreen;
  margin-left: 5px;
  border-radius: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.dot.saved {
  display: inline-block;
}

.youtube_link {
  width: 97%;
  display: inline;
}

.links-info {
  font-size: 12px;
}

.links-info i {
  font-size: 14px;
}

.vertical-center-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.structure-name {
  margin-left: 15px;
  cursor: pointer;
}

.gif-wrap {
  text-align: center;
  display: none;
}

@media (max-width: 991.98px) {
  .gif-wrap img {
    max-width: 50px;
  }
}

@media (max-width: 991.98px) {
  .gif-wrap {
    position: relative;
    margin-top: 50px;
  }

  .gif-wrap:after {
    content: 'Wczytywanie...';
    position: absolute;
    left: 50%;
    top: -25px;
    font-family: 'Lato', sans-serif;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.packet-warning {
  display: none;
}

.packet-warning-msg {
  color: red;
}

.city-position {
  padding-top: 25px;
}

.subscriptions {
  padding-top: 10px;
}

.subscriptions .subscriptions-cost {
  width: 100px;
  display: inline;
  margin-top: -8px;
}

.promotion-photo {
  text-align: center;
}

.promotion-title {
  font-size: 24px;
}

@media (max-width: 991.98px) {
  .promotion-title {
    padding-left: 10px;
  }
}

.structure-title {
  padding: 15px 15px 15px 5px;
  font-size: 15px;
  border: 1px dotted #d3d3d3;
  border-radius: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  display: table;
  padding-left: 4px;
  padding-bottom: 4px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: table-row;
}

.promotion-image {
  height: auto;
  max-width: 500px;
  max-height: 300px;
}

@media (max-width: 991.98px) {
  .promotion-image {
    width: 93%;
  }
}

.object-user {
  overflow: auto;
}

@media (max-width: 991.98px) {
  .fileuploader-theme-thumbnails .fileuploader-items-list .actions-holder {
    opacity: 0.2;
  }
}

@media (max-width: 991.98px) {
  .page-inner {
    cursor: pointer;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .panel {
    padding-left: 0;
    padding-right: 0;
  }

  .panel .panel-body {
    padding: 10px 5px;
  }

  .mobile-subscription-header {
    font-size: 16px;
  }
}

.mobile-subscription {
  text-align: center;
}

.mobile-subscription p {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .mobile-subscription {
    display: none;
  }
}

.mobile-arrow-down {
  display: none;
  color: #0859bd;
}

@media (max-width: 991.98px) {
  .mobile-arrow-down {
    display: initial;
    font-size: 15px;
  }
}

.no-wrap {
  white-space: nowrap;
}

.promotions-subscription-title {
  margin-left: 5px;
}

@media (max-width: 991.98px) {
  .panel-body .btn-group {
    text-align: left;
  }
}

.payments-title {
  margin: 20px 10px 20px 10px;
}

@media (max-width: 991.98px) {
  .payments-title {
    margin: 0 10px 20px 10px;
  }
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: left;
}

@media (min-width: 768px) {
  .new-structure-modal {
    width: 800px;
    margin-left: -75px;
  }
}

#price_max,
#price {
  height: 37px;
}

.reset-password {
  margin-top: 20px;
}

#active_to {
  height: 38px;
}

.limit-warning {
  color: red;
  font-weight: bold;
  display: none;
  font-size: 16px;
}

.structure-prices input {
  height: 38px;
}

.mass-inquiry-content {
  width: 100%;
}

.block-ip {
  margin-left: 10px;
}

.promotion-inline {
  display: inline;
}

.promotion-description {
  color: gray;
}

.promotion-period {
  width: 34%;
  display: inline;
  margin-right: 5px;
}

.promotion-active {
  color: limegreen;
}

.promotion-inactive {
  color: #EBEBEB;
}

.promotion-buttons-wrapper {
  margin-top: 15%;
}

.fb-content {
  width: 100%;
}

@media (max-width: 767.98px) {
  .dates {
    width: 50%;
  }

  .dates.dates-left {
    float: left;
  }

  .dates.dates-right {
    float: right;
  }
}

.btn-idosell {
  margin-top: 20px;
}

.prev {
  position: relative;
  z-index: 123;
}

@media (max-width: 991.98px) {
  .slimScrollDiv {
    overflow: scroll !important;
    height: calc(100vh - 76px) !important;
    padding-bottom: 50px;
  }
}

