@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
.animated, .icon-preview-small:before, .tooltip, .modal .modal-dialog .modal-content modal, .modal-backdrop, input-holder.error:before, .ui-draggable-dragging, .loader-drop {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite, .infinite.icon-preview-small:before, .infinite.tooltip, .modal .modal-dialog .modal-content modal.infinite, .infinite.modal-backdrop, input-holder.infinite.error:before, .infinite.ui-draggable-dragging, .infinite.loader-drop {
  animation-iteration-count: infinite;
}

.animated.hinge, .hinge.icon-preview-small:before, .hinge.tooltip, .modal .modal-dialog .modal-content modal.hinge, .hinge.modal-backdrop, input-holder.hinge.error:before, .hinge.ui-draggable-dragging, .hinge.loader-drop {
  animation-duration: 2s;
}

.animated.flipOutX, .flipOutX.tooltip, .modal .modal-dialog .modal-content modal.flipOutX, .flipOutX.modal-backdrop, input-holder.flipOutX.error:before, .flipOutX.ui-draggable-dragging, .flipOutX.loader-drop,
.animated.flipOutY,
.flipOutY.tooltip,
.modal .modal-dialog .modal-content modal.flipOutY,
.flipOutY.modal-backdrop,
input-holder.flipOutY.error:before,
.flipOutY.ui-draggable-dragging,
.flipOutY.loader-drop,
.animated.bounceIn,
.animated.icon-preview-small:hover:before,
.bounceIn.tooltip,
.tooltip.icon-preview-small:hover:before,
.modal .modal-dialog .modal-content modal.bounceIn,
.bounceIn.modal-backdrop,
.modal-backdrop.icon-preview-small:hover:before,
input-holder.bounceIn.error:before,
.bounceIn.ui-draggable-dragging,
.ui-draggable-dragging.icon-preview-small:hover:before,
.bounceIn.loader-drop,
.loader-drop.icon-preview-small:hover:before,
.animated.bounceOut,
.icon-preview-small:before,
.bounceOut.tooltip,
.modal .modal-dialog .modal-content modal.bounceOut,
.modal .modal-dialog .modal-content modal.icon-preview-small:before,
.bounceOut.modal-backdrop,
input-holder.bounceOut.error:before,
input-holder.error.icon-preview-small:before,
.bounceOut.ui-draggable-dragging,
.bounceOut.loader-drop {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn, .icon-preview-small:hover:before {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut, .icon-preview-small:before {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn, .tooltip, .modal-backdrop, .loader-drop {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip, .flip.icon-preview-small:before, .flip.tooltip, .modal .modal-dialog .modal-content modal.flip, .flip.modal-backdrop, input-holder.flip.error:before, .flip.ui-draggable-dragging, .flip.loader-drop {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn, .modal .modal-dialog .modal-content modal, input-holder.error:before, .ui-draggable-dragging {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

* {
  margin: 0;
  border: 0;
  padding: 0;
  outline: 0;
  border-radius: 0;
  background: none;
  vertical-align: top;
  -webkit-tap-highlight-color: transparent;
}
*, *:after, *:before {
  box-sizing: border-box;
}

a, a:hover, a:active {
  color: inherit;
  text-decoration: inherit;
}

.guide {
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  max-width: 1164px;
  display: block;
}
.guide:after {
  clear: both;
  content: "";
  display: block;
}

html {
  float: left;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  float: left;
  width: 100%;
  height: 100%;
  font: 16px/24px "Roboto", "Arial", sans-serif;
  color: #474747;
  overflow: hidden;
  background: #f5f6fa;
}

li {
  display: block;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.text-el, nav > ul > li > ul > li > a > span, nav > ul > li > a > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

select, input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.float-left {
  float: left;
}

.display-float {
  display: block;
  float: left;
  width: 100%;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontAwesome/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontAwesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontAwesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontAwesome/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontAwesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontAwesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before, input-holder.error:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/fonts/icomoon.eot?v=222");
  src: url("../fonts/icomoon/fonts/icomoon.eot?v=222#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?v=222") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?v=222") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?v=222#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-weight: normal;
  font-style: normal;
  src: local("mardoto-regular"), url("../fonts/armenian/mardoto-regular-webfont.woff2") format("woff2"), url("../fonts/armenian/mardoto-regular-webfont.woff") format("woff"), url("../fonts/armenian/mardoto-regular-webfont.ttf") format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  font-style: normal;
  src: local("mardoto-bold"), url("../fonts/armenian/mardoto-bold-webfont.woff2") format("woff2"), url("../fonts/armenian/mardoto-bold-webfont.woff") format("woff"), url("../fonts/armenian/mardoto-bold-webfont.ttf") format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: local("mardoto-bold"), url("../fonts/armenian/mardoto-bold-webfont.woff2") format("woff2"), url("../fonts/armenian/mardoto-bold-webfont.woff") format("woff"), url("../fonts/armenian/mardoto-bold-webfont.ttf") format("truetype");
}
.loader-drop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 63, 78, 0.2);
  z-index: 100000;
  animation-duration: 400ms;
}
.loader-drop > .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
}
.loader-drop > .loading > .load-b {
  width: 56px;
  height: 56px;
  background-color: #303F4E;
  animation: sk-rotateplane 2.2s infinite ease-in-out;
  animation-fill-mode: both;
  text-align: center;
  color: white;
  font: 24px/56px icomoon;
}
.loader-drop > .loading > .load-b:before {
  content: "\e909";
}

@keyframes sk-rotateplane {
  0%, 50% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  25%, 75% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
[ng-click] {
  cursor: pointer;
}

.main-ui {
  float: left;
  width: 100%;
  height: 100%;
}

main {
  display: block;
  overflow: hidden;
  float: left;
  width: 100%;
  height: 100%;
}
main aside {
  width: 58px;
  float: right;
  height: 100%;
  transition: 250ms width;
  position: relative;
  z-index: 500;
  box-shadow: 3px 0 10px 0 rgba(119, 119, 119, 0.1);
}
main section {
  width: calc(100% - 58px);
  transition: 250ms width;
  float: right;
  height: 100%;
}
main article {
  float: left;
  width: 100%;
  height: calc(100% - 50px);
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
main article::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}
main article::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
  border: 3px solid #f5f7fa;
}
main article::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
main article::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.menu-opened main aside {
  width: 240px;
}
.menu-opened main section {
  width: calc(100% - 240px);
}

.content-holder {
  float: left;
  width: 100%;
}

.row {
  float: left;
  width: 100%;
}

.bread-crumbs {
  float: left;
  width: 100%;
}
.bread-crumbs > ul {
  float: left;
  width: 100%;
  background: #ffffff;
  padding: 0 16px;
}
.bread-crumbs > ul > li {
  float: left;
  position: relative;
  color: #474747;
  font: 500 14px/48px "Roboto", "Arial", sans-serif;
  margin: 0 0 1px;
}
.bread-crumbs > ul > li + li {
  padding: 0 0 0 32px;
}
.bread-crumbs > ul > li + li:before {
  content: "\f105";
  display: block;
  position: absolute;
  top: 0;
  left: 13px;
  font: 16px FontAwesome;
  line-height: inherit;
}
.bread-crumbs > ul > li > a {
  float: left;
  display: block;
  font: inherit;
  text-transform: capitalize;
}
.bread-crumbs > ul > li:last-child {
  pointer-events: none;
}

.title-field {
  float: left;
  width: 100%;
  margin-top: 1px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 3px 10px 0 rgba(119, 119, 119, 0.1);
}

.bc-dropdown-container {
  float: left;
  width: 100%;
  padding: 8px;
}

.bc-dropdown-container-shadow {
  float: left;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px 3px rgba(119, 119, 119, 0.1);
}

.page-create-item-editor {
  border: 1px solid transparent;
}
.page-create-item-editor.error {
  border-color: #E25E58;
}

.bc-dropdown-container-header {
  float: left;
  width: 100%;
  padding: 0 0 0 16px;
  color: #1b9cfb;
  background: #ffffff;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.bc-dropdown-container-header h3 {
  float: left;
  padding: 0 16px 0 0;
  font: normal 14px/34px "Roboto", "Arial", sans-serif;
  text-transform: capitalize;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.bc-dropdown-container-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  height: 1px;
  width: calc(100% - 32px);
  background: #b6e5f7;
}

.bc-dropdown-container-body {
  float: left;
  width: 100%;
  background: white;
  position: relative;
  padding: 8px;
  border-radius: 0 0 8px 8px;
}
.bc-dropdown-container-body[ng-click] {
  cursor: default;
}

.bc-dropdown-container-border {
  float: left;
  width: 100%;
  border: 1px solid #E4E6E6;
}
.bc-dropdown-container-border .bc-dropdown-container-header {
  color: #444444;
  font-size: 16px;
  border-bottom: 1px solid #E4E6E6;
}
.bc-dropdown-container-border .bc-dropdown-container-header > h3 {
  font-size: 16px;
}
.bc-dropdown-container-border .bc-dropdown-container-header:after {
  content: none;
}

[class*=col-] {
  float: left;
  padding: 8px;
}

.col-1 {
  width: 8.325%;
}

.col-2 {
  width: 16.659%;
}
.col-2-4 {
  width: 20%;
}

.col-3 {
  width: 24.975%;
}

.col-4 {
  width: 33.333%;
}
.col-4-5 {
  width: 37.5125%;
}

.col-5 {
  width: 41.625%;
}

.col-6 {
  width: 49.959%;
}

.col-7 {
  width: 58.275%;
}

.col-8 {
  width: 66.666%;
}

.col-9 {
  width: 74.925%;
}

.col-10 {
  width: 83.259%;
}

.col-11 {
  width: 91.575%;
}

.col-12 {
  width: 100%;
}

.padding-8 {
  padding: 8px;
}

.padding-16 {
  padding: 16px;
}

.no-padding {
  padding: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-padding-top {
  padding-top: 0;
}

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

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

.padding-bottom-8 {
  padding-bottom: 8px;
}

.padding-top-8 {
  padding-top: 8px;
}

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

.padding-right-8 {
  padding-right: 8px;
}

.position-relative {
  position: relative;
}

.transition-width {
  transition: 300ms width;
}

.ui-draggable {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.ui-draggable-dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  z-index: 1000000000;
  animation-duration: 300ms;
  transform: scale(0.8);
}
.ui-draggable-dragging td {
  background: white !important;
}

.will-be-dragged-here {
  background: white !important;
  box-shadow: inset 0 0 0 1px #019afe !important;
}
.will-be-dragged-here * {
  opacity: 0 !important;
}

addelementtemplatewrap:empty, templateWrap:empty {
  display: none;
}

.flag-icon {
  background: url(../images/flags.png) no-repeat 0 63.541667%/100%;
  width: 16px;
  height: 16px;
  image-rendering: pixelated;
  display: inline-block;
  vertical-align: middle;
}

.flag-asean {
  background-position: 0 0;
}

.flag-afghanistan {
  background-position: 0 0.347222%;
}

.flag-africa {
  background-position: 0 0.694444%;
}

.flag-aland {
  background-position: 0 1.041667%;
}

.flag-albania {
  background-position: 0 1.388889%;
}

.flag-alderney {
  background-position: 0 1.736111%;
}

.flag-algeria {
  background-position: 0 2.083333%;
}

.flag-all {
  background-position: 0 2.430556%;
}

.flag-americansamoa {
  background-position: 0 2.777778%;
}

.flag-andorra {
  background-position: 0 3.125%;
}

.flag-angola {
  background-position: 0 3.472222%;
}

.flag-anguilla {
  background-position: 0 3.819444%;
}

.flag-antiguaandbarbuda {
  background-position: 0 4.166667%;
}

.flag-arableague {
  background-position: 0 4.513889%;
}

.flag-argentina {
  background-position: 0 4.861111%;
}

.flag-am {
  background-position: 0 5.208333%;
}

.flag-aruba {
  background-position: 0 5.555556%;
}

.flag-asia {
  background-position: 0 5.902778%;
}

.flag-australia {
  background-position: 0 6.25%;
}

.flag-austria {
  background-position: 0 6.597222%;
}

.flag-az {
  background-position: 0 6.944444%;
}

.flag-bahamas {
  background-position: 0 7.291667%;
}

.flag-bahrain {
  background-position: 0 7.638889%;
}

.flag-bangladesh {
  background-position: 0 7.986111%;
}

.flag-barbados {
  background-position: 0 8.333333%;
}

.flag-basquecountry {
  background-position: 0 8.680556%;
}

.flag-belarus {
  background-position: 0 9.027778%;
}

.flag-belgium {
  background-position: 0 9.375%;
}

.flag-belize {
  background-position: 0 9.722222%;
}

.flag-benin {
  background-position: 0 10.069444%;
}

.flag-bermuda {
  background-position: 0 10.416667%;
}

.flag-bhutan {
  background-position: 0 10.763889%;
}

.flag-bolivia {
  background-position: 0 11.111111%;
}

.flag-bonairesinteustatiusandsaba {
  background-position: 0 11.458333%;
}

.flag-bosniaherzegovina {
  background-position: 0 11.805556%;
}

.flag-botswana {
  background-position: 0 12.152778%;
}

.flag-bouvet {
  background-position: 0 12.5%;
}

.flag-brazil {
  background-position: 0 12.847222%;
}

.flag-britishindianoceanterritory {
  background-position: 0 13.194444%;
}

.flag-brunei {
  background-position: 0 13.541667%;
}

.flag-bulgaria {
  background-position: 0 13.888889%;
}

.flag-burkinafaso {
  background-position: 0 14.236111%;
}

.flag-burundi {
  background-position: 0 14.583333%;
}

.flag-caricom {
  background-position: 0 14.930556%;
}

.flag-cis {
  background-position: 0 15.277778%;
}

.flag-cambodja {
  background-position: 0 15.625%;
}

.flag-cameroon {
  background-position: 0 15.972222%;
}

.flag-canada {
  background-position: 0 16.319444%;
}

.flag-capeverde {
  background-position: 0 16.666667%;
}

.flag-catalonia {
  background-position: 0 17.013889%;
}

.flag-caymanislands {
  background-position: 0 17.361111%;
}

.flag-centralafricanrepublic {
  background-position: 0 17.708333%;
}

.flag-chad {
  background-position: 0 18.055556%;
}

.flag-chile {
  background-position: 0 18.402778%;
}

.flag-cn, .flag-zh {
  background-position: 0 18.75%;
}

.flag-chinesetaipei {
  background-position: 0 19.097222%;
}

.flag-christmas {
  background-position: 0 19.444444%;
}

.flag-cocoskeeling {
  background-position: 0 19.791667%;
}

.flag-colombia {
  background-position: 0 20.138889%;
}

.flag-commonwealth {
  background-position: 0 20.486111%;
}

.flag-comoros {
  background-position: 0 20.833333%;
}

.flag-congobrazzaville {
  background-position: 0 21.180556%;
}

.flag-congokinshasa {
  background-position: 0 21.527778%;
}

.flag-cookislands {
  background-position: 0 21.875%;
}

.flag-costarica {
  background-position: 0 22.222222%;
}

.flag-cotedivoire {
  background-position: 0 22.569444%;
}

.flag-croatia {
  background-position: 0 22.916667%;
}

.flag-cuba {
  background-position: 0 23.263889%;
}

.flag-curacao {
  background-position: 0 23.611111%;
}

.flag-cyprus {
  background-position: 0 23.958333%;
}

.flag-czechrepublic {
  background-position: 0 24.305556%;
}

.flag-denmark {
  background-position: 0 24.652778%;
}

.flag-djibouti {
  background-position: 0 25%;
}

.flag-dominica {
  background-position: 0 25.347222%;
}

.flag-dominicanrepublic {
  background-position: 0 25.694444%;
}

.flag-ecuador {
  background-position: 0 26.041667%;
}

.flag-egypt {
  background-position: 0 26.388889%;
}

.flag-elsalvador {
  background-position: 0 26.736111%;
}

.flag-en {
  background-position: 0 34.375%;
}

.flag-equatorialguinea {
  background-position: 0 27.430556%;
}

.flag-eritrea {
  background-position: 0 27.777778%;
}

.flag-estonia {
  background-position: 0 28.125%;
}

.flag-ethiopia {
  background-position: 0 28.472222%;
}

.flag-europe {
  background-position: 0 28.819444%;
}

.flag-fao {
  background-position: 0 29.166667%;
}

.flag-falkland {
  background-position: 0 29.513889%;
}

.flag-faroes {
  background-position: 0 29.861111%;
}

.flag-fiji {
  background-position: 0 30.208333%;
}

.flag-finland {
  background-position: 0 30.555556%;
}

.flag-france {
  background-position: 0 30.902778%;
}

.flag-french-guiana {
  background-position: 0 31.25%;
}

.flag-frenchsouthernandantarcticlands {
  background-position: 0 31.597222%;
}

.flag-gabon {
  background-position: 0 31.944444%;
}

.flag-galicia {
  background-position: 0 32.291667%;
}

.flag-gambia {
  background-position: 0 32.638889%;
}

.flag-ge {
  background-position: 0 32.986111%;
}

.flag-de {
  background-position: 0 33.333333%;
}

.flag-ghana {
  background-position: 0 33.680556%;
}

.flag-gibraltar {
  background-position: 0 34.027778%;
}

.flag-greatbritain {
  background-position: 0 34.375%;
}

.flag-greece {
  background-position: 0 34.722222%;
}

.flag-greenland {
  background-position: 0 35.069444%;
}

.flag-grenada {
  background-position: 0 35.416667%;
}

.flag-guadeloupe {
  background-position: 0 35.763889%;
}

.flag-guam {
  background-position: 0 36.111111%;
}

.flag-guatemala {
  background-position: 0 36.458333%;
}

.flag-guernsey {
  background-position: 0 36.805556%;
}

.flag-guinea {
  background-position: 0 37.152778%;
}

.flag-guineabissau {
  background-position: 0 37.5%;
}

.flag-guyana {
  background-position: 0 37.847222%;
}

.flag-haiti {
  background-position: 0 38.194444%;
}

.flag-heardislandandmcdonald {
  background-position: 0 38.541667%;
}

.flag-honduras {
  background-position: 0 38.888889%;
}

.flag-hongkong {
  background-position: 0 39.236111%;
}

.flag-hu {
  background-position: 0 39.583333%;
}

.flag-iaea {
  background-position: 0 39.930556%;
}

.flag-iho {
  background-position: 0 40.277778%;
}

.flag-iceland {
  background-position: 0 40.625%;
}

.flag-india {
  background-position: 0 40.972222%;
}

.flag-indonesia {
  background-position: 0 41.319444%;
}

.flag-international {
  background-position: 0 41.666667%;
}

.flag-iran {
  background-position: 0 42.013889%;
}

.flag-iraq {
  background-position: 0 42.361111%;
}

.flag-ireland {
  background-position: 0 42.708333%;
}

.flag-islamicconference {
  background-position: 0 43.055556%;
}

.flag-isleofman {
  background-position: 0 43.402778%;
}

.flag-israel {
  background-position: 0 43.75%;
}

.flag-it {
  background-position: 0 44.097222%;
}

.flag-jamaica {
  background-position: 0 44.444444%;
}

.flag-jp {
  background-position: 0 44.791667%;
}

.flag-jersey {
  background-position: 0 45.138889%;
}

.flag-jordan {
  background-position: 0 45.486111%;
}

.flag-kazakhstan {
  background-position: 0 45.833333%;
}

.flag-kenya {
  background-position: 0 46.180556%;
}

.flag-kiribati {
  background-position: 0 46.527778%;
}

.flag-kosovo {
  background-position: 0 46.875%;
}

.flag-kuwait {
  background-position: 0 47.222222%;
}

.flag-kyrgyzstan {
  background-position: 0 47.569444%;
}

.flag-laos {
  background-position: 0 47.916667%;
}

.flag-latvia {
  background-position: 0 48.263889%;
}

.flag-lebanon {
  background-position: 0 48.611111%;
}

.flag-lesotho {
  background-position: 0 48.958333%;
}

.flag-liberia {
  background-position: 0 49.305556%;
}

.flag-libya {
  background-position: 0 49.652778%;
}

.flag-liechtenshein {
  background-position: 0 50%;
}

.flag-lithuania {
  background-position: 0 50.347222%;
}

.flag-luxembourg {
  background-position: 0 50.694444%;
}

.flag-macao {
  background-position: 0 51.041667%;
}

.flag-macedonia {
  background-position: 0 51.388889%;
}

.flag-madagascar {
  background-position: 0 51.736111%;
}

.flag-malawi {
  background-position: 0 52.083333%;
}

.flag-malaysia {
  background-position: 0 52.430556%;
}

.flag-maldives {
  background-position: 0 52.777778%;
}

.flag-mali {
  background-position: 0 53.125%;
}

.flag-malta {
  background-position: 0 53.472222%;
}

.flag-marshallislands {
  background-position: 0 53.819444%;
}

.flag-martinique {
  background-position: 0 54.166667%;
}

.flag-mauritania {
  background-position: 0 54.513889%;
}

.flag-mauritius {
  background-position: 0 54.861111%;
}

.flag-mayotte {
  background-position: 0 55.208333%;
}

.flag-mexico {
  background-position: 0 55.555556%;
}

.flag-micronesia {
  background-position: 0 55.902778%;
}

.flag-moldova {
  background-position: 0 56.25%;
}

.flag-monaco {
  background-position: 0 56.597222%;
}

.flag-mongolia {
  background-position: 0 56.944444%;
}

.flag-montenegro {
  background-position: 0 57.291667%;
}

.flag-montserrat {
  background-position: 0 57.638889%;
}

.flag-morocco {
  background-position: 0 57.986111%;
}

.flag-mozambique {
  background-position: 0 58.333333%;
}

.flag-myanmar {
  background-position: 0 58.680556%;
}

.flag-nato {
  background-position: 0 59.027778%;
}

.flag-namibia {
  background-position: 0 59.375%;
}

.flag-nauru {
  background-position: 0 59.722222%;
}

.flag-nepal {
  background-position: 0 60.069444%;
}

.flag-netherlands {
  background-position: 0 60.416667%;
}

.flag-netherlandsantilles {
  background-position: 0 60.763889%;
}

.flag-newcaledonia {
  background-position: 0 61.111111%;
}

.flag-newzealand {
  background-position: 0 61.458333%;
}

.flag-nicaragua {
  background-position: 0 61.805556%;
}

.flag-niger {
  background-position: 0 62.152778%;
}

.flag-nigeria {
  background-position: 0 62.5%;
}

.flag-niue {
  background-position: 0 62.847222%;
}

.flag-norfolk {
  background-position: 0 63.194444%;
}

.flag-northamerica {
  background-position: 0 63.541667%;
}

.flag-northkorea {
  background-position: 0 63.888889%;
}

.flag-northerncyprus {
  background-position: 0 64.236111%;
}

.flag-northernireland {
  background-position: 0 64.583333%;
}

.flag-northernmariana {
  background-position: 0 64.930556%;
}

.flag-no {
  background-position: 0 65.277778%;
}

.flag-oas {
  background-position: 0 65.625%;
}

.flag-opec {
  background-position: 0 65.972222%;
}

.flag-oceania {
  background-position: 0 66.319444%;
}

.flag-olimpics {
  background-position: 0 66.666667%;
}

.flag-oman {
  background-position: 0 67.013889%;
}

.flag-pakistan {
  background-position: 0 67.361111%;
}

.flag-palau {
  background-position: 0 67.708333%;
}

.flag-palestine {
  background-position: 0 68.055556%;
}

.flag-panama {
  background-position: 0 68.402778%;
}

.flag-papuanewguinea {
  background-position: 0 68.75%;
}

.flag-paraguay {
  background-position: 0 69.097222%;
}

.flag-peru {
  background-position: 0 69.444444%;
}

.flag-philippines {
  background-position: 0 69.791667%;
}

.flag-pitcairn {
  background-position: 0 70.138889%;
}

.flag-poland {
  background-position: 0 70.486111%;
}

.flag-pt {
  background-position: 0 70.833333%;
}

.flag-puertorico {
  background-position: 0 71.180556%;
}

.flag-qatar {
  background-position: 0 71.527778%;
}

.flag-quebec {
  background-position: 0 71.875%;
}

.flag-redcross {
  background-position: 0 72.222222%;
}

.flag-reunion {
  background-position: 0 72.569444%;
}

.flag-ro {
  background-position: 0 72.916667%;
}

.flag-ru {
  background-position: 0 73.263889%;
}

.flag-rwanda {
  background-position: 0 73.611111%;
}

.flag-saintbarthelemy {
  background-position: 0 73.958333%;
}

.flag-sainthelena {
  background-position: 0 74.305556%;
}

.flag-saintlucia {
  background-position: 0 74.652778%;
}

.flag-saintmartin {
  background-position: 0 75%;
}

.flag-saintpierreandmiquelon {
  background-position: 0 75.347222%;
}

.flag-samoa {
  background-position: 0 75.694444%;
}

.flag-sanmarino {
  background-position: 0 76.041667%;
}

.flag-saotomeandprincipe {
  background-position: 0 76.388889%;
}

.flag-ae {
  background-position: 0 76.736111%;
}

.flag-scotland {
  background-position: 0 77.083333%;
}

.flag-senegal {
  background-position: 0 77.430556%;
}

.flag-serbia {
  background-position: 0 77.777778%;
}

.flag-seychelles {
  background-position: 0 78.125%;
}

.flag-sierraleone {
  background-position: 0 78.472222%;
}

.flag-singapore {
  background-position: 0 78.819444%;
}

.flag-sintmaarten {
  background-position: 0 79.166667%;
}

.flag-slovakia {
  background-position: 0 79.513889%;
}

.flag-slovenia {
  background-position: 0 79.861111%;
}

.flag-solomonislands {
  background-position: 0 80.208333%;
}

.flag-somalia {
  background-position: 0 80.555556%;
}

.flag-somaliland {
  background-position: 0 80.902778%;
}

.flag-southafrica {
  background-position: 0 81.25%;
}

.flag-southamerica {
  background-position: 0 81.597222%;
}

.flag-southgeorgiaandsouthsandwich {
  background-position: 0 81.944444%;
}

.flag-kr {
  background-position: 0 82.291667%;
}

.flag-southsudan {
  background-position: 0 82.638889%;
}

.flag-es {
  background-position: 0 82.986111%;
}

.flag-srilanka {
  background-position: 0 83.333333%;
}

.flag-stkittsandnevis {
  background-position: 0 83.680556%;
}

.flag-stvincentandthegrenadines {
  background-position: 0 84.027778%;
}

.flag-sudan {
  background-position: 0 84.375%;
}

.flag-suriname {
  background-position: 0 84.722222%;
}

.flag-svalbardandjanmayen {
  background-position: 0 85.069444%;
}

.flag-swaziland {
  background-position: 0 85.416667%;
}

.flag-sv {
  background-position: 0 85.763889%;
}

.flag-switzerland {
  background-position: 0 86.111111%;
}

.flag-syria {
  background-position: 0 86.458333%;
}

.flag-tahiti {
  background-position: 0 86.805556%;
}

.flag-taiwan {
  background-position: 0 87.152778%;
}

.flag-tajikistan {
  background-position: 0 87.5%;
}

.flag-tanzania {
  background-position: 0 87.847222%;
}

.flag-thailand {
  background-position: 0 88.194444%;
}

.flag-timorleste {
  background-position: 0 88.541667%;
}

.flag-togo {
  background-position: 0 88.888889%;
}

.flag-tokelau {
  background-position: 0 89.236111%;
}

.flag-tonga {
  background-position: 0 89.583333%;
}

.flag-trinidadtobago {
  background-position: 0 89.930556%;
}

.flag-tristandacunha {
  background-position: 0 90.277778%;
}

.flag-tunisia {
  background-position: 0 90.625%;
}

.flag-tr {
  background-position: 0 90.972222%;
}

.flag-turkmenistan {
  background-position: 0 91.319444%;
}

.flag-turksandcaicosislands {
  background-position: 0 91.666667%;
}

.flag-tuvalu {
  background-position: 0 92.013889%;
}

.flag-uganda {
  background-position: 0 92.708333%;
}

.flag-ukraine {
  background-position: 0 93.055556%;
}

.flag-unitedarabemirates {
  background-position: 0 93.402778%;
}

.flag-unitedkingdom {
  background-position: 0 93.75%;
}

.flag-uruguay {
  background-position: 0 94.097222%;
}

.flag-uzbekistan {
  background-position: 0 94.444444%;
}

.flag-vanutau {
  background-position: 0 94.791667%;
}

.flag-vaticancity {
  background-position: 0 95.138889%;
}

.flag-venezuela {
  background-position: 0 95.486111%;
}

.flag-vietnam {
  background-position: 0 95.833333%;
}

.flag-virginislandsbritish {
  background-position: 0 96.180556%;
}

.flag-virginislandsus {
  background-position: 0 96.527778%;
}

.flag-wales {
  background-position: 0 96.875%;
}

.flag-wallisandfutuna {
  background-position: 0 97.222222%;
}

.flag-westernsahara {
  background-position: 0 97.569444%;
}

.flag-world {
  background-position: 0 97.916667%;
}

.flag-yemen {
  background-position: 0 98.263889%;
}

.flag-zambia {
  background-position: 0 98.611111%;
}

.flag-zimbabwe {
  background-position: 0 98.958333%;
}

.flag-allupcoming {
  background-position: 0 99.305556%;
}

.flag-america {
  background-position: 0 99.652778%;
}

.flag-withvideo {
  background-position: 0 100%;
}

header {
  float: left;
  width: 100%;
  background: #ffffff;
  color: #3d6e8f;
  font: 12px/40px "Roboto", "Arial", sans-serif;
  position: relative;
  z-index: 500;
  padding: 6px 0;
  box-shadow: 0 0 10px 3px rgba(171, 169, 169, 0.35);
}
header > ul.action-toolbar-row {
  float: right;
  width: auto;
}
header > ul.action-toolbar-row > li {
  float: left;
  padding: 0 6px;
  position: relative;
}
header > ul.action-toolbar-row > li:before {
  content: "";
  width: 1px;
  height: 50%;
  background: #e6eaee;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
}
header > ul.action-toolbar-row > li:nth-child(3) .header-dropdown-wrapper {
  min-width: 130px;
  text-align: center;
}
header > ul.action-toolbar-row > li:nth-child(3) .header-dropdown-wrapper .dropdown-head {
  float: none;
  display: inline-block;
}
header > ul.action-toolbar-row > li:nth-child(3) .header-dropdown-wrapper .dropdown-body {
  text-align: left;
}
header > ul.action-toolbar-row > li:last-child .dropdown-body {
  width: 120%;
  left: -15px;
}
header > ul.action-toolbar-row > li:last-child .dropdown-body:before {
  left: 49%;
}

.name-skin-user {
  display: block;
  float: left;
  padding: 0 10px;
  min-width: 54px;
  line-height: inherit;
  font-size: 12px;
  text-transform: uppercase;
}
.name-skin-user:hover {
  color: #38a4fb;
  background: #e5f4ff;
  border-radius: 4px;
}

.header-dropdown-wrapper {
  float: left;
  padding: 0 10px;
}
.header-dropdown-wrapper .dropdown-head {
  float: left;
  transition: 300ms color;
  transform: translate3d(0, 0, 0);
}
.header-dropdown-wrapper .dropdown-head p {
  float: left;
  text-transform: capitalize;
}
.header-dropdown-wrapper .dropdown-head p[data-count]:not([data-count=""]):after {
  content: attr(data-count);
  display: inline-block;
  vertical-align: middle;
  background: #019afe;
  color: white;
  font: 10px/16px "Roboto", "Arial", sans-serif;
  margin: 0 0 0 16px;
  min-width: 16px;
  text-align: center;
  padding: 0 6px;
  border-radius: 10px;
}
.header-dropdown-wrapper .dropdown-head .flag-icon {
  float: left;
  margin-top: 13px;
}
.header-dropdown-wrapper .dropdown-head .fa {
  display: block;
  float: left;
  margin: 0 16px 0 0;
  font-size: 16px;
  line-height: inherit;
}
.header-dropdown-wrapper .dropdown-head .fa:last-child {
  margin: 0 0 0 16px;
}
.header-dropdown-wrapper .dropdown-body {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  max-height: 0;
  padding-top: 12px;
  transition: max-height 500ms, overflow 200ms ease-in-out 1s;
  display: none;
  transform: translate3d(0, 0, 0);
}
.header-dropdown-wrapper .dropdown-body > ul {
  float: left;
  width: 100%;
  padding: 8px;
  max-height: calc(100vh - 64px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 10px 3px rgba(171, 169, 169, 0.35);
}
.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 10px;
}
.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.header-dropdown-wrapper .dropdown-body > ul > li {
  float: left;
  width: 100%;
  padding: 10px 12px;
  background: #ffffff;
  font: 13px/20px "Roboto", "Arial", sans-serif;
  position: relative;
  border-radius: 4px;
  transition: 300ms color, 300ms background;
}
.header-dropdown-wrapper .dropdown-body > ul > li > p {
  float: left;
  width: calc(100% - 24px);
}
.header-dropdown-wrapper .dropdown-body > ul > li > p.has-clear-icon {
  padding: 0 16px 0 0;
}
.header-dropdown-wrapper .dropdown-body > ul > li > p.has-clear-icon .fa {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 0;
}
.header-dropdown-wrapper .dropdown-body > ul > li > p > span {
  display: block;
  padding: 10px 0;
  margin: -10px 0;
}
.header-dropdown-wrapper .dropdown-body > ul > li .fa {
  float: left;
  font: 11px/20px FontAwesome;
  width: 20px;
}
.header-dropdown-wrapper .dropdown-body > ul > li .fa:not(.fa-bell) {
  font-size: 15px;
}
.header-dropdown-wrapper .dropdown-body > ul > li .flag-icon {
  margin: 2px 8px 0 0;
  float: left;
}
.header-dropdown-wrapper .dropdown-body > ul > li:hover {
  color: #38a4fb;
  background: #e5f4ff;
}
.header-dropdown-wrapper .dropdown-body:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: -3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  z-index: 10;
}
.header-dropdown-wrapper:hover .dropdown-head {
  color: #38a4fb;
}
.header-dropdown-wrapper:hover .dropdown-head .fa:last-child {
  transform: rotate(180deg);
}
.header-dropdown-wrapper:hover .dropdown-body {
  max-height: calc(100vh - 64px);
  display: block;
  color: #768899;
}
.header-dropdown-wrapper:hover {
  background: #e5f4ff;
  border-radius: 4px;
}

.logo-wrapper {
  float: left;
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  font: 24px/50px icomoon;
  color: #019afe;
  text-align: center;
}
.logo-wrapper:before, .logo-wrapper:after {
  display: block;
  position: absolute;
  top: 0;
  transition: 300ms transform;
}
.logo-wrapper:before {
  content: "\e90a";
  left: -11px;
  width: calc(240px - 58px);
  transform: translateX(-182px);
}
.logo-wrapper:after {
  content: "\e911";
  right: 0;
  width: 58px;
  font-size: 18px;
}
.menu-opened .logo-wrapper:before {
  transform: translateX(0);
}
.menu-opened .logo-wrapper:after {
  content: "\e906";
}

nav {
  float: left;
  width: 100%;
  height: calc(100% - 58px);
  padding: 0 8px;
  background: #ffffff;
  color: #3b6d90;
  white-space: nowrap;
  box-shadow: 0 3px 10px 0 rgba(171, 169, 169, 0.1);
}
nav > ul {
  float: left;
  width: 100%;
}
nav > ul > li {
  float: left;
  width: 100%;
  position: relative;
}
nav > ul > li > a {
  float: left;
  width: 298px;
  display: block;
  font: 0/0 "Roboto", "Arial", sans-serif;
  overflow: hidden;
  max-width: 42px;
  transition: background 300ms;
  height: 41px;
}
nav > ul > li > a[ng-click]:not(:only-child) {
  cursor: default;
}
nav > ul > li > a > .fa {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  transition: 300ms transform, 300ms background;
}
nav > ul > li > a > .fa:first-child {
  width: 42px;
}
nav > ul > li > a > .fa.skin {
  font-family: icomoon;
}
nav > ul > li > a > .fa.skin:before {
  content: "\e901";
}
nav > ul > li > a > .fa.pageBuilders {
  font-family: icomoon;
}
nav > ul > li > a > .fa.pageBuilders:before {
  content: "\e904";
}
nav > ul > li > a > .fa.applications {
  font-family: icomoon;
}
nav > ul > li > a > .fa.applications:before {
  content: "\e905";
}
nav > ul > li > a > .fa.monitoring {
  font-family: icomoon;
}
nav > ul > li > a > .fa.monitoring:before {
  content: "\e921";
}
nav > ul > li > a > .fa.report {
  font-size: 24px;
  font-family: icomoon;
}
nav > ul > li > a > .fa.report:before {
  content: "\e912";
}
nav > ul > li > a > .fa.skinPayments:before, nav > ul > li > a > .fa.payments:before {
  content: "\f283";
  font-size: 14px;
}
nav > ul > li > a > .fa:last-child {
  display: none;
  width: 46px;
}
nav > ul > li > a > span {
  width: 240px;
  display: inline-block;
  vertical-align: top;
  color: #3b6d90;
  margin-left: 18px;
  max-width: 0;
  padding: 0;
  font: 14px/40px "Roboto", "Arial", sans-serif;
  background: #ffffff;
  transition: 300ms width, 300ms padding, 300ms background;
  text-transform: capitalize;
}
nav > ul > li > ul {
  position: absolute;
  top: 98%;
  left: 100%;
  margin-left: 18px;
  background: #ffffff;
  width: 240px;
}
nav > ul > li > ul > li {
  float: left;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
}
nav > ul > li > ul > li > a {
  float: left;
  width: 100%;
  display: block;
  padding: 0 8px;
  font: 14px/36px "Roboto", "Arial", sans-serif;
  transition: 300ms background;
  border-radius: 4px;
}
nav > ul > li > ul > li > a > span {
  display: block;
  text-transform: capitalize;
  float: left;
  width: 100%;
}
nav > ul > li > ul > li > a > i {
  display: none !important;
}
nav > ul > li > ul > li > a.active {
  color: #029afe;
  background: #d1ecff !important;
}
nav > ul > li > ul > li:hover > a, nav > ul > li > ul > li.active > a {
  background: #f0f5f8;
}
nav > ul > li:hover > a {
  width: 300px;
  overflow: visible;
  max-width: 300px;
}
nav > ul > li:hover > a > .fa:first-child {
  background: #e4ebef;
  border-radius: 4px;
}
nav > ul > li:hover > a > span {
  color: #1b9cfb;
  max-width: 100%;
  padding: 0 16px;
  border-radius: 4px 4px 0 0;
  box-shadow: 3px 0 10px 0 rgba(171, 169, 169, 0.35), -3px -3px 10px 0 rgba(171, 169, 169, 0.35);
  position: relative;
  overflow: visible;
  z-index: 10;
}
nav > ul > li:hover > a > span:before {
  content: "";
  position: absolute;
  top: 14px;
  left: -6px;
  border-top: 6px solid transparent;
  border-right: 6px solid #ffffff;
  border-bottom: 6px solid transparent;
}
nav > ul > li:hover > a:only-child > span {
  border-radius: 4px;
}
nav > ul > li:hover > ul {
  border-radius: 0 0 4px 4px;
  box-shadow: 3px 3px 10px 0 rgba(171, 169, 169, 0.35), -3px 3px 10px 0 rgba(171, 169, 169, 0.35);
  transition: box-shadow 300ms 300ms;
}
nav > ul > li:hover > ul > li {
  transition: 250ms max-height, 300ms border, margin 300ms;
  transition-delay: 300ms;
  max-height: 40px;
}
nav > ul > li:hover > ul > li:first-child {
  margin-top: 8px;
}
nav > ul > li:hover > ul > li:last-child {
  margin-bottom: 8px;
}
nav > ul > li:hover > ul:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(63, 75, 131, 0.08);
  position: absolute;
  box-shadow: 0 1px 4px 0 rgba(63, 75, 131, 0.2);
}
nav > ul > li.section-active > a > .fa:first-child {
  color: #ffffff;
  background: #1478fa;
  background: -moz-linear-gradient(left, #1478fa 0%, #22c5fc 100%);
  background: -webkit-linear-gradient(left, #1478fa 0%, #22c5fc 100%);
  background: linear-gradient(to right, #1478fa 0%, #22c5fc 100%);
  border-radius: 4px;
}
nav > ul > li.section-active > ul > li {
  padding: 0 8px;
}
nav > ul > li.section-active > ul > li > a {
  border-radius: 4px 4px 4px 4px;
}
nav > ul > li + li {
  margin-top: 1px;
}
.menu-opened nav {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.menu-opened nav::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.menu-opened nav::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 10px;
}
.menu-opened nav::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.menu-opened nav::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.menu-opened nav > ul > li > a {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}
.menu-opened nav > ul > li > a > span {
  width: 142px;
  max-width: 142px;
  margin: 0;
  padding: 0 8px 0 16px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #f2f4f6;
}
.menu-opened nav > ul > li > a > span:before {
  content: none;
}
.menu-opened nav > ul > li > a > .fa:last-child {
  display: inline-block;
}
.menu-opened nav > ul > li > a:hover {
  background: #e4ebef;
}
.menu-opened nav > ul > li > a:hover > .fa {
  color: #3b6d90;
  background: none;
}
.menu-opened nav > ul > li > a:hover > span {
  border: 0;
}
.menu-opened nav > ul > li > a.active {
  color: #029afe;
  background: #d1ecff;
  font-weight: bold;
}
.menu-opened nav > ul > li > ul {
  margin: 0;
  padding: 0;
  width: 100%;
  position: static;
}
.menu-opened nav > ul > li > ul > li {
  max-height: 0;
  padding: 0;
}
.menu-opened nav > ul > li > ul > li > a {
  padding: 0 16px 0 58px;
}
.menu-opened nav > ul > li > ul > li:last-child > a {
  margin: 0;
}
.menu-opened nav > ul > li > ul:before {
  content: none;
}
.menu-opened nav > ul > li.active.sub-menu > a > .fa {
  color: #ffffff;
}
.menu-opened nav > ul > li.active.sub-menu > a > .fa:last-child {
  transform: rotate(90deg);
}
.menu-opened nav > ul > li.active.sub-menu:hover > a > .fa {
  color: #ffffff;
  background: none;
}
.menu-opened nav > ul > li.active:not(.section-active) > a:not(:only-child) {
  background: #E4EBEF;
}
.menu-opened nav > ul > li.active:not(.section-active) > a:not(:only-child) > span {
  margin: 0;
  color: #3b6d90;
  border-bottom: 0;
}
.menu-opened nav > ul > li.active:not(.section-active) > a:not(:only-child) > .fa {
  color: #3b6d90;
}
.menu-opened nav > ul > li.active > ul > li {
  max-height: 36px;
  transition-delay: 0ms;
}
.menu-opened nav > ul > li:hover > a > .fa {
  color: #3b6d90;
  background: none;
}
.menu-opened nav > ul > li:hover > a > span {
  color: #3b6d90;
}
.menu-opened nav > ul > li.section-active > a {
  color: #ffffff;
  background: #1478fa;
  background: -moz-linear-gradient(left, #1478fa 0%, #22c5fc 100%);
  background: -webkit-linear-gradient(left, #1478fa 0%, #22c5fc 100%);
  background: linear-gradient(to right, #1478fa 0%, #22c5fc 100%);
}
.menu-opened nav > ul > li.section-active > a > span {
  margin: 0;
  color: #ffffff;
  border-bottom: 0;
}
.menu-opened nav > ul > li.section-active > a > .fa {
  color: #ffffff;
  background: none;
}
.menu-opened nav > ul > li:hover > ul > li {
  margin: 0;
}

advanced-table {
  float: left;
  width: 100%;
  display: block;
}
advanced-table img {
  display: block;
  width: 200px;
  height: 70px;
  object-fit: cover;
  object-position: center center;
  margin: -3px -16px;
}
advanced-table .at-translate {
  float: left;
  width: 100%;
  transform: translate3d(0, 0, 0);
  position: relative;
  border-radius: 8px;
  z-index: 200;
}
advanced-table .at-translate .at-scroll {
  float: left;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-track {
  background: #f5f7fa;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar {
  width: 14px;
  height: 15px;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-track {
  background: #f5f7fa;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border: 3px solid #f5f7fa;
  border-bottom-width: 4px;
  border-radius: 20px;
}
advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb:hover {
  background: #afc3d4;
}
advanced-table .at-translate .at-scroll .at-scroll-width {
  float: left;
  width: 100%;
  display: table;
  table-layout: fixed;
}
advanced-table .at-translate .at-scroll .at-scroll-width table {
  float: left;
  width: 100%;
  border-collapse: separate;
  font: 14px "Roboto", "Arial", sans-serif;
  color: #474747;
  white-space: nowrap;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td, advanced-table .at-translate .at-scroll .at-scroll-width table tr th {
  background: white;
  height: 39px;
  vertical-align: middle;
  position: relative;
  word-wrap: break-word;
  text-align: left;
  border-left: 1px solid #e6eaee;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.cell-image, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.cell-image {
  height: 74px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td:not(.sub-table-cell):not(.sticky), advanced-table .at-translate .at-scroll .at-scroll-width table tr th:not(.sub-table-cell):not(.sticky) {
  min-width: 138px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td:not(.sub-table-cell):not(.sticky):not(.no-padding), advanced-table .at-translate .at-scroll .at-scroll-width table tr th:not(.sub-table-cell):not(.sticky):not(.no-padding) {
  padding: 3px 16px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td:first-child, advanced-table .at-translate .at-scroll .at-scroll-width table tr th:first-child {
  border-left: 0;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.fit-width, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.fit-width {
  width: 1%;
  min-width: auto;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky {
  position: sticky;
  position: -webkit-sticky;
  text-align: center;
  z-index: 100;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky.right, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky.right {
  right: 0;
  min-width: 138px;
  width: 138px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky.left, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky.left {
  left: 0;
  min-width: 50px;
  width: 50px;
  max-width: 50px;
  border-right: 1px solid #E4E8E8;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky.left + td, advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky.left + th, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky.left + td, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky.left + th {
  border: 0;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.sticky .switch, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky .switch {
  margin: 0 8px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.tools-cell, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.tools-cell {
  padding: 0 8px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.tools-cell checkbox check, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.tools-cell checkbox check {
  margin: 4px 0 !important;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td.no-data-result, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.no-data-result {
  text-align: center;
  color: #999;
  line-height: 48px;
  text-transform: capitalize;
  background: #F5F7FA;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td .subTable, advanced-table .at-translate .at-scroll .at-scroll-width table tr th .subTable {
  padding: 16px;
  float: left;
  width: 100%;
  transition: 250ms max-width;
  max-width: 100%;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr td .subTable table, advanced-table .at-translate .at-scroll .at-scroll-width table tr th .subTable table {
  border-bottom: 0;
  font-size: 13px;
  table-layout: fixed;
  white-space: normal;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th {
  text-transform: capitalize;
  cursor: default;
  background: #f0f5f8;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th:not(.sub-table-cell):not(.sticky).sortable {
  padding-right: 34px;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th:not(.sub-table-cell):not(.sticky).sortable:before {
  content: "\f0dc";
  display: block;
  font: 10px/10px FontAwesome;
  position: absolute;
  top: 50%;
  margin: -6px 0 0;
  right: 16px;
  opacity: 0.5;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-desc, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-asc {
  color: #3a87ad;
  background: #d9edf7;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-desc:before, advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-asc:before {
  opacity: 1;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-asc:before {
  content: "\f0de";
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sort-desc:before {
  content: "\f0dd";
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sortable {
  cursor: pointer;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr th.sticky.left {
  border: 0;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr.odd-bg td {
  background: #F9F9F9;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr.odd-bg + .sub-table-row > td {
  background: #F9F9F9;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr.even-bg td {
  background: white;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr.even-bg + .sub-table-row > td {
  background: white;
}
advanced-table .at-translate .at-scroll .at-scroll-width table tr:hover > td {
  background: #ebf3fa;
  transition: 300ms background;
}
advanced-table .at-translate .at-scroll .at-scroll-width table .tooltip .tooltip-inner {
  max-width: 280px;
}

.label-container-arm {
  position: relative;
}
.label-container-arm .badge {
  top: -10px;
  left: -10px;
}

.at-pagination-holder {
  margin: 12px 0 0;
  font: 14px/32px "Roboto", "Arial", sans-serif;
  color: #474747;
  position: relative;
  float: left;
  width: 100%;
  z-index: 200;
}
.at-pagination-holder.imported {
  margin: 0;
}
.at-pagination-holder > ul {
  float: left;
  width: 100%;
  border-top: 1px solid #b6e5f7;
}
.at-pagination-holder > ul > li {
  margin: 12px 0 0;
  display: block;
}
.at-pagination-holder > ul > li:first-child {
  float: left;
}
.at-pagination-holder > ul > li:last-child {
  float: right;
}
.at-pagination-holder .chosen-container:not(.chosen-container-multi) {
  width: auto;
  position: relative;
  z-index: 100;
  margin: 0 16px 0 0;
  height: 32px;
}
.at-pagination-holder .chosen-container:not(.chosen-container-multi) > a {
  line-height: 30px;
  border-color: #E4E8E8;
}
.at-pagination-holder .chosen-container:not(.chosen-container-multi) .chosen-drop {
  border-color: #E4E8E8;
}

pagination {
  display: block;
  float: left;
  text-align: center;
}
pagination > ul {
  float: left;
}
pagination > ul > li {
  display: block;
  float: left;
  cursor: default;
}
pagination > ul > li > span {
  border: 1px solid #E4E8E8;
  background: #f0f5f8;
  height: 32px;
  min-width: 32px;
  color: #474747;
  font: 500 14px/30px "Roboto", "Arial", sans-serif;
  transition: 300ms background, 300ms color;
  display: block;
  float: left;
  padding: 0 16px;
  cursor: pointer;
}
pagination > ul > li > span:hover {
  color: #47B4E9;
  background: white;
}
pagination > ul > li > span[ng-switch-when=more] {
  pointer-events: none;
  padding: 0 14px;
}
pagination > ul > li .fa {
  display: block;
  float: left;
  font: 16px/30px FontAwesome;
  padding: 0;
}
pagination > ul > li + li:not(:first-child):not(:nth-child(2)):not(:last-child):not(:nth-last-child(2)):not(:nth-child(3)) span {
  border-left: 0;
}
pagination > ul > li.active {
  pointer-events: none;
}
pagination > ul > li.active > span.fa {
  color: #999999;
}
pagination > ul > li.active > span:not(.fa) {
  color: #1b9cfb;
  background: #ffffff;
}
pagination > ul > li.disabled {
  pointer-events: none;
}
pagination > ul > li.disabled > span {
  color: #999999;
}
pagination > ul > li:first-child, pagination > ul > li:nth-child(2) {
  margin-right: 1px;
}
pagination > ul > li:first-child > span, pagination > ul > li:nth-child(2) > span {
  border-radius: 4px;
}
pagination > ul > li:last-child, pagination > ul > li:nth-last-child(2) {
  margin-left: 1px;
}
pagination > ul > li:last-child > span, pagination > ul > li:nth-last-child(2) > span {
  border-radius: 4px;
}
pagination > ul > li:nth-child(3) > span {
  border-radius: 4px 0 0 4px;
}
pagination > ul > li:nth-last-child(3) > span {
  border-radius: 0 4px 4px 0;
}
pagination > ul > li:nth-child(3):nth-last-child(3) > span {
  border-radius: 4px;
}

.sub-page-status {
  float: left;
  position: relative;
  padding: 0 0 0 26px;
  font-weight: 500;
}
.sub-page-status:before {
  content: "";
  display: block;
  height: 12px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  margin: -6px 0 0;
  background: #5DAB71;
}
.sub-page-status.inactive:before {
  background: #999;
}
.sub-page-status.archive:before, .sub-page-status.trash:before {
  background: #e9373a;
}

.action-toolbar-row {
  float: left;
  width: 100%;
}
.action-toolbar-row .left-actions {
  float: left;
  margin: 0 0 0 -8px;
}
.action-toolbar-row .left-actions > li {
  float: left;
  margin: 0 8px;
}
.action-toolbar-row .right-actions {
  float: right;
  margin: 0 -8px 0 0;
}
.action-toolbar-row .right-actions > li {
  float: left;
}
.action-toolbar-row icon {
  float: left;
  height: 34px;
  width: 34px;
  line-height: 32px;
  font-size: 17px;
}
.action-toolbar-row icon.payments-web {
  font-family: icomoon;
}
.action-toolbar-row icon.payments-web:before {
  content: "\e916";
  font-size: 21px;
}
.action-toolbar-row icon.payments-mobile {
  font-family: icomoon;
}
.action-toolbar-row icon.payments-mobile:before {
  content: "\e914";
}
.action-toolbar-row icon.multiple-select {
  font-family: icomoon;
}
.action-toolbar-row icon.multiple-select:before {
  content: "\e91a";
}
.action-toolbar-row icon.publishToggle {
  color: #ff3c48;
  border-color: #ff3c48;
  background: #ffe5e8;
}
.action-toolbar-row icon.publishToggle:hover {
  background: #ffccd1;
}
.action-toolbar-row button {
  display: block;
  float: left;
  height: 34px;
  min-width: 130px;
  border: 1px solid #00ca6d;
  background: #00ca6d;
  color: #ffffff;
  font: 700 14px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  transition: 300ms background;
  margin: 0 8px;
  text-transform: capitalize;
  border-radius: 4px;
}
.action-toolbar-row button:not(:disabled):hover {
  background: #00b15f;
  border-color: #00b15f;
}
.action-toolbar-row button:not(:disabled).hero {
  background: #019afe;
}
.action-toolbar-row button:not(:disabled).hero:hover {
  background: #018be5;
}
.action-toolbar-row button:not(:disabled).brand-color {
  background: #00ca6d;
}
.action-toolbar-row button:not(:disabled).brand-color:hover {
  background: #00b15f;
}
.action-toolbar-row button:disabled {
  pointer-events: none;
  color: #999999;
  background: #f1f2f2;
}
.action-toolbar-row button.payments-generate-button {
  background: #28a9f9;
  border-color: #28a9f9;
}
.action-toolbar-row button.payments-generate-button:hover {
  background: #0f9ff8;
  border-color: #0f9ff8;
}
.action-toolbar-row button.payments-currencies-button {
  background: #44ccdb;
  border-color: #44ccdb;
}
.action-toolbar-row button.payments-currencies-button:hover {
  background: #2fc6d7;
  border-color: #2fc6d7;
}

.top-action-grid {
  float: left;
  margin: 0 0 0 -8px;
}
.top-action-grid > li {
  margin: 0 8px;
  width: 200px;
  float: left;
}
.top-action-grid > li.config-preview {
  width: auto;
}

.advanced-heading {
  float: left;
  width: 100%;
  padding: 0 8px;
  margin: 0 0 8px;
}
.advanced-heading .advanced-h-block {
  float: left;
  width: 100%;
  box-shadow: 0 1px 0 #e4e6e6;
}
.advanced-heading .advanced-h-block small {
  float: right;
  display: block;
  height: 34px;
  border: 1px solid #fff;
  border-bottom: 0;
  background: none;
  padding: 0 40px 0 16px;
  font: 14px/32px Roboto;
  position: relative;
}
.advanced-heading .advanced-h-block small:before {
  content: "\f107";
  display: block;
  font: 14px/32px FontAwesome;
  position: absolute;
  top: 0;
  right: 15px;
  color: #999;
}
.advanced-heading.active small {
  border-color: #EAEDED;
  box-shadow: 0 1px 0 white;
}
.advanced-heading.active small:before {
  transform: rotateZ(180deg);
}

.drag-drop-wrapper {
  float: left;
  width: 100%;
  border: 2px dashed #dde9f1;
  text-align: center;
  color: #8298af;
  font: 12px/24px "Roboto", "Arial", sans-serif;
  display: table;
  height: 280px;
  transition: 300ms border-color;
  cursor: pointer;
}
.drag-drop-wrapper.error {
  border-color: #E25E58;
}
.drag-drop-wrapper .drag-drop-cell {
  display: table-cell;
  vertical-align: middle;
}
.drag-drop-wrapper .drag-drop-cell:before {
  display: block;
  font: 80px FontAwesome;
  content: "\f0c2";
  text-shadow: 0 0 1px #019afe;
  color: white;
}
.drag-drop-wrapper strong {
  font: 28px/40px "Roboto", "Arial", sans-serif;
}
.drag-drop-wrapper button {
  display: inline-block;
  vertical-align: top;
  margin: 8px 0;
  font: 13px/32px "Roboto", "Arial", sans-serif;
  background: #00ca6d;
  color: white;
  padding: 0 32px;
  border: 1px solid #00ca6d;
  transition: 300ms background;
  cursor: pointer;
  border-radius: 4px;
}
.drag-drop-wrapper input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}
.drag-drop-wrapper:hover, .drag-drop-wrapper.dragover {
  border-color: #009751;
}
.drag-drop-wrapper:hover button, .drag-drop-wrapper.dragover button {
  background: #009751;
}

.media-sub-info {
  color: #8298af;
  padding: 8px 0 0;
  font-size: 11px;
  float: left;
  width: 100%;
}

.gallery-layout {
  float: left;
  width: 100%;
}
.gallery-layout > ul {
  float: left;
  width: 100%;
}
.gallery-layout > ul > li {
  float: left;
  width: 20%;
  padding: 8px;
}
.gallery-layout > ul > li .gallery-layout-item {
  float: left;
  width: 100%;
  position: relative;
  padding: 100% 0 0;
}
.gallery-layout figure {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid #f3f3f5;
  background: no-repeat 50% 50%/cover;
  transition: 300ms border-color;
}
.gallery-layout figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px 12px;
}
.gallery-layout figure figcaption icon {
  margin: 0 4px;
}
.gallery-layout figure:hover {
  border-color: #d7d7de;
}
.gallery-layout figure.active {
  border-color: #019afe;
}
.gallery-layout figure.active .far.fa-check {
  opacity: 1;
  transform: scale(1);
}
.gallery-layout figure .far.fa-check {
  position: absolute;
  top: -16px;
  right: -16px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: #f9fcfe;
  color: #1b9cfb;
  border: 1px solid #b6e5f7;
  font: 12px/22px FontAwesome;
  text-align: center;
  border-radius: 4px;
  display: block;
  opacity: 0;
  transform: scale(0);
  transition: opacity 200ms, transform 200ms;
}

.gallery-with-pagination > ul {
  max-height: 355px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.gallery-with-pagination > ul::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.gallery-with-pagination > ul::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
.gallery-with-pagination > ul::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.gallery-with-pagination > ul::-webkit-scrollbar-track {
  background: #f5f7fa;
}

.gallery-no-data {
  float: left;
  width: 100%;
  padding: 8px;
}
.gallery-no-data > p {
  text-align: center;
  border: 1px solid #E4E8E8;
  float: left;
  width: 100%;
  color: #999;
  font: 14px/52px "Roboto", "Arial", sans-serif;
}

icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: #f9fcfe;
  color: #1b9cfb;
  border: 1px solid #b6e5f7;
  font: 12px/22px FontAwesome;
  transition: 300ms background, 300ms color 300ms border-color;
  margin: 0 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
icon:hover {
  background: #e5f6fc;
}
icon.disabled {
  pointer-events: none;
  color: #999999;
  background: #e4e8e8;
  border-color: #eaedee;
}
icon.preview:before, icon.fa-eye:before {
  font-family: icomoon;
  content: "\e902";
}
icon.publishToggle.published:before {
  content: "\f1f8";
}
icon.inactiveToggle.published:before {
  content: "\f2a8";
}
icon.inactive + icon.inactive {
  display: none;
}
icon.inactive:before, icon.archive:before, icon.trash:before {
  content: "\f0ac";
}
icon.edit:before {
  content: "\f040";
}
icon:not(.disabled).active {
  color: white;
  background: #019afe;
  border-color: #019afe;
}
icon:not(.disabled).active:hover {
  background: #017bcb;
  border-color: #017bcb;
}
icon.fa-save:not(.disabled), icon.addChild:not(.disabled) {
  color: #ffffff;
  background: #4ec27f;
  border-color: #4ec27f;
}
icon.fa-save:not(.disabled):hover, icon.addChild:not(.disabled):hover {
  background: #39a466;
}
icon [type=file] {
  position: absolute;
  top: -100%;
  left: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 200%;
  display: block;
}
icon.addChild {
  line-height: 24px;
}
icon.addChild:before {
  content: "\f067";
}
icon.settings:before {
  content: "\f013";
}
icon.text-icon {
  width: auto;
  padding: 0 16px;
  font: 700 12px/32px "Roboto", "Arial", sans-serif;
}
icon.text-icon:nth-last-of-type(2) {
  margin-right: 0;
}
icon.text-icon:nth-last-of-type(2) ~ .text-icon {
  margin-left: 0;
}
icon.buttons-by-currencies:before {
  content: "\e918";
  font-family: icomoon;
}
icon.upload-logo:before {
  content: "\e917";
  font-family: icomoon;
}
icon.descriptions:before {
  content: "\e919";
  font-family: icomoon;
}
icon.publishToggle.published {
  color: rgba(255, 60, 72, 0.5);
  border-color: rgba(255, 60, 72, 0.5);
  background: #ffe5e8;
}
icon.publishToggle.published:hover {
  background: #ffccd1;
}
icon.fa-times {
  color: #1b9cfb;
  border-color: #b8e5f6;
  background: #e6f6fc;
}
icon.fa-times:hover {
  background: #b8e5f6;
}
icon.px-icon:before {
  content: "\e91c";
  font-size: 10px;
  font-family: icomoon;
}
icon.percent-icon:before {
  content: "\e91b";
  font-size: 12px;
  font-family: icomoon;
}
icon.picker:before {
  content: "\e91d";
  font-size: 12px;
  font-family: icomoon;
}

round-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  color: #1fccdf;
  font: 16px/16px icomoon;
  margin: 0 -17px;
  padding: 10px 17px;
  box-sizing: content-box;
}
round-icon.disabled {
  color: #afafaf;
  pointer-events: none;
}
round-icon.toSubpage:before {
  content: "\e90d";
}
round-icon.toSubpage.has-childes:before {
  content: "\e90b";
}
round-icon.toSubpage.has-childes.active:before {
  content: "\e90c";
}

.label-holder {
  float: left;
  width: 100%;
}
.label-holder > p {
  font: 14px/20px "Roboto", "Arial", sans-serif;
  min-height: 20px;
  float: left;
  max-width: 100%;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 300ms color, 300ms margin;
  text-transform: capitalize;
}
.label-holder > p strong {
  color: #017bcb;
}
.label-holder > p.required {
  position: relative;
  padding: 0 12px 0 0;
}
.label-holder > p.required:after {
  content: "*";
  display: block;
  color: #ca1818;
  position: absolute;
  top: 0;
  right: 0;
}
.configs-block .label-holder > p {
  font-size: 13px;
  color: #999;
}

.title-paragraph {
  font: 14px/16px "Roboto", "Arial", sans-serif;
  padding-bottom: 0;
}

input[type=color] {
  width: 34px;
  height: 36px;
  border-radius: 14px;
  overflow: hidden;
}

.switcher-is-active input-holder {
  width: auto;
}
.switcher-is-active input-holder .switch {
  margin: 9px 0 0;
}
.switcher-is-active > p {
  margin: 8px 0 0 14px;
}

.promo-switcher {
  position: relative;
}
.promo-switcher > input-holder {
  width: auto;
  position: absolute;
  top: 36px;
  left: 16px;
  z-index: 1;
}
.promo-switcher .label-holder input {
  padding-left: 46px;
}

input-holder {
  display: block;
  float: left;
  width: 100%;
  min-height: 34px;
  position: relative;
}
input-holder input:not([type=checkbox]), input-holder textarea {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  min-height: 34px;
}
input-holder input:not([type=checkbox])[readonly], input-holder textarea[readonly] {
  cursor: default;
}
input-holder input:not([type=checkbox]):not([readonly]):focus, input-holder input:not([type=checkbox]):not([readonly]).focused, input-holder textarea:not([readonly]):focus, input-holder textarea:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
input-holder input:not([type=checkbox]):-webkit-autofill, input-holder textarea:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input-holder input:not([type=checkbox]):-webkit-autofill:not([readonly]):focus, input-holder textarea:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
input-holder input:not([type=checkbox])::-webkit-input-placeholder, input-holder textarea::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
input-holder input:not([type=checkbox]):-moz-placeholder, input-holder textarea:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
input-holder input:not([type=checkbox])::-moz-placeholder, input-holder textarea::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
input-holder input:not([type=checkbox]):-ms-input-placeholder, input-holder textarea:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
input-holder input:not([type=checkbox]):disabled, input-holder textarea:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
.configs-block input-holder input:not([type=checkbox]):not(:disabled), .configs-block input-holder textarea:not(:disabled) {
  color: #474747;
}
input-holder.error:before {
  font: 12px/34px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  color: #E25E58;
  z-index: 10;
}
input-holder.error > input, input-holder.error textarea {
  border-color: #E25E58;
  padding-right: 24px;
}
input-holder.error .chosen-container:not(.chosen-container-multi) > a {
  border-color: #E25E58;
}
input-holder.error .chosen-container:not(.chosen-container-multi):not(.chosen-with-drop) > a:before {
  right: 32px;
}
input-holder.error .chosen-html:before {
  right: 32px;
}
input-holder.error .chosen-html select {
  border-color: #E25E58;
}
input-holder.error .chosen-container-multi {
  border-color: #E25E58;
}
input-holder.error .chosen-container-multi:not(.chosen-with-drop):before {
  right: 32px;
}
input-holder .switch {
  vertical-align: top;
  margin: 8px 0;
}
input-holder textarea {
  height: auto;
  padding: 12px;
  resize: vertical;
  min-height: 118px;
  line-height: 20px;
}
advanced-table input-holder {
  width: calc(100% + 16px);
  margin: 5px -8px;
}
input-holder icon {
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
  margin: 0;
  float: right;
}
input-holder icon ~ input:not([type=checkbox]) {
  width: calc(100% - 42px);
}

.full-width-button {
  display: block;
  float: left;
  height: 34px;
  min-width: 130px;
  border: 1px solid #00ca6d;
  background: #00ca6d;
  color: #ffffff;
  font: 700 14px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  transition: 300ms background;
  margin: 0 8px;
  text-transform: capitalize;
  border-radius: 4px;
  width: 100%;
  margin: 0;
}
.full-width-button:not(:disabled):hover {
  background: #00b15f;
  border-color: #00b15f;
}
.full-width-button:not(:disabled).hero {
  background: #019afe;
}
.full-width-button:not(:disabled).hero:hover {
  background: #018be5;
}
.full-width-button:not(:disabled).brand-color {
  background: #00ca6d;
}
.full-width-button:not(:disabled).brand-color:hover {
  background: #00b15f;
}
.full-width-button:disabled {
  pointer-events: none;
  color: #999999;
  background: #f1f2f2;
}

.chosen-container:not(.chosen-container-multi) {
  float: left;
  width: 100%;
  height: 34px;
  position: relative;
}
.chosen-container:not(.chosen-container-multi) > a {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  padding-right: 40px;
  line-height: 32px;
  text-transform: capitalize;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chosen-container:not(.chosen-container-multi) > a[readonly] {
  cursor: default;
}
.chosen-container:not(.chosen-container-multi) > a:not([readonly]):focus, .chosen-container:not(.chosen-container-multi) > a:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
.chosen-container:not(.chosen-container-multi) > a:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.chosen-container:not(.chosen-container-multi) > a:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
.chosen-container:not(.chosen-container-multi) > a::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) > a:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) > a::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) > a:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) > a:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
.chosen-container:not(.chosen-container-multi) > a:before {
  content: "\f0d7";
  font: 12px/32px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 17px;
  margin: 0;
  pointer-events: none;
  z-index: 60;
  transition: 300ms right;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 300;
  width: 100%;
  background: white;
  border: 1px solid #E4E6E6;
  margin: -1px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  max-height: 307px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.chosen-open-on-top + .chosen-container:not(.chosen-container-multi) .chosen-drop {
  position: absolute;
  bottom: 100%;
  left: 0;
  top: auto;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search {
  float: left;
  width: 100%;
  height: 34px;
  margin: 0 0 8px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input[readonly] {
  cursor: default;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:not([readonly]):focus, .chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul {
  float: left;
  width: calc(100% + 16px);
  margin: 0 0 0 -8px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li {
  display: block;
  float: left;
  width: 100%;
  transition: 300ms background;
  font: 13px/30px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #474747;
  cursor: pointer;
  text-transform: capitalize;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li em {
  font-style: normal;
  font-weight: 500;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li.disabled-result {
  pointer-events: none;
  color: #999999;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li:not(:last-child) {
  margin: 0 0 1px;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li:not(.disabled-result).highlighted {
  background: #f0f5f8;
}
.chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li:not(.disabled-result).result-selected {
  color: #029afe;
  background: #d1ecff;
}
.chosen-container:not(.chosen-container-multi).chosen-container-active.chosen-with-drop > a {
  color: #86acc4;
  position: relative;
  z-index: 300;
  cursor: pointer;
}
.chosen-container:not(.chosen-container-multi).chosen-container-active.chosen-with-drop > a:before {
  transform: rotate(180deg);
  margin: -1px 0 0;
}
.chosen-container:not(.chosen-container-multi).chosen-container-active.chosen-with-drop .chosen-drop {
  display: block;
}
.chosen-container:not(.chosen-container-multi).chosen-container-single-nosearch .chosen-search {
  display: none;
}
.chosen-container:not(.chosen-container-multi).chosen-disabled > a {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
}
select.ng-hide + .chosen-container:not(.chosen-container-multi) {
  display: none !important;
}

.chosen-container-multi {
  float: left;
  width: 100%;
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  height: 34px;
  counter-reset: selected;
  position: relative;
  padding: 0;
  pointer-events: none;
}
.chosen-container-multi[readonly] {
  cursor: default;
}
.chosen-container-multi:not([readonly]):focus, .chosen-container-multi:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
.chosen-container-multi:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.chosen-container-multi:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
.chosen-container-multi::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container-multi:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container-multi::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container-multi:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-container-multi:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
.chosen-container-multi .search-choice {
  counter-increment: selected;
}
.chosen-container-multi:before {
  content: "\f0d7";
  font: 12px/32px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 17px;
  margin: 0;
  pointer-events: none;
  z-index: 60;
  transition: 300ms right;
}
.chosen-container-multi:after {
  content: counter(selected) " selected";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font: 13px/32px "Roboto", "Arial", sans-serif;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 40px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  cursor: pointer;
  background: white;
}
.chosen-container-multi.chosen-disabled {
  pointer-events: none;
}
.chosen-container-multi.chosen-disabled:after {
  background: #F1F2F2;
  border-color: #EAEBEB;
}
.chosen-container-multi > div {
  overflow: hidden;
  max-height: 0;
  float: left;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.chosen-container-multi > div > div {
  float: left;
  width: calc(100% + 2px);
  margin: 0 0 0 -1px;
  background: white;
  border: 1px solid #E4E6E6;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  max-height: 307px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.chosen-container-multi > div > div::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.chosen-container-multi > div > div::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
.chosen-container-multi > div > div::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.chosen-container-multi > div > div::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.chosen-container-multi > div > div .search-field {
  float: left;
  width: 100%;
  position: relative;
  z-index: 10;
  margin: 0 0 1px;
}
.chosen-container-multi > div > div .search-field input {
  margin: 0 8px 8px;
  width: calc(100% - 16px);
}
.chosen-container-multi > div > div .search-field:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(228, 230, 230, 0.5);
}
.chosen-container-multi > div > div .chosen-choices, .chosen-container-multi > div > div .chosen-drop {
  float: left;
  width: calc(100% + 16px);
  margin: 0 0 0 -8px;
}
.chosen-container-multi > div > div ul {
  float: left;
  width: 100%;
}
.chosen-container-multi > div > div ul li:not(.search-field), .chosen-container-multi > div > div ul .select-deselect-all {
  float: left;
  width: 100%;
  transition: 300ms background;
  display: block;
  font: 13px/30px "Roboto", "Arial", sans-serif;
  padding: 0 16px 0 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #474747;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
}
.chosen-container-multi > div > div ul li:not(.search-field).result-selected, .chosen-container-multi > div > div ul .select-deselect-all.result-selected {
  display: none;
}
.chosen-container-multi > div > div ul li:not(.search-field):hover, .chosen-container-multi > div > div ul .select-deselect-all:hover {
  background: #F5F5F5;
}
.chosen-container-multi > div > div ul li:not(.search-field):not(:last-child), .chosen-container-multi > div > div ul .select-deselect-all:not(:last-child) {
  margin: 0 0 1px;
}
.chosen-container-multi > div > div ul li:not(.search-field) em, .chosen-container-multi > div > div ul .select-deselect-all em {
  font-style: normal;
  font-weight: 500;
}
.chosen-container-multi > div > div ul li:not(.search-field):before, .chosen-container-multi > div > div ul .select-deselect-all:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #EAEDED;
  left: 8px;
  top: 50%;
  margin: -6px 0 0;
}
.chosen-container-multi > div > div ul li:not(.search-field) .search-choice-close, .chosen-container-multi > div > div ul .select-deselect-all .search-choice-close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chosen-container-multi > div > div ul li:not(.search-field).checked:after, .chosen-container-multi > div > div ul li:not(.search-field) .search-choice-close:before, .chosen-container-multi > div > div ul .select-deselect-all.checked:after, .chosen-container-multi > div > div ul .select-deselect-all .search-choice-close:before {
  content: "\f00c";
  display: block;
  font: 8px/12px FontAwesome;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 8px;
  top: 50%;
  margin: -6px 0 0;
  text-align: center;
}
.chosen-container-multi.chosen-container-active.chosen-with-drop {
  z-index: 999;
  pointer-events: auto;
}
.chosen-container-multi.chosen-container-active.chosen-with-drop:before, .chosen-container-multi.chosen-container-active.chosen-with-drop:after {
  color: #474747;
}
.chosen-container-multi.chosen-container-active.chosen-with-drop:before {
  transform: rotate(180deg);
  margin: -1px 0 0;
}
.chosen-container-multi.chosen-container-active.chosen-with-drop > div {
  overflow: visible;
  max-height: 380px;
}

tags-input {
  display: block;
  float: left;
  width: 100%;
  height: 34px;
}
tags-input > .host {
  float: left;
  width: 100%;
  height: 100%;
  cursor: text;
}
tags-input > .host > .tags {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
}
tags-input > .host > .tags[readonly] {
  cursor: default;
}
tags-input > .host > .tags:not([readonly]):focus, tags-input > .host > .tags:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
tags-input > .host > .tags:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
tags-input > .host > .tags:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
tags-input > .host > .tags::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
tags-input > .host > .tags:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
tags-input > .host > .tags::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
tags-input > .host > .tags:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
tags-input > .host > .tags:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
tags-input > .host > .tags > .tag-list {
  float: left;
  height: 100%;
}
tags-input > .host > .tags > .tag-list > li {
  border: 1px solid #E4E6E6;
  margin: 4px;
  padding: 0 8px;
  font: 12px/22px "Roboto", "Arial", sans-serif;
  color: #999999;
  transition: 300ms color, 300ms border;
  display: inline-block;
  vertical-align: top;
}
tags-input > .host > .tags > .tag-list > li a {
  transition: none;
}
tags-input > .host > .tags > .tag-list > li:hover {
  color: #474747;
  border-color: #cacdcd;
}
tags-input > .host > .tags > input {
  margin: 0 4px;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
}
tags-input > .host > .tags > input::-webkit-input-placeholder {
  color: #86acc4;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}
tags-input > .host > .tags > input:-moz-placeholder {
  color: #86acc4;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}
tags-input > .host > .tags > input::-moz-placeholder {
  color: #86acc4;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}
tags-input > .host > .tags > input:-ms-input-placeholder {
  color: #86acc4;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}
tags-input.ng-invalid > .host > .tags > input {
  color: #d5181a;
}

checkbox {
  display: block;
  float: left;
}
checkbox label {
  display: block;
  float: left;
}
checkbox input {
  display: none;
}
checkbox input:checked ~ check:before {
  transform: scale(1);
}
checkbox input:checked ~ check.partialCheck:after {
  transform: scale(0);
}
checkbox input:disabled ~ check {
  pointer-events: none;
  background: #F1F2F2;
  color: #999;
}
checkbox input[type=radio] ~ check {
  border-radius: 100%;
}
checkbox input[type=radio] ~ check:before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 3px;
  background: #017bcb;
  border-radius: 100%;
}
checkbox input[type=radio] ~ p {
  float: left;
  font: 14px/34px "Roboto", "Arial", sans-serif;
  padding: 0 0 0 8px;
  cursor: pointer;
  width: calc(100% - 24px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
checkbox input[type=checkbox] ~ p {
  float: left;
  font: 14px/34px "Roboto", "Arial", sans-serif;
  padding: 0 0 0 8px;
  cursor: pointer;
  width: calc(100% - 24px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
checkbox check {
  margin: 9px 0;
  display: block;
  float: left;
  background: #FFFFFF;
  border: 1px solid #e4e6e6;
  color: #017bcb;
  text-align: center;
  cursor: pointer;
  width: 16px;
  height: 16px;
  transition: 300ms color, 300ms background, 300ms border-color;
  position: relative;
}
checkbox check:before {
  content: "\f00c";
  float: left;
  width: 100%;
  display: block;
  transition: 250ms transform;
  font: 10px/14px FontAwesome;
  transform: scale(0);
}
checkbox check:after {
  content: "";
  float: left;
  width: 100%;
  display: block;
  transition: 250ms transform;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 3px;
  left: 3px;
  background: #474747;
  transform: scale(0);
}
checkbox check.partialCheck:after {
  transform: scale(1);
}

.splash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.small-image-browse.error {
  border-color: #E25E58 !important;
}

.small-image-browse {
  float: left;
  width: 100%;
  padding: 100% 0 0;
  position: relative;
  text-align: center;
  transition: 300ms border-color;
  cursor: pointer;
}
.small-image-browse:not(.filled) {
  border: 2px dashed #dde9f1;
  padding: calc(100% - 4px) 0 0;
}
.small-image-browse:not(.filled):before, .small-image-browse:not(.filled):after {
  content: "";
  display: block;
  position: absolute;
  background: #dde9f1;
  transition: 300ms background;
}
.small-image-browse:not(.filled):before {
  width: 2px;
  left: 50%;
  top: 35%;
  height: 30%;
}
.small-image-browse:not(.filled):after {
  height: 2px;
  top: 50%;
  left: 35%;
  width: 30%;
}
.small-image-browse:not(.filled):hover {
  border-color: #019afe;
}
.small-image-browse:not(.filled):hover:before, .small-image-browse:not(.filled):hover:after {
  background: #019afe;
}
.small-image-browse input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  cursor: pointer;
  z-index: 30;
}
.small-image-browse .small-image-preview {
  position: absolute;
  float: left;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat 50% 50%/cover;
  border: 4px solid #f3f3f5;
}
.small-image-browse icon {
  position: absolute;
  bottom: 16px;
  right: 8px;
  z-index: 60;
}

.switch {
  height: 18px;
  width: 32px;
  background: white;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 1px solid #e4e6e6;
  border-radius: 3px;
  transition: 300ms border-color, 300ms background;
}
.switch input {
  display: none;
}
.switch small {
  display: block;
  height: 12px;
  width: 12px;
  margin: 2px;
  background: #e5e6e6;
  border-radius: 2px;
  border: 1px solid #d8dada;
  transition: 300ms margin, 300ms border-color, 300ms background;
}
.switch.checked {
  border-color: #4ec27f;
}
.switch.checked small {
  margin-left: 16px;
  background: #4ec27f;
  border-color: #3fb772;
}
.switch.disabled {
  background: rgba(241, 242, 242, 0.5);
  pointer-events: none;
}
.switch.disabled.checked {
  background: rgba(180, 229, 201, 0.1);
  border-color: #b4e5c9;
}
.switch.disabled.checked small {
  background: #b4e5c9;
  border-color: #a1debb;
}

.daterangepicker {
  background: white;
  position: absolute;
  z-index: 800;
  border: 1px solid #E4E6E6;
  margin: -1px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  font: 0/0 "Roboto", "Arial", sans-serif;
  text-align: center;
  white-space: nowrap;
  display: none;
}
.daterangepicker > div {
  vertical-align: top;
  font: 12px/14px "Roboto", "Arial", sans-serif;
  margin: 8px;
  text-align: left;
  display: inline-block;
  width: 226px;
}
.daterangepicker > div.ranges {
  display: none;
}
.daterangepicker .daterangepicker_input {
  float: left;
  width: 100%;
}
.daterangepicker .daterangepicker_input .input-group {
  float: left;
  width: 100%;
  margin: 0 0 8px;
  position: relative;
}
.daterangepicker .daterangepicker_input .input-group input {
  padding-right: 32px;
}
.daterangepicker .daterangepicker_input .input-group i {
  display: block;
  position: absolute;
  right: 12px;
  font: 12px/34px FontAwesome;
  color: #999;
  top: 0;
  transition: 300ms color;
}
.daterangepicker .daterangepicker_input .calendar-time {
  float: left;
  width: 100%;
  margin: 0 0 8px;
  height: 32px;
}
.daterangepicker .daterangepicker_input .calendar-time > div {
  float: right;
  width: calc(100% - 48px);
  font-size: 0;
  position: relative;
}
.daterangepicker .daterangepicker_input .calendar-time .fa {
  float: left;
  display: block;
  height: 32px;
  width: 32px;
  background: #F5F5F5;
  border: 1px solid rgba(0, 0, 0, 0.03);
  color: #999;
  font: 16px/30px FontAwesome;
  text-align: center;
}
.daterangepicker .daterangepicker_input .filter-select-j {
  float: left;
  width: calc(50% - 8px);
  margin: 0 8px;
  position: relative;
}
.daterangepicker .daterangepicker_input .filter-select-j:first-child {
  margin-left: 0;
}
.daterangepicker .daterangepicker_input .filter-select-j:first-child:nth-last-child(2):after {
  content: ":";
  display: block;
  position: absolute;
  top: 0;
  width: 16px;
  text-align: center;
  left: 100%;
  pointer-events: none;
  font: 14px/32px "Roboto", "Arial", sans-serif;
  color: #999;
}
.daterangepicker .daterangepicker_input .filter-select-j:last-child {
  margin-right: 0;
}
.daterangepicker .daterangepicker_input .filter-select-j:before {
  content: "\f0d7";
  font: 10px/32px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 17px;
  margin: 0;
  pointer-events: none;
  color: #999999;
  z-index: 60;
}
.daterangepicker .daterangepicker_input .filter-select-j select {
  font: 12px "Roboto", "Arial", sans-serif;
  display: block;
  float: left;
  width: 100%;
  height: 32px;
  background: none;
  border: 1px solid #e4e6e6;
  padding: 0 32px 0 12px;
  transition: 300ms border, 300ms background, 300ms color;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #999;
}
.daterangepicker .calendar-table {
  float: left;
  width: 100%;
}
.daterangepicker .calendar-table .fa {
  display: block;
  cursor: pointer;
  font: 12px/32px FontAwesome;
  color: #999;
  transition: 300ms color;
  margin: 0 auto;
}
.daterangepicker .calendar-table .fa:hover {
  color: #474747;
}
.daterangepicker .calendar-table .fa.fa-chevron-left:before {
  content: "\f053";
}
.daterangepicker .calendar-table .fa.fa-chevron-right:before {
  content: "\f054";
}
.daterangepicker .calendar-table table {
  float: left;
  width: 224px;
  table-layout: fixed;
}
.daterangepicker .calendar-table table th, .daterangepicker .calendar-table table td {
  text-align: center;
  height: 32px;
  vertical-align: middle;
  position: relative;
}
.daterangepicker .calendar-table table thead tr:first-child th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
.daterangepicker .calendar-table table td {
  border: 1px solid rgba(0, 0, 0, 0.02);
  width: 32px;
}
.daterangepicker .calendar-table table td.not-this {
  border-left: 0;
}
.daterangepicker .calendar-table table td .month, .daterangepicker .calendar-table table td .year {
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  width: calc((100% - 1px) / 3);
  height: 40px;
  transition: 300ms color, 300ms background;
  display: block;
  float: left;
  text-transform: uppercase;
  font: 12px/40px "Roboto", "Arial", sans-serif;
}
.daterangepicker .calendar-table table td .month:nth-last-child(4) ~ span, .daterangepicker .calendar-table table td .year:nth-last-child(4) ~ span {
  border-bottom: 0;
}
.daterangepicker .calendar-table table td .month.active, .daterangepicker .calendar-table table td .month:hover, .daterangepicker .calendar-table table td .month.in-range, .daterangepicker .calendar-table table td .year.active, .daterangepicker .calendar-table table td .year:hover, .daterangepicker .calendar-table table td .year.in-range {
  background: #019afe;
  color: white;
}
.daterangepicker .calendar-table table td.off, .daterangepicker .calendar-table table td.new, .daterangepicker .calendar-table table td.old {
  color: #999;
  pointer-events: none;
}
.daterangepicker .calendar-table table td:not(.off):not(.not-this).active, .daterangepicker .calendar-table table td:not(.off):not(.not-this):hover, .daterangepicker .calendar-table table td:not(.off):not(.not-this).in-range {
  background: #019afe;
  color: white;
}
.daterangepicker .calendar-table table td.in-range:not(.off):not(.end-date) {
  background: rgba(1, 154, 254, 0.2);
  color: #474747;
}
.daterangepicker .calendar-table table td.available {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget {
  background: white;
  position: absolute;
  z-index: 800;
  border: 1px solid #E4E6E6;
  margin: -1px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  font: 0/0 "Roboto", "Arial", sans-serif;
  text-align: center;
  white-space: nowrap;
  display: block;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
}
.bootstrap-datetimepicker-widget .glyphicon {
  display: block;
  cursor: pointer;
  font: 12px/32px FontAwesome;
  color: #999;
  transition: 300ms color;
  margin: 0 auto;
}
.bootstrap-datetimepicker-widget .glyphicon:hover {
  color: #474747;
}
.bootstrap-datetimepicker-widget .glyphicon.glyphicon-chevron-left:before {
  content: "\f053";
}
.bootstrap-datetimepicker-widget .glyphicon.glyphicon-chevron-right:before {
  content: "\f054";
}
.bootstrap-datetimepicker-widget > ul {
  vertical-align: top;
  font: 12px/14px "Roboto", "Arial", sans-serif;
  margin: 8px;
  text-align: left;
  display: inline-block;
  width: 226px;
}
.bootstrap-datetimepicker-widget > ul > li {
  float: left;
  width: 100%;
}
.bootstrap-datetimepicker-widget > ul > li.picker-switch {
  display: none;
}
.bootstrap-datetimepicker-widget > ul > li div {
  float: left;
  width: 100%;
}
.bootstrap-datetimepicker-widget > ul > li table {
  float: left;
  width: 224px;
  table-layout: fixed;
}
.bootstrap-datetimepicker-widget > ul > li table th, .bootstrap-datetimepicker-widget > ul > li table td {
  text-align: center;
  height: 32px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget > ul > li table thead tr:first-child th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
.bootstrap-datetimepicker-widget > ul > li table td {
  width: 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}
.bootstrap-datetimepicker-widget > ul > li table td .month, .bootstrap-datetimepicker-widget > ul > li table td .decade, .bootstrap-datetimepicker-widget > ul > li table td .year {
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  width: calc((100% - 1px) / 3);
  height: 40px;
  transition: 300ms color, 300ms background;
  display: block;
  float: left;
  text-transform: uppercase;
  font: 12px/40px "Roboto", "Arial", sans-serif;
}
.bootstrap-datetimepicker-widget > ul > li table td .month.active, .bootstrap-datetimepicker-widget > ul > li table td .month:hover, .bootstrap-datetimepicker-widget > ul > li table td .decade.active, .bootstrap-datetimepicker-widget > ul > li table td .decade:hover, .bootstrap-datetimepicker-widget > ul > li table td .year.active, .bootstrap-datetimepicker-widget > ul > li table td .year:hover {
  background: #019afe;
  color: white;
}
.bootstrap-datetimepicker-widget > ul > li table td.off, .bootstrap-datetimepicker-widget > ul > li table td.new, .bootstrap-datetimepicker-widget > ul > li table td.old {
  color: #999;
  pointer-events: none;
}
.bootstrap-datetimepicker-widget > ul > li .datepicker-days table td {
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.bootstrap-datetimepicker-widget > ul > li .datepicker-days table td:not(.off):not(.not-this).active, .bootstrap-datetimepicker-widget > ul > li .datepicker-days table td:not(.off):not(.not-this):hover, .bootstrap-datetimepicker-widget > ul > li .datepicker-days table td:not(.off):not(.not-this).in-range {
  background: #019afe;
  color: white;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker {
  margin: 16px 0 0;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker table td {
  font-weight: 500;
  height: auto;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker a {
  display: block;
  float: left;
  width: 100%;
  height: 16px;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker a .glyphicon {
  line-height: 12px;
  font-size: 10px;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker a .glyphicon.glyphicon-chevron-up:before {
  content: "\f077";
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker a .glyphicon.glyphicon-chevron-down {
  line-height: 16px;
}
.bootstrap-datetimepicker-widget > ul > li .timepicker-picker a .glyphicon.glyphicon-chevron-down:before {
  content: "\f078";
}

.payment-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.no-data-result-static {
  float: left;
  width: 100%;
  text-align: center;
  color: #999;
  font: 14px/50px "Roboto", "Arial", sans-serif;
}
.no-data-result-static.with-border {
  border: 1px solid #e4e6e6;
}

.chosen-html {
  float: left;
  width: 100%;
  position: relative;
}
.chosen-html:before {
  content: "\f0d7";
  font: 12px/12px FontAwesome;
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  margin: -6px 0 0;
  pointer-events: none;
  z-index: 60;
  transition: 300ms right;
}
.chosen-html select {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  padding-right: 40px;
  height: 34px;
}
.chosen-html select[readonly] {
  cursor: default;
}
.chosen-html select:not([readonly]):focus, .chosen-html select:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
.chosen-html select:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.chosen-html select:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
.chosen-html select::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-html select:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-html select::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-html select:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
.chosen-html select:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
.chosen-html select option {
  color: #474747;
}
.chosen-html select option:disabled {
  color: #999;
}
.subTable .chosen-html select {
  height: 38px;
  border: 0;
  padding-left: 16px;
  color: #474747;
  font-weight: 700;
}

.columns-setting-block {
  float: left;
  width: 100%;
}
.columns-setting-block > ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  float: left;
}
.columns-setting-block > ul > li {
  display: table-cell;
  vertical-align: top;
}
.columns-setting-block > ul > li.switch-buttons {
  padding: 0 24px;
  vertical-align: middle;
  width: 82px;
}
.columns-setting-block > ul > li.switch-buttons icon {
  float: left;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
  margin: 4px 0;
}

.columns-settings-list-block {
  float: left;
  width: 100%;
  border: 1px solid #e4e6e6;
  height: 289px;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.columns-settings-list-block::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}
.columns-settings-list-block::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
  border: 3px solid #f9f9f9;
}
.columns-settings-list-block::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.columns-settings-list-block::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.columns-settings-list-block ul {
  float: left;
  width: 100%;
  padding: 0 0 12px;
  border-right: 1px solid #e4e6e6;
  min-height: 100%;
}
.columns-settings-list-block ul li {
  float: left;
  width: 100%;
}
.columns-settings-list-block ul li > label {
  display: block;
  cursor: pointer;
  float: left;
  width: 100%;
  transition: 300ms background;
  padding: 0 16px;
}
.columns-settings-list-block ul li > label > p {
  float: left;
  width: calc(100% - 22px);
  font: 14px/30px "Roboto", "Arial", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.columns-settings-list-block ul li > label checkbox check {
  margin: 7px 0 7px 6px;
}
.columns-settings-list-block ul li > label :first-letter {
  text-transform: uppercase;
}
.columns-settings-list-block ul li:first-child {
  margin: 0 0 12px;
  border-bottom: 1px solid #e4e6e6;
  padding: 2px 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: white;
  z-index: 80;
}
.columns-settings-list-block ul li:not(:first-child) > label:hover {
  background: #f3f3f5;
}

.generateConfigs {
  font-family: icomoon;
}
.generateConfigs:before {
  content: "\e916";
}

.generateMobileConfigs {
  font-family: icomoon;
}
.generateMobileConfigs:before {
  content: "\e914";
}

.text-amount {
  float: left;
  height: 34px;
  margin-right: 15px;
  padding: 0 15px 0 10px;
  color: #474747;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 34px;
}
.text-amount > i {
  float: right;
  width: 24px;
  height: 24px;
  margin: 5px 0 0 10px;
  color: #ffffff;
  background: #fcb328;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  font-style: normal;
}

.switch.checked.orange-active {
  border-color: #fcb328;
}
.switch.checked.orange-active small {
  background: #fcb328;
  border-color: #fcb328;
}

.switch.orange-passive:not(.checked) small {
  background: #fcb328;
  border-color: #fcb328;
}

.cropbox-plugin {
  float: left;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
}
.cropbox-plugin .cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  user-select: none;
  margin: 0 auto;
}
.cropbox-plugin .cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}
.cropbox-plugin .cropper-wrap-box,
.cropbox-plugin .cropper-canvas,
.cropbox-plugin .cropper-drag-box,
.cropbox-plugin .cropper-crop-box,
.cropbox-plugin .cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropbox-plugin .cropper-wrap-box,
.cropbox-plugin .cropper-canvas {
  overflow: hidden;
}
.cropbox-plugin .cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropbox-plugin .cropper-modal {
  background-color: #303f4e;
  opacity: 0.5;
}
.cropbox-plugin .cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #019afe;
  overflow: hidden;
  width: 100%;
}
.cropbox-plugin .cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}
.cropbox-plugin .cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.3333333333%;
  left: 0;
  top: 33.3333333333%;
  width: 100%;
}
.cropbox-plugin .cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.3333333333%;
  top: 0;
  width: 33.3333333333%;
}
.cropbox-plugin .cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropbox-plugin .cropper-center:before, .cropbox-plugin .cropper-center:after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}
.cropbox-plugin .cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropbox-plugin .cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropbox-plugin .cropper-face,
.cropbox-plugin .cropper-line,
.cropbox-plugin .cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}
.cropbox-plugin .cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropbox-plugin .cropper-line {
  background-color: #019afe;
}
.cropbox-plugin .cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropbox-plugin .cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropbox-plugin .cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropbox-plugin .cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropbox-plugin .cropper-point {
  background-color: #019afe;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}
.cropbox-plugin .cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropbox-plugin .cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropbox-plugin .cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropbox-plugin .cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropbox-plugin .cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropbox-plugin .cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropbox-plugin .cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropbox-plugin .cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropbox-plugin .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropbox-plugin .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropbox-plugin .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropbox-plugin .cropper-point.point-se:before {
  background-color: #019afe;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropbox-plugin .cropper-invisible {
  opacity: 0;
}
.cropbox-plugin .cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropbox-plugin .cropper-hidden {
  display: none !important;
}
.cropbox-plugin .cropper-move {
  cursor: move;
}
.cropbox-plugin .cropper-crop {
  cursor: crosshair;
}
.cropbox-plugin .cropper-disabled .cropper-drag-box,
.cropbox-plugin .cropper-disabled .cropper-face,
.cropbox-plugin .cropper-disabled .cropper-line,
.cropbox-plugin .cropper-disabled .cropper-point {
  cursor: not-allowed;
}

[id*=cke_editor].cke_chrome {
  border: 1px solid #e4e6e6;
  border-top: 0;
  transition: 500ms border;
}
[id*=cke_editor].cke_chrome.cke_focus {
  border-color: #c9cccc;
}
[id*=cke_editor] .cke_bottom {
  padding: 0 8px 2px;
  position: relative;
  border-top: 0;
  background: white;
}
[id*=cke_editor] .cke_top {
  border-top: 4px solid #303f4e;
  border-bottom: 1px solid #e4e6e6;
  background: white;
  padding: 0 16px;
}
[id*=cke_editor] .cke_top .cke_toolbar_break {
  clear: both;
  height: 1px;
  float: left;
  width: 100%;
  background: #e4e6e6;
}
[id*=cke_editor] .cke_top .cke_toolbar_separator {
  background: #e4e6e6;
  width: 1px;
  margin: 4px 2px;
  height: 28px;
}
[id*=cke_editor] .cke_top .cke_toolgroup {
  margin: 0;
  padding: 0;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button {
  width: 34px;
  height: 36px;
  float: left;
  display: block;
  padding: 0;
  font: 14px/34px FontAwesome;
  transition: 300ms background, 300ms color;
  cursor: pointer;
  text-align: center;
  color: #222222;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_off:hover, [id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_off:focus, [id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_off:active, [id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_on:hover, [id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_on:focus, [id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_on:active {
  padding: 0;
  border: 0;
  background: #f3f3f5;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_on {
  padding: 0;
  border: 0;
  background: #019afe;
  color: white;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_on:hover {
  background: #018be5;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button_disabled {
  color: #bdbdbd;
  pointer-events: none;
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__source:before {
  content: "\f121";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__save:before {
  content: "\f0c7";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__newpage:before {
  content: "\f016";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__preview:before {
  content: "\f06e";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__print:before {
  content: "\f02f";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__templates:before {
  content: "\f2c2";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__cut:before {
  content: "\f0c4";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__copy:before {
  content: "\f24d";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__paste:before {
  content: "\f0ea";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__pastetext:before {
  content: "\f15c";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__pastefromword:before {
  content: "\f1c2";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__undo:before {
  content: "\f0e2";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__redo:before {
  content: "\f01e";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__find:before {
  content: "\f002";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__replace:before {
  content: "\f021";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__bold:before {
  content: "\f032";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__italic:before {
  content: "\f033";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__underline:before {
  content: "\f0cd";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__strike:before {
  content: "\f0cc";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__subscript:before {
  content: "\f12c";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__superscript:before {
  content: "\f12b";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__removeformat:before {
  content: "\f12d";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__numberedlist:before {
  content: "\f0cb";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__bulletedlist:before {
  content: "\f0ca";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__outdent:before {
  content: "\f03b";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__indent:before {
  content: "\f03c";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__blockquote:before {
  content: "\f10e";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__creatediv:before {
  content: "\f0c8";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__justifyleft:before {
  content: "\f036";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__justifycenter:before {
  content: "\f037";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__justifyright:before {
  content: "\f038";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__justifyblock:before {
  content: "\f039";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__bidiltr:before {
  content: "\f101";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__bidirtl:before {
  content: "\f100";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__link:before {
  content: "\f0c1";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__unlink:before {
  content: "\f127";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__image:before {
  content: "\f03e";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__simpleimageupload:before {
  content: "\f0ee";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__table:before {
  content: "\f0ce";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__horizontalrule:before {
  content: "\f2d1";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__smiley:before {
  content: "\f118";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__specialchar:before {
  content: "\f12e";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__iframe:before {
  content: "\f10a";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__youtube:before {
  content: "\f167";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__textcolor:before {
  content: "\f043";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__bgcolor:before {
  content: "\f1fc";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__maximize:before {
  content: "\f065";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__maximize.cke_button_on:before {
  content: "\f066";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__showblocks:before {
  content: "\f096";
}
[id*=cke_editor] .cke_top .cke_toolgroup a.cke_button.cke_button__spoiler:before {
  content: "\f0fe";
}
[id*=cke_editor] .cke_top .cke_combo {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  height: 36px;
}
[id*=cke_editor] .cke_top .cke_combo + .cke_combo {
  margin: 0 0 0 16px;
}
[id*=cke_editor] .cke_top .cke_combo:after {
  content: "";
  display: block;
  position: static;
  border: 0;
  background: #e4e6e6;
  width: 1px;
  margin: 4px 2px;
  height: 28px;
  float: left;
}
[id*=cke_editor] .cke_top .cke_combo .cke_combo_button {
  position: relative;
  display: block;
  float: left;
  padding: 0 20px 0 0 !important;
  color: #474747;
  border: 0;
  cursor: pointer;
}
[id*=cke_editor] .cke_top .cke_combo .cke_combo_button .cke_combo_text {
  float: left;
  display: block;
  font: 13px/36px "Roboto", "Arial", sans-serif;
  color: inherit;
  padding: 0;
  width: 62px;
}
[id*=cke_editor] .cke_top .cke_combo .cke_combo_button:before {
  content: "\f0d7";
  font: 12px/36px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 8px;
  margin: 0;
  pointer-events: none;
  z-index: 60;
  color: #999;
  transition: 300ms color;
}
[id*=cke_editor] .cke_top .cke_combo .cke_combo_button:hover {
  border: 0;
  margin: 0;
  background: none;
  color: #474747;
}
[id*=cke_editor] .cke_top .cke_combo .cke_combo_button:hover:before {
  color: inherit;
}
[id*=cke_editor] .cke_top .cke_combo.cke_combo_on .cke_combo_button {
  border: 0;
  margin: 0;
  background: none;
  color: #474747;
}
[id*=cke_editor] .cke_top .cke_combo.cke_combo_on .cke_combo_button:before {
  color: inherit;
  transform: rotate(180deg);
  margin: -1px 0 0;
}

body .cke_panel {
  background: white;
  border: 1px solid #E4E6E6;
  margin: 1px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
body .cke_panel.cke_combopanel__format, body .cke_panel.cke_combopanel__fontsize {
  margin-left: -17px;
}
body .cke_dialog_background_cover {
  display: none !important;
}
body .cke_editor_editor_dialog, body .cke_editor_editor1_dialog, body .cke_editor_editor2_dialog, body .cke_editor_editor3_dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 63, 78, 0.4);
  z-index: 100000;
  overflow-x: hidden;
  overflow-y: auto;
}
body .cke_editor_editor_dialog > table, body .cke_editor_editor1_dialog > table, body .cke_editor_editor2_dialog > table, body .cke_editor_editor3_dialog > table {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
}
body .cke_editor_editor_dialog > table td, body .cke_editor_editor1_dialog > table td, body .cke_editor_editor2_dialog > table td, body .cke_editor_editor3_dialog > table td {
  vertical-align: middle;
  text-align: center;
}
body .cke_editor_editor_dialog *, body .cke_editor_editor1_dialog *, body .cke_editor_editor2_dialog *, body .cke_editor_editor3_dialog * {
  box-sizing: border-box;
}
body .cke_dialog_body {
  width: 480px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 16px 0;
}
body .cke_dialog_body > .cke_dialog_title {
  padding: 0 50px 0 24px;
  width: 100%;
  float: left;
  border-bottom: 1px solid #e5e5e5;
  background: #f1f2f2;
  font: 18px/55px "Roboto", "Arial", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
body .cke_dialog_body > .cke_dialog_close_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  text-align: center;
  font: 18px/55px FontAwesome;
  display: block;
  color: #999;
  cursor: pointer;
  transition: 300ms color;
}
body .cke_dialog_body > .cke_dialog_close_button:before {
  content: "\f00d";
}
body .cke_dialog_body > .cke_dialog_close_button:hover {
  color: #474747;
}
body .cke_dialog_body > .cke_dialog_close_button .cke_label {
  display: none;
}
body .cke_dialog_body > .cke_dialog_tabs {
  float: left;
  width: 100%;
  background: white;
  border-bottom: 1px solid #E4E8E8;
  padding: 0 24px;
}
body .cke_dialog_body > .cke_dialog_tabs > a {
  display: block;
  float: left;
  padding: 0 16px;
  font: 14px/46px "Roboto", "Arial", sans-serif;
  color: #333333;
  transition: 300ms box-shadow;
  margin: 1px 0 0;
}
body .cke_dialog_body > .cke_dialog_tabs > a.cke_dialog_tab_selected {
  pointer-events: none;
  box-shadow: inset 0 -1px 0 #34CAF3, 0 1px 0 #34CAF3;
}
body .cke_dialog_body > .cke_dialog_tabs > a:only-child {
  display: none;
}
body .cke_dialog_body > .cke_dialog_contents {
  font: 14px/20px "Roboto", "Arial", sans-serif;
  color: #474747;
  float: left;
  width: 100%;
  background: white;
  position: relative;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body {
  width: 100% !important;
  height: auto !important;
  padding: 24px;
  position: relative;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body:before {
  content: "";
  display: block;
  background: #e5e5e5;
  height: 1px;
  bottom: 0;
  left: 24px;
  right: 24px;
  position: absolute;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 8px 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table td {
  vertical-align: top;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table td:not([style="width:320px"]):not([style="width:90px"]):not(.ColorCell) {
  width: inherit !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table td[style="width:90px"] a.cke_dialog_ui_button {
  min-width: 100%;
  padding: 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table td[style="width:100%"] + .cke_dialog_ui_hbox_last {
  vertical-align: bottom;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table[aria-labelledby*=specialchar_table], body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table[aria-labelledby*=specialchar_table] tbody, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table[aria-labelledby*=specialchar_table] tr {
  display: inline !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body table[aria-labelledby*=specialchar_table] td {
  display: block !important;
  float: left;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list {
  border: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar-track {
  background: #f5f7fa;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_smile {
  width: 100%;
  padding: 100% 0 0;
  position: relative;
  display: block;
  transition: 300ms opacity;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_smile:hover {
  opacity: 0.6;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_smile img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_specialchar {
  width: 26px;
  height: 26px;
  position: relative;
  display: block;
  transition: 300ms background;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_specialchar > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 300ms color;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_specialchar:hover {
  background: #019afe;
  transition: none;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_specialchar:hover > span {
  color: white;
  transition: none;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body a.cke_dialog_ui_button {
  display: block;
  width: auto !important;
  float: left;
  margin: 16px 0 0;
  height: 32px;
  min-width: 100px;
  text-align: center;
  font: 500 13px/32px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  cursor: pointer;
  transition: 300ms background, 300ms color, 300ms border;
  background: #019afe;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body a.cke_dialog_ui_button span {
  color: white;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body a.cke_dialog_ui_button:hover {
  background: #017bcb;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_hbox_last a.cke_dialog_ui_button {
  margin: 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body div:not(.cke_tpl_item) {
  float: left;
  width: 100%;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body fieldset {
  display: block;
  float: left;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 8px 0 0 !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body fieldset legend {
  display: none;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list .cke_tpl_item {
  margin: 4px 4px 4px 0;
  transition: all 300ms;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list > a:first-child .cke_tpl_item {
  margin-top: 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list > a:last-child .cke_tpl_item {
  margin-bottom: 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_hbox:not(tr) {
  float: left;
  width: calc(100% + 32px);
  margin: 0 0 0 -16px;
  float: none;
  border-spacing: 16px 0;
  border-collapse: separate;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_label {
  display: block;
  float: left;
  width: 100%;
  margin: 8px 0;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content {
  float: left;
  width: 100%;
  width: 100% !important;
  height: 34px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content div {
  height: 100%;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]), body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  width: 100% !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio])[readonly], body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select[readonly] {
  cursor: default;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):not([readonly]):focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):not([readonly]).focused, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:not([readonly]):focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):-webkit-autofill, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):-webkit-autofill:not([readonly]):focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):-moz-placeholder, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio])::-moz-placeholder, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):-ms-input-placeholder, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type=checkbox]):not([type=radio]):disabled, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select {
  padding-right: 30px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content .cke_dialog_ui_input_select {
  position: relative;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content .cke_dialog_ui_input_select:before {
  content: "\f0d7";
  font: 12px/32px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 17px;
  margin: 0;
  pointer-events: none;
  color: #999999;
  z-index: 60;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  margin: 8px 0 0;
  padding: 12px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe[readonly] {
  cursor: default;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:not([readonly]):focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_input_text, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_select {
  width: 100% !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_checkbox {
  display: block;
  float: left;
  width: 100%;
  margin: 8px 0 0;
  position: relative;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_checkbox input {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_checkbox label {
  display: block;
  float: left;
  cursor: pointer;
  padding: 0 0 0 22px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_radio {
  margin: 0 0 8px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_radio .cke_dialog_ui_labeled_content {
  height: auto;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_radio td[style="width:25%"] {
  position: relative;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_radio td[style="width:25%"] input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_radio td[style="width:25%"] label {
  display: block;
  float: left;
  cursor: pointer;
  padding: 0 0 0 22px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_hbox_first .cke_dialog_ui_checkbox, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_hbox_last .cke_dialog_ui_checkbox {
  margin: 16px 0 8px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_html[style="margin-top:18px; width:40px; height:20px"] {
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_reset {
  display: block;
  float: left;
  width: 34px;
  height: 34px;
  background: #f1f2f2;
  color: #474747;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 34px 0 0;
  font: 14px/32px FontAwesome;
  text-align: center;
  transition: 300ms background, 300ms color;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked .cke_label, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_reset .cke_label {
  display: none;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked:hover, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_reset:hover {
  background: #E7E8E8;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked:before {
  content: "\f023";
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked:not(.cke_btn_unlocked) {
  background: #019afe;
  color: white;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked:not(.cke_btn_unlocked):hover {
  background: #017bcb;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_reset {
  margin-left: 16px;
}
body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_reset:before {
  content: "\f0e2";
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-last-child(3).cke_dialog_ui_hbox_first[style="width:70%; padding:0px"] {
  display: block !important;
  float: left !important;
  width: calc(100% - 76px - 16px) !important;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-last-child(3).cke_dialog_ui_hbox_first[style="width:70%; padding:0px"] + .cke_dialog_ui_hbox_child[style="width:10%; padding:0px"] {
  display: none !important;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-last-child(3).cke_dialog_ui_hbox_first[style="width:70%; padding:0px"] table {
  float: left;
  width: 100%;
  border-spacing: 0;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-last-child(3).cke_dialog_ui_hbox_first[style="width:70%; padding:0px"] table td.ColorCell {
  height: 19px !important;
  transition: 300ms opacity;
  cursor: pointer;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-last-child(3).cke_dialog_ui_hbox_first[style="width:70%; padding:0px"] table td.ColorCell:hover {
  opacity: 0.5;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] {
  display: block !important;
  float: right !important;
  width: 76px !important;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] .cke_dialog_ui_vbox_child > span {
  display: none;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] td > div:nth-child(2)[id*=hicolor] {
  width: 76px !important;
  height: 76px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: 300ms background;
  margin: 0 0 8px !important;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] td > div:nth-child(3)[id*=hicolortext] {
  color: #999;
  margin: 0 0 37px;
  text-align: center;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] td > div:last-child[id*=selhicolor] {
  width: 76px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: 300ms background;
  margin: 0 0 8px;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] td input {
  padding: 0;
  text-align: center;
}
body .cke_dialog_body > .cke_dialog_contents table[style="width:100%;float:none;"] > tbody > tr > td.cke_dialog_ui_vbox_child > table.cke_dialog_ui_hbox > tbody > tr.cke_dialog_ui_hbox > td:nth-child(3).cke_dialog_ui_hbox_last[style="width:30%; padding:0px"] td a.cke_dialog_ui_button {
  width: 100% !important;
  min-width: inherit !important;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  margin: 8px 0 0;
}
body .cke_dialog_body .cke_dialog_footer {
  padding: 24px 24px;
}
body .cke_dialog_body .cke_dialog_footer table {
  float: right;
}
body .cke_dialog_body .cke_dialog_footer table td span {
  display: block;
  float: left;
  margin: 0 8px;
  height: 34px;
  min-width: 120px;
  text-align: center;
  font: 13px/32px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  cursor: pointer;
  transition: 300ms background, 300ms color, 300ms border;
  background: #019afe;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: white;
  text-transform: capitalize;
}
body .cke_dialog_body .cke_dialog_footer table td span:hover {
  background: #017bcb;
}
body .cke_dialog_body .cke_dialog_footer table td + td span, body .cke_dialog_body .cke_dialog_footer table td .cke_dialog_ui_button_cancel span {
  background: #F7F7F7;
  color: #8a93a3;
}
body .cke_dialog_body .cke_dialog_footer table td + td span:hover, body .cke_dialog_body .cke_dialog_footer table td .cke_dialog_ui_button_cancel span:hover {
  background: #f2f2f2;
}
body .cke_tpl_list a:hover .cke_tpl_item, body .cke_tpl_list a:focus .cke_tpl_item, body .cke_tpl_list a:active .cke_tpl_item {
  border-color: #019afe;
  background: rgba(1, 154, 254, 0.1);
}
body div[name=youtubePlugin] .cke_dialog_ui_html {
  display: none;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #b6e5f7;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #86acc4;
  position: relative;
  border-radius: 3px;
  box-sizing: border-box;
  resize: none;
  padding: 8px 12px;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea[readonly] {
  cursor: default;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:not([readonly]):focus, body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:not([readonly]).focused {
  color: #86acc4;
  border-color: #b6e5f7;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:-webkit-autofill:not([readonly]):focus {
  -webkit-text-fill-color: #86acc4;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #86acc4;
  opacity: 1;
}
body div[name=youtubePlugin] .cke_dialog_ui_textarea textarea:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  color: #999;
}

.cke_button_label, .cke_dialog_footer .cke_resizer, .cke_button_icon, .cke_button:after, .cke_button_arrow, .cke_toolbar_end, .cke_toolbar_start, .cke_combo_open {
  display: none !important;
}

.modal-backdrop {
  background: rgba(48, 63, 78, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1050;
}
.modal .modal-dialog {
  display: table;
  table-layout: fixed;
  float: left;
  width: 100%;
  height: 100%;
}
.modal .modal-dialog .modal-content {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.modal .modal-dialog .modal-content modal {
  display: inline-block;
  text-align: left;
  font: 14px/18px "Roboto", "Arial", sans-serif;
  color: #474747;
  margin: 16px 0;
  background: white;
  position: relative;
  max-width: 920px;
  min-width: 432px;
  border-radius: 4px;
  box-shadow: 0 0 147px 3px rgba(0, 0, 0, 0.09);
  animation-duration: 300ms;
}
.modal .modal-dialog .modal-content modal.sm {
  max-width: 440px;
}
.modal .modal-dialog .modal-content modal.mm {
  max-width: 730px;
}

.warning-modal .pdh-header:after,
.warning-modal .pdh-content:nth-last-child(2):before {
  background: #fdd9db;
}

.pdh-header {
  padding: 0 54px 0 24px;
  width: 100%;
  float: left;
  font: 500 18px/55px "Roboto", "Arial", sans-serif;
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.pdh-header i {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  text-align: center;
  line-height: inherit;
  display: block;
  color: #999;
  transition: 300ms color;
}
.pdh-header i:hover {
  color: #474747;
}
.pdh-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  height: 1px;
  width: calc(100% - 48px);
  background: #c3e7d6;
}

.pdh-content {
  float: left;
  width: 100%;
  padding: 24px;
  position: relative;
}
.pdh-content:nth-last-child(2):before {
  content: "";
  display: block;
  background: #c3e7d6;
  height: 1px;
  bottom: 0;
  left: 24px;
  right: 24px;
  position: absolute;
}
.pdh-content img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 100%;
}
.pdh-content .modal-input-grid {
  float: left;
  width: calc(100% + 16px);
  margin: 0 0 0 -8px;
  margin: -8px 0 -8px -8px;
}
.pdh-content .modal-input-grid input-holder input:not([type=checkbox]),
.pdh-content .modal-input-grid input-holder textarea {
  color: #999999;
  border-color: #e6eaee;
}
.pdh-content .modal-input-grid input-holder input:not([type=checkbox])::-webkit-input-placeholder,
.pdh-content .modal-input-grid input-holder textarea::-webkit-input-placeholder {
  color: #999999;
  opacity: 1;
}
.pdh-content .modal-input-grid input-holder input:not([type=checkbox]):-moz-placeholder,
.pdh-content .modal-input-grid input-holder textarea:-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.pdh-content .modal-input-grid input-holder input:not([type=checkbox])::-moz-placeholder,
.pdh-content .modal-input-grid input-holder textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.pdh-content .modal-input-grid input-holder input:not([type=checkbox]):-ms-input-placeholder,
.pdh-content .modal-input-grid input-holder textarea:-ms-input-placeholder {
  color: #999999;
  opacity: 1;
}
.pdh-content .modal-input-grid input-holder.error > input,
.pdh-content .modal-input-grid input-holder.error .chosen-container:not(.chosen-container-multi) > a {
  border-color: #E25E58;
}
.pdh-content .modal-input-grid .chosen-container:not(.chosen-container-multi) > a,
.pdh-content .modal-input-grid .chosen-container-multi {
  color: #999999;
  border-color: #e6eaee;
}
.pdh-content .modal-input-grid.modal-add, .pdh-content .modal-input-grid.modal-edit {
  margin-top: 8px;
}
.pdh-content .gallery-layout {
  float: left;
  width: calc(100% + 16px);
  margin: 0 0 0 -8px;
  margin: -8px 0 -8px -8px;
}
.pdh-content .gallery-layout figure {
  border-width: 4px;
}
.pdh-content .modal-link a {
  color: #0782C1;
  text-decoration: underline;
}

.pdh-buttons-holder {
  float: left;
  width: 100%;
  padding: 24px 24px;
}
.pdh-buttons-holder > div {
  float: right;
  margin: 0 -8px;
}
.pdh-buttons-holder > div button {
  display: block;
  float: left;
  margin: 0 8px;
  height: 34px;
  min-width: 120px;
  text-align: center;
  font: 13px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: 300ms background, 300ms color, 300ms border;
  background: #019afe;
  border: 1px solid #019afe;
  color: #ffffff;
}
.pdh-buttons-holder > div button:disabled {
  pointer-events: none;
  background: #F1F2F2;
  color: #999;
}
.pdh-buttons-holder > div button:hover {
  background: #018be5;
}
.pdh-buttons-holder > div button + button:not(:disabled) {
  color: #019afe;
  background: #C4F5FF;
  border-color: #019afe;
}
.pdh-buttons-holder > div button + button:not(:disabled):hover {
  background: #abf1ff;
}
.pdh-buttons-holder > div button.red:not(:disabled) {
  color: #ffffff;
  background: #ff3c48;
  border-color: #ff3c48;
}
.pdh-buttons-holder > div button.red:not(:disabled):hover {
  background: #ff2330;
  border-color: #ff2330;
}
.pdh-buttons-holder > div button.red:not(:disabled) + button {
  color: #ff3c48;
  background: #fef0f1;
  border-color: #ff3c48;
}
.pdh-buttons-holder > div button.red:not(:disabled) + button:hover {
  background: #fcd8db;
}
.pdh-buttons-holder > div button.hero:not(:disabled) {
  background: #019afe;
  color: white;
}
.pdh-buttons-holder > div button.hero:not(:disabled):hover {
  background: #017bcb;
}
.pdh-buttons-holder > div .build-status-modal {
  float: left;
  color: #999999;
  font: 12px/32px Roboto;
}

.modal-edit .modal-general-section .bc-dropdown-container-shadow,
.modal-edit .modal-web-section .bc-dropdown-container-shadow,
.modal-edit .modal-mobile-section .bc-dropdown-container-shadow {
  height: 562px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.modal-edit .modal-general-section .bc-dropdown-container-shadow::-webkit-scrollbar,
.modal-edit .modal-web-section .bc-dropdown-container-shadow::-webkit-scrollbar,
.modal-edit .modal-mobile-section .bc-dropdown-container-shadow::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.modal-edit .modal-general-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb,
.modal-edit .modal-web-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb,
.modal-edit .modal-mobile-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
.modal-edit .modal-general-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb:hover,
.modal-edit .modal-web-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb:hover,
.modal-edit .modal-mobile-section .bc-dropdown-container-shadow::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.modal-edit .modal-general-section .bc-dropdown-container-shadow::-webkit-scrollbar-track,
.modal-edit .modal-web-section .bc-dropdown-container-shadow::-webkit-scrollbar-track,
.modal-edit .modal-mobile-section .bc-dropdown-container-shadow::-webkit-scrollbar-track {
  background: #f5f7fa;
}

.modal-general-section,
.modal-web-section,
.modal-mobile-section {
  position: relative;
}
.modal-general-section .bc-dropdown-container-shadow,
.modal-web-section .bc-dropdown-container-shadow,
.modal-mobile-section .bc-dropdown-container-shadow {
  height: 640px;
  padding: 8px;
}
.modal-general-section .bc-dropdown-container-shadow > div,
.modal-web-section .bc-dropdown-container-shadow > div,
.modal-mobile-section .bc-dropdown-container-shadow > div {
  float: left;
  width: 100%;
  padding: 8px 0;
}
.modal-general-section:before,
.modal-web-section:before,
.modal-mobile-section:before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafbfb;
  margin-left: -30px;
}
.modal-general-section:after,
.modal-web-section:after,
.modal-mobile-section:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -12px;
  font: 26px/58px icomoon;
}

.modal-general-section:after {
  content: "\e913";
  font-size: 24px;
  margin-left: -11px;
}

.modal-web-section:after {
  content: "\e916";
}

.modal-mobile-section:after {
  content: "\e914";
}

.pdh-tabs {
  float: left;
  width: 100%;
  border-bottom: 1px solid #E4E8E8;
  padding: 0 24px;
  margin: -1px 0 0;
}
.pdh-tabs > a {
  display: block;
  float: left;
  padding: 0 16px;
  font: 14px/46px "Roboto", "Arial", sans-serif;
  color: #333333;
  transition: 300ms box-shadow;
  margin: 1px 0 0;
  text-transform: capitalize;
}
.pdh-tabs > a.active {
  pointer-events: none;
  box-shadow: inset 0 -1px 0 #34CAF3, 0 1px 0 #34CAF3;
}

.by-currencies-popup > .bc-dropdown-container {
  padding: 0;
}
.by-currencies-popup > .bc-dropdown-container > .bc-dropdown-container-body {
  padding: 0;
}
.by-currencies-popup > .bc-dropdown-container > .bc-dropdown-container-body .bc-dropdown-container .bc-dropdown-container-shadow {
  box-shadow: none;
  border: 1px solid #eef2f7;
}

.description-height .cke_contents {
  height: 200px !important;
}

.border-category {
  position: relative;
}
.border-category:before {
  content: "";
  display: block;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  position: absolute;
  background: #e4e6e6;
}

.modal-badge .label-holder {
  width: 25%;
}
.modal-badge .label-holder + .label-holder:not(:nth-child(5)) {
  padding-left: 10px;
}
.modal-badge .label-holder:nth-child(n+5) {
  margin-top: 10px;
}
.modal-badge .label-holder:first-child input[type=radio] ~ p {
  color: #8d8d8d;
  background: rgba(0, 0, 0, 0.06);
}
.modal-badge .label-holder:nth-child(2) input[type=radio] ~ p {
  color: #bb2a85;
  background: rgba(187, 42, 133, 0.06);
}
.modal-badge .label-holder:nth-child(3) input[type=radio] ~ p {
  color: #822691;
  background: rgba(187, 42, 133, 0.06);
}
.modal-badge .label-holder:nth-child(4) input[type=radio] ~ p {
  color: #009bb2;
  background: rgba(0, 155, 178, 0.06);
}
.modal-badge .label-holder:nth-child(5) input[type=radio] ~ p {
  color: #46904a;
  background: rgba(70, 144, 74, 0.06);
}
.modal-badge .label-holder:nth-child(6) input[type=radio] ~ p {
  color: #019afe;
  background: rgba(1, 154, 254, 0.06);
}
.modal-badge .label-holder:nth-child(7) input[type=radio] ~ p {
  color: #cba853;
  background: rgba(203, 168, 83, 0.06);
}
.modal-badge .label-holder:nth-child(8) input[type=radio] ~ p {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.06);
}
.modal-badge .label-holder:nth-child(9) input[type=radio] ~ p {
  color: #c00014;
  background: rgba(255, 165, 0, 0.06);
}
.modal-badge checkbox {
  height: 100px;
  border: 1px solid #E4E6E6;
  border-radius: 8px;
  transition: border 300ms;
}
.modal-badge checkbox:hover {
  border-color: #b6e5f7;
}
.modal-badge checkbox:hover check {
  border-color: #b6e5f7;
}
.modal-badge checkbox label {
  height: 100%;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.modal-badge checkbox check {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
}
.modal-badge checkbox input[type=radio] ~ p {
  float: none;
  display: inline-block;
  width: auto;
  height: 22px;
  margin-top: 38px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 22px;
}

.col-12 .horizontal-data {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
}

.image-item {
  min-width: 101px;
}

#toast-container {
  position: fixed;
  top: 62px;
  right: 20px;
  z-index: 100000000;
  min-width: 320px;
  transition: 300ms top;
}
#toast-container .toast {
  float: right;
  clear: both;
  animation: 1s bounceInRight both;
  padding: 16px 16px 16px 66px;
  border: 1px solid;
  position: relative;
  width: 320px;
  font: 14px/18px "Roboto", "Arial", sans-serif;
  color: #75889a;
  margin: 4px;
  text-transform: capitalize;
  border-radius: 4px;
}
#toast-container .toast:not(.hidden-close) {
  padding: 18px 60px 18px 18px;
}
#toast-container .toast:not(.hidden-close):after {
  content: "\f00d";
  height: 20px;
  width: 20px;
  position: absolute;
  display: block;
  font: 14px/18px FontAwesome;
  text-align: center;
  top: 17px;
  right: 13px;
  transition: 300ms opacity;
  z-index: 20;
}
#toast-container .toast:hover:after {
  opacity: 0.8;
}
#toast-container .toast:before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  display: block;
  font: 18px/20px FontAwesome;
  top: 17px;
  left: 15px;
  text-align: center;
}
#toast-container .toast.toast-error {
  background: #fde8ea;
  border-color: #fde8ea;
}
#toast-container .toast.toast-error:before {
  content: "\f057";
  color: #EE6567;
}
#toast-container .toast.toast-info {
  background: #DBF2F4;
  border-color: #51c2cf;
}
#toast-container .toast.toast-info:before {
  content: "\f0eb";
  color: #51c2cf;
}
#toast-container .toast.toast-success {
  background: #caefdb;
  border-color: #caefdb;
}
#toast-container .toast.toast-success:before {
  content: "\f058";
  color: #4ec27f;
}
#toast-container .toast.toast-warning {
  background: #FFF0DA;
  border-color: #F9B56A;
}
#toast-container .toast.toast-warning:before {
  content: "\f071";
  color: #F9B56A;
}
#toast-container .toast-message {
  text-indent: 24px;
}
.toast-to-top #toast-container {
  top: 20px;
}

body.fancybox-active {
  overflow: hidden;
}

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: rgb(48, 63, 78);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 0;
  font-size: 13px;
  padding: 0 10px;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: exclusion;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-is-closing .fancybox-stage {
  overflow: visible;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide > title,
.fancybox-slide > style,
.fancybox-slide > meta,
.fancybox-slide > link,
.fancybox-slide > script,
.fancybox-slide > base {
  display: none;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 16px;
  line-height: 20px;
}

/* Buttons */
.fancybox-button {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease;
  cursor: pointer;
  outline: none;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button[disabled] {
  color: #ccc;
  cursor: default;
  opacity: 0.6;
}

.fancybox-button svg {
  display: block;
  position: relative;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--zoom svg path {
  fill: transparent;
}

/* Navigation arrows */
.fancybox-navigation {
  display: none;
}

.fancybox-show-nav .fancybox-navigation {
  display: block;
}

.fancybox-navigation button {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  z-index: 99997;
  background: transparent;
  width: 60px;
  height: 100px;
  padding: 17px;
}

.fancybox-navigation button:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 22px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background-color: transparent;
  transition: background-color 0.25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -40px;
}

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
  background: transparent;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 2vw 0 2vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
  position: relative;
  /* Fix IE11 */
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  max-width: 90%;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  margin: 0 0 20px 0;
  font-size: 35px;
  font-weight: 700;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

p.fancybox-share__links {
  margin-right: -10px;
}

.fancybox-share__button {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px 10px 0;
  padding: 0 15px;
  min-width: 130px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  transition: all 0.2s;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  position: relative;
  top: -1px;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  vertical-align: middle;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  box-sizing: border-box;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px 15px;
  background: transparent;
  color: #5d5b5b;
  font-size: 14px;
  outline: none;
  border: 0;
  border-bottom: 2px solid #d7d7d7;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  box-sizing: border-box;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-y: hidden;
  overflow-x: auto;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
  white-space: nowrap;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 2px;
  width: 100px;
  height: 75px;
  max-width: calc(50% - 4px);
  max-height: calc(100% - 8px);
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 34%;
  background: white;
  z-index: 5000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #E4E6E6;
  margin: -1px 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
  max-height: calc(100vh - 210px);
}
.search-suggestions::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.search-suggestions::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
}
.search-suggestions::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.search-suggestions::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.search-suggestions > ul {
  float: left;
  width: 100%;
}
.search-suggestions > ul > li {
  float: left;
  width: 100%;
  padding: 10px 16px;
}
.search-suggestions > ul > li:nth-child(even) {
  background: #F9F9F9;
}
.search-suggestions > ul > li:hover, .search-suggestions > ul > li.highlighted, .search-suggestions > ul > li:nth-child(even):hover, .search-suggestions > ul > li:nth-child(even).highlighted {
  background: #ededf0;
}
.search-suggestions > ul > li p {
  float: left;
  width: 100%;
  font: 11px/16px "Roboto", "Arial", sans-serif;
}
.search-suggestions > ul > li p strong {
  font: 500 13px/20px "Roboto", "Arial", sans-serif;
}
.search-suggestions > ul > li p span {
  color: #999;
}
.full-width > .search-suggestions {
  width: 100%;
}

form[name=edit_page_item_form] .search-suggestions {
  width: 100%;
}

.combo-box-config-list {
  float: left;
  position: relative;
}
.combo-box-config-list > i {
  float: left;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  z-index: 200;
  padding: 26px 24px;
}
.combo-box-config-list .combo-box-dropdown {
  display: none;
  position: absolute;
  top: 66%;
  right: 0;
  background: white;
  white-space: nowrap;
  z-index: 300;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #E4E6E6;
  margin: 2px 0 0;
  cursor: default;
}
.combo-box-config-list .combo-box-dropdown > button {
  display: block;
  float: left;
  width: 100%;
  height: 34px;
  text-align: left;
  padding: 0 16px;
  color: #474747;
  font: 12px "Roboto", "Arial", sans-serif;
}
.combo-box-config-list .combo-box-dropdown > button:hover {
  background: #00ca6d;
  color: white;
}
.combo-box-config-list .combo-box-dropdown > button:disabled {
  pointer-events: none;
  color: #999;
}
.combo-box-config-list.active > i {
  color: #009751;
}
.combo-box-config-list.active .combo-box-dropdown {
  display: inline-block;
}

.skins-list-in-configs {
  float: left;
  width: 100%;
}
.skins-list-in-configs > ul {
  float: left;
  width: 100%;
  display: table;
  border: 1px solid #EAEDED;
  margin: 2px 0;
}
.skins-list-in-configs > ul:first-child {
  margin-top: 0;
}
.skins-list-in-configs > ul:last-child {
  margin-bottom: 0;
}
.skins-list-in-configs > ul:nth-child(odd) {
  background: #F9F9F9;
}
.skins-list-in-configs > ul:hover, .skins-list-in-configs > ul:nth-child(odd):hover {
  background: #ededf0;
  border-color: rgba(0, 0, 0, 0.05);
}
.skins-list-in-configs > ul > li {
  display: table-cell;
  vertical-align: middle;
  padding: 8px 16px;
  word-break: break-all;
}
.skins-list-in-configs > ul > li p {
  font: 700 14px/18px "Roboto", "Arial", sans-serif;
}
.skins-list-in-configs > ul > li:last-child {
  width: 1%;
  white-space: nowrap;
}

.monitoring-table > ul {
  table-layout: fixed;
}
.monitoring-table > ul > li:first-child {
  width: 20px;
}
.monitoring-table > ul > li:first-child checkbox {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.monitoring-table > ul > li:first-child span {
  vertical-align: middle;
}
.monitoring-table > ul > li:last-child {
  width: auto;
  white-space: normal;
}

.config-icon {
  float: left;
  width: 100%;
  height: 40px;
  display: block;
  font: 16px/40px FontAwesome;
  text-align: center;
  position: relative;
}
.config-icon:before {
  content: "\f013";
}
.config-icon:after {
  content: "\f013";
  display: block;
  position: absolute;
  color: #019afe;
  font-size: 12px;
  top: 50%;
  left: 53%;
  background: white;
  line-height: 12px;
  width: 12px;
  border-radius: 100%;
}
.config-icon.SkinConfig:before {
  font-family: icomoon;
  content: "\e901";
}
.config-icon.SkinCConfig:before {
  font-family: icomoon;
  content: "\e900";
}
.config-icon.SkinWPConfig:before {
  content: "\f0f0";
}
.config-icon.SkinExchangeConfig:before {
  content: "\f079";
}

.config-tree {
  float: left;
  width: 100%;
  background: #fcfcfc;
  border: 1px solid #EAEDED;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 10px 3px rgba(119, 119, 119, 0.1);
}
.config-tree .config-name-holder {
  float: left;
  width: 100%;
  position: relative;
}
.config-tree .config-name-holder checkbox label {
  padding: 18px 24px 18px 8px;
  cursor: pointer;
}
.config-tree .config-name-holder checkbox input.fake-checked:checked ~ check:before {
  transform: scale(0);
}
.config-tree .config-name-holder > .setting-nav-item-table {
  float: left;
  width: 100%;
  display: table;
}
.config-tree .config-name-holder > .setting-nav-item-table > .setting-nav-item-table-cell {
  display: table-cell;
  vertical-align: middle;
  height: 70px;
  width: 1%;
  position: relative;
}
.config-tree .config-name-holder > .setting-nav-item-table > .setting-nav-item-table-cell.name {
  width: auto;
}
.config-tree .config-name-holder > .setting-nav-item-table > .setting-nav-item-table-cell.config-icon-holder {
  width: 48px;
}
.config-tree .config-name-holder > .setting-nav-item-table > .setting-nav-item-table-cell p {
  font: 500 14px/16px Roboto;
  text-transform: capitalize;
}
.config-tree .config-name-holder > .setting-nav-item-table > .setting-nav-item-table-cell > icon {
  position: absolute;
  top: 23px;
  left: -20px;
  z-index: 201;
}
.config-tree ul {
  float: left;
  width: 100%;
}
.config-tree ul li {
  float: left;
  width: 100%;
}
.config-tree ul li li {
  position: relative;
}
.config-tree ul li li:not(:last-child):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #019afe;
  z-index: 20;
}
.config-tree ul li:first-child .config-name-holder {
  border-radius: 8px 8px 0 0;
}
.config-tree ul li:not(.selected-config):not(.only-item).active > .config-name-holder {
  background: #FCFCFC;
  box-shadow: inset 0 -1px 0 #EAEDED, inset 1px 0 0 #EAEDED, 0 -1px 0 #EAEDED;
}
.config-tree ul li:not(.selected-config):not(.only-item).active > .config-name-holder .sub-toggle:not(.disabled) {
  background: #FCFCFC;
}
.config-tree ul li:not(.selected-config):not(.active):hover > .config-name-holder, .config-tree ul li:not(.selected-config).only-item:hover > .config-name-holder {
  background: #f3f3f5;
  box-shadow: inset 0 -1px 0 #EAEDED, inset 1px 0 0 #EAEDED, 0 -1px 0 #EAEDED;
}
.config-tree ul li:not(.selected-config):not(.active):hover > .config-name-holder .sub-toggle:not(.disabled), .config-tree ul li:not(.selected-config).only-item:hover > .config-name-holder .sub-toggle:not(.disabled) {
  background: #f3f3f5;
}
.config-tree ul li.selected-config > .config-name-holder {
  background: #f3f3f5;
  box-shadow: inset 0 -1px 0 #EAEDED, inset 1px 0 0 #EAEDED, 0 -1px 0 #EAEDED;
}
.config-tree ul li.selected-config > .config-name-holder .sub-toggle:not(.disabled) {
  background: #f3f3f5;
}
.config-tree > ul > li > .sub-child > ul > li:first-child > .config-name-holder .tree-lines-block:after {
  top: -20px;
  height: calc(100% - 14px);
}
.config-tree > ul > li > .sub-child li:first-child {
  margin-top: -1px;
}
.config-tree > ul > li > .sub-child li:last-child {
  margin-bottom: -1px;
}
.config-tree > ul > li:not(:last-child) {
  border-bottom: 1px solid #EAEDED;
}
.config-tree > ul > li:not(.selected-config):not(.only-item).active > .config-name-holder {
  background: #FCFCFC;
  box-shadow: inset 0 -1px 0 #EAEDED, 0 -1px 0 #EAEDED;
}
.config-tree > ul > li:not(.selected-config):not(.active):hover > .config-name-holder {
  background: #f3f3f5;
  box-shadow: none;
}
.config-tree.second-type .sub-child .tree-lines-block:before {
  width: 17px;
}
.config-tree.second-type .config-name-holder checkbox check {
  transition: none;
}
.config-tree.second-type .config-name-holder checkbox label {
  padding: 18px 16px;
  position: relative;
  z-index: 20;
  cursor: pointer;
}
.config-tree.second-type > ul > li > .sub-child > ul > li:first-child > .config-name-holder .tree-lines-block:after {
  top: -28px;
  height: calc(100% - 6px);
}
.config-tree.second-type .fa-angle-right {
  display: block;
  font-size: 18px;
  padding: 0 24px;
}
.config-tree.second-type .active checkbox check {
  border-color: #017bcb;
  color: #017bcb;
}
.config-tree.second-type .active checkbox check:after {
  background: #017bcb;
}
.config-tree.second-type .active .fa-angle-right {
  transform: rotate(90deg);
}

.sub-child {
  float: left;
  width: 100%;
  background: white;
  display: none;
  padding: 1px 0 0 24px;
  position: relative;
}
.active > .sub-child {
  display: block;
}
.sub-child ul li:not(:last-child) .setting-nav-item-table-cell {
  border-bottom: 1px solid #EAEDED;
}
.sub-child ul li:not(:last-child) .setting-nav-item-table-cell.config-icon-holder {
  border-bottom-color: transparent;
}
.sub-child .tree-lines-block {
  float: left;
  width: 100%;
  height: 70px;
  display: block;
  position: relative;
}
.sub-child .tree-lines-block:after {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  width: 1px;
  height: 100%;
  background: #019afe;
}
.sub-child .tree-lines-block:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
  background: #019afe;
}

.sub-toggle {
  color: #019afe;
  font: 13px/15px icomoon;
  width: 15px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -7px;
  background: white;
  border-radius: 100%;
  z-index: 10;
}
.sub-toggle:not(.disabled):before {
  content: "\e90b";
}
.active > .config-name-holder .sub-toggle:not(.disabled):before {
  content: "\e90c";
}
.sub-toggle.disabled {
  width: 7px;
  height: 7px;
  background: #019afe;
  margin: -3px;
}

.no-checks .setting-nav-item-table-cell:last-child {
  display: none !important;
}

.configs-layout {
  float: left;
  width: 100%;
  height: calc(100vh - 165px);
  padding: 8px 8px 0 0;
}
.configs-layout > div {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.configs-layout > div::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.configs-layout > div::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
  border: 1px solid #F9F9F9;
}
.configs-layout > div::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.configs-layout > div::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.configs-layout > div:nth-child(2) {
  padding-left: 8px;
}
.configs-layout > div > div {
  margin: -8px 0;
}
.configs-layout .bc-dropdown-container-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
}

.no-pointer .only-item {
  cursor: default;
}

.tooltip {
  position: absolute;
  z-index: 10000;
  display: block;
  margin: 6px 0;
  font: 12px/16px "Roboto", "Arial", sans-serif;
  min-height: 36px;
  word-wrap: break-word;
  pointer-events: none;
  animation-duration: 300ms;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 12px;
  height: 6px;
}
.tooltip .tooltip-arrow::before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top {
  bottom: 100% !important;
  right: 0 !important;
  top: auto !important;
  left: auto !important;
}
.tooltip.top .tooltip-arrow {
  top: 100%;
  right: 8px;
}
.tooltip.top .tooltip-arrow::before {
  border-width: 6px 6px 0 6px;
  border-top-color: #3d4f61;
}
.tooltip.bottom {
  top: 100% !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
}
.tooltip.bottom .tooltip-arrow {
  bottom: 100%;
  right: 8px;
}
.tooltip.bottom .tooltip-arrow::before {
  border-width: 0 6px 6px 6px;
  border-bottom-color: #3d4f61;
}
.tooltip.right {
  left: 100% !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 6px;
}
.tooltip.right .tooltip-arrow {
  left: -6px;
  top: 11px;
}
.tooltip.right .tooltip-arrow::before {
  border-width: 6px 6px 6px 0;
  border-right-color: #3d4f61;
}
.tooltip.left {
  right: 100% !important;
  top: 0 !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 6px;
}
.tooltip.left .tooltip-arrow {
  right: -12px;
  top: 11px;
}
.tooltip.left .tooltip-arrow::before {
  border-width: 6px 0 6px 6px;
  border-left-color: #3d4f61;
}
.tooltip .tooltip-inner {
  max-width: 200px;
  padding: 10px 10px;
  background-color: #3d4f61;
  color: white;
  text-align: left;
  border-radius: 2px;
  min-height: 36px;
  white-space: normal;
}
.configs-block .tooltip {
  animation-delay: 300ms;
}
.configs-block .tooltip.right {
  left: 36px !important;
}

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}

.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker {
  color: black;
}

.CodeMirror-guttermarker-subtle {
  color: #999;
}

/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}

@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}

.cm-s-default .cm-quote {
  color: #090;
}

.cm-negative {
  color: #d44;
}

.cm-positive {
  color: #292;
}

.cm-header, .cm-strong {
  font-weight: bold;
}

.cm-em {
  font-style: italic;
}

.cm-link {
  text-decoration: underline;
}

.cm-strikethrough {
  text-decoration: line-through;
}

.cm-s-default .cm-keyword {
  color: #708;
}

.cm-s-default .cm-atom {
  color: #219;
}

.cm-s-default .cm-number {
  color: #164;
}

.cm-s-default .cm-def {
  color: #00f;
}

.cm-s-default .cm-variable-2 {
  color: #05a;
}

.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
  color: #085;
}

.cm-s-default .cm-comment {
  color: #a50;
}

.cm-s-default .cm-string {
  color: #a11;
}

.cm-s-default .cm-string-2 {
  color: #f50;
}

.cm-s-default .cm-meta {
  color: #555;
}

.cm-s-default .cm-qualifier {
  color: #555;
}

.cm-s-default .cm-builtin {
  color: #30a;
}

.cm-s-default .cm-bracket {
  color: #997;
}

.cm-s-default .cm-tag {
  color: #170;
}

.cm-s-default .cm-attribute {
  color: #00c;
}

.cm-s-default .cm-hr {
  color: #999;
}

.cm-s-default .cm-link {
  color: #00c;
}

.cm-s-default .cm-error {
  color: #f00;
}

.cm-invalidchar {
  color: #f00;
}

.CodeMirror-composing {
  border-bottom: 2px solid;
}

/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}

.CodeMirror-activeline-background {
  background: #e8f2ff;
}

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}

.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px;
  /* Force widget margins to stay inside of the container */
}

.CodeMirror-rtl pre {
  direction: rtl;
}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}

.CodeMirror-measure pre {
  position: static;
}

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}

div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}

.CodeMirror-crosshair {
  cursor: crosshair;
}

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, 0.4);
}

/* Used to force a border model for a node */
.cm-force-border {
  padding-right: 0.1px;
}

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: "";
}

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 2px;
  -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: 1px solid silver;
  background: white;
  font-size: 90%;
  font-family: monospace;
  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

.CodeMirror-search-match {
  background: gold;
  border-top: 1px solid orange;
  border-bottom: 1px solid orange;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0.5;
}

.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
  position: absolute;
  background: #ccc;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bbb;
  border-radius: 2px;
}

.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
  position: absolute;
  z-index: 6;
  background: #eee;
}

.CodeMirror-simplescroll-horizontal {
  bottom: 0;
  left: 0;
  height: 8px;
}

.CodeMirror-simplescroll-horizontal div {
  bottom: 0;
  height: 100%;
}

.CodeMirror-simplescroll-vertical {
  right: 0;
  top: 0;
  width: 8px;
}

.CodeMirror-simplescroll-vertical div {
  right: 0;
  width: 100%;
}

.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler, .CodeMirror-overlayscroll .CodeMirror-gutter-filler {
  display: none;
}

.CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
  position: absolute;
  background: #bcd;
  border-radius: 3px;
}

.CodeMirror-overlayscroll-horizontal, .CodeMirror-overlayscroll-vertical {
  position: absolute;
  z-index: 6;
}

.CodeMirror-overlayscroll-horizontal {
  bottom: 0;
  left: 0;
  height: 6px;
}

.CodeMirror-overlayscroll-horizontal div {
  bottom: 0;
  height: 100%;
}

.CodeMirror-overlayscroll-vertical {
  right: 0;
  top: 0;
  width: 6px;
}

.CodeMirror-overlayscroll-vertical div {
  right: 0;
  width: 100%;
}

/*bc-multi-select START*/
.bc-multi-select-wrapper .multi-select-dropdown radio-holder {
  width: 100%;
}

.bc-multi-select-wrapper .multi-select-dropdown radio-holder label {
  max-width: none;
  width: 100%;
}

.bc-multi-select-wrapper .multi-select-input {
  height: 32px;
  background-color: #fff;
  float: none;
  border: 1px solid #b8e5f6;
  border-radius: 3px;
  color: #86ACC4;
  width: 100%;
  padding: 0 25px 0 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  font: 13px Roboto, sans-serif;
}

.bc-multi-select-wrapper.view-mode .multi-select-input {
  color: #474747;
}

.bc-multi-select-wrapper .multi-select-input::before {
  content: "\f0d7";
  font: 12px/32px FontAwesome;
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  margin: 0;
  pointer-events: none;
  color: #86ACC4;
  z-index: 60;
}

.bc-multi-select-wrapper.show-drop-down .multi-select-input::before {
  transform: rotate(180deg);
}

.bc-multi-select-wrapper .multi-select-input .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.bc-multi-select-wrapper {
  position: relative;
}

.bc-multi-select-wrapper .multi-select-dropdown {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  z-index: 999;
  border: 1px solid #E4E6E6;
  background-clip: padding-box;
  overflow-y: auto;
  width: 100%;
}

.bc-multi-select-wrapper.show-drop-down .multi-select-dropdown {
  display: block !important;
}

.bc-multi-select-wrapper.hide-drop-down .multi-select-dropdown {
  display: none !important;
}

.bc-multi-select-wrapper .multi-select-group-separator {
  margin: 0;
  border: 1px solid #b7b7b7;
  border-bottom: 0;
}

.bc-multi-select-wrapper .search-container {
  float: left;
  padding: 8px;
  width: 100%;
}

.bc-multi-select-wrapper .action-icons-cont {
  margin: 3px 5px 5px;
}

.bc-multi-select-wrapper .action-icon {
  float: right;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #c2c5cd;
  margin: 0 0 0 8px;
  text-align: center;
  cursor: pointer;
  font: 12px/22px icomoon;
  color: #7b8191;
}

.bc-multi-select-wrapper .action-icon:hover {
  background-color: #27a779;
  color: #ffffff;
}

.bc-multi-select-wrapper .action-icon.all-unchecked:before {
  content: "\e906";
}

.bc-multi-select-wrapper .action-icon.all-checked:before {
  content: "\e903";
}

.bc-multi-select-wrapper .items-list-container {
  float: left;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

.bc-multi-select-wrapper .items-list-container > li {
  float: left;
  width: 100%;
  display: block;
  font: 13px/16px Roboto, sans-serif;
  margin: 0 0 1px;
}

.bc-multi-select-wrapper.view-mode .items-list-container > li {
  pointer-events: none;
}

.bc-multi-select-wrapper .items-list-container > li .fake-label {
  padding: 7px 12px;
  transition: 300ms background;
  position: relative;
  display: block;
  float: left;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bc-multi-select-wrapper .items-list-container > li .fake-label:hover {
  background: #f0f5f8;
  transition: none;
}

.bc-multi-select-wrapper .items-list-container > li .fake-label .checker {
  width: 16px;
  height: 16px;
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 12px;
}

.bc-multi-select-wrapper .items-list-container > li .fake-label .checker span {
  width: 100%;
  height: 100%;
  display: block;
  float: left;
}
.bc-multi-select-wrapper .items-list-container > li .fake-label .checker span > i {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #EAEDED;
}
.bc-multi-select-wrapper .items-list-container > li .fake-label .checker span > i:before {
  content: "";
  display: block;
  font: 9px/16px FontAwesome;
  position: absolute;
  top: 0;
  left: 4px;
}

.bc-multi-select-wrapper .items-list-container > li .fake-label .checker span input {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 10;
}
.bc-multi-select-wrapper .items-list-container > li .fake-label .checker span input:checked + i:before {
  content: "\f00c";
}

.bc-multi-select-wrapper .select-all-container .separator-row {
  padding: 0 8px;
  float: left;
  width: 100%;
  margin-bottom: 4px;
}

.bc-multi-select-wrapper .select-all-container .separator-row div {
  border-bottom: 1px solid #b8e5f6;
}

/*bc-multi-select END*/
.login-section {
  float: left;
  width: 100%;
  height: 100%;
  background: #354758;
}
.login-section table {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 470px;
  table-layout: fixed;
  background: rgba(0, 0, 0, 0.08);
  font: 18px/20px "Roboto", "Arial", sans-serif;
  color: #a2a8b7;
  text-align: center;
}
.login-section table td {
  vertical-align: middle;
  padding: 0 72px;
}
.login-section .betconstruct-logo {
  float: left;
  width: 100%;
  font: 65px/31px icomoon;
  color: #fff;
  margin: 8px 0 24px;
}
.login-section .betconstruct-logo:before {
  content: "\e90a";
}
.login-section h1 {
  float: left;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  font-size: 24px;
}
.login-section h2 {
  float: left;
  width: 100%;
  text-transform: uppercase;
  margin: 16px 0 24px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 300;
}
.login-section p {
  float: left;
  width: 100%;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 16px 0;
}
.login-section form {
  float: left;
  width: 100%;
}
.login-section form label {
  float: left;
  width: 100%;
  display: block;
  margin: 0 0 16px;
}
.login-section form label > span {
  display: none;
}
.login-section form label input {
  float: left;
  width: 100%;
  display: block;
  background: white;
  height: 46px;
  padding: 0 24px;
  font: 14px "Roboto", "Arial", sans-serif;
  color: #474747;
  transition: 300ms border, 300ms background, 300ms padding;
}
.login-section form label input:-webkit-autofill {
  box-shadow: inset 0 0 0 100px white;
  -webkit-text-fill-color: #474747;
}
.login-section form button {
  display: block;
  float: left;
  width: 100%;
  margin: 16px 0 0;
  height: 56px;
  text-transform: uppercase;
  transition: 400ms background, 400ms border;
  color: white;
  background: #019afe;
  border: 1px solid #017bcb;
  font: 18px "Roboto", "Arial", sans-serif;
  cursor: pointer;
}
.login-section form button:hover {
  background: #017bcb;
  border-color: #015c98;
}
.login-section form button:disabled {
  background: #182029;
  border-color: #11161d;
  color: #2f3b4a;
  pointer-events: none;
}

.medium-image-browse {
  float: left;
  width: 100%;
}
.medium-image-browse > ul {
  float: left;
  width: 100%;
}

.medium-image-item {
  float: left;
  width: 100%;
  padding: 100% 0 0;
  position: relative;
}
.medium-image-item figure {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #f3f3f5;
  background: no-repeat 50% 50%/cover;
  transition: 300ms border-color;
}
.medium-image-item figure:not(.active):hover {
  border-color: #d7d7de;
}
.medium-image-item figure.active {
  border-color: #019afe;
  cursor: default;
}
.medium-image-item .medium-image-actions {
  position: absolute;
  bottom: 12px;
  right: 8px;
  font-size: 0;
}
.medium-image-item .medium-image-actions icon {
  margin: 0 4px;
}

.live-casino-builder {
  float: left;
  width: 100%;
  height: calc(100vh - 16px - 50px);
  position: relative;
}
.live-casino-builder > .action-toolbar-row {
  position: absolute;
  top: 21px;
  right: 8px;
  z-index: 30;
}
.live-casino-builder .states-of-builder {
  float: left;
  width: 100%;
  display: table;
  table-layout: fixed;
  text-align: center;
}
.live-casino-builder .states-of-builder > li {
  display: table-cell;
  vertical-align: top;
  position: relative;
}
.live-casino-builder .states-of-builder > li > i {
  display: inline-block;
  vertical-align: top;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background: #fafbfb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font: 24px/58px FontAwesome;
  transition: 200ms color, 200ms background;
}
.live-casino-builder .states-of-builder > li > i.active {
  background: #019afe;
  color: white;
}
.live-casino-builder .states-of-builder > li:before, .live-casino-builder .states-of-builder > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 1px;
  background: #E4E8E8;
  width: calc(50% - 30px);
}
.live-casino-builder .states-of-builder > li:before {
  left: 0;
}
.live-casino-builder .states-of-builder > li:after {
  right: 0;
}
.live-casino-builder .states-of-builder > li:first-child:before, .live-casino-builder .states-of-builder > li:last-child:after {
  content: none;
}
.live-casino-builder > .bc-dropdown-container {
  position: relative;
}
.live-casino-builder > .bc-dropdown-container > div {
  background: #fafbfb;
}
.live-casino-builder > .bc-dropdown-container:nth-last-child(2):before, .live-casino-builder > .bc-dropdown-container:nth-last-child(2):after {
  content: "";
  display: block;
  width: 1px;
  background: #E4E8E8;
  height: calc(100% - 50px);
  position: absolute;
  bottom: 8px;
}
.live-casino-builder > .bc-dropdown-container:nth-last-child(2):before {
  left: 100%;
}
.live-casino-builder > .bc-dropdown-container:nth-last-child(2):after {
  right: 100%;
}
.live-casino-builder .bc-dropdown-container-body-scroll {
  float: left;
  width: 100%;
  height: calc(100vh - 208px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
  border: solid white;
  border-width: 8px 0;
}
.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.live-casino-builder .bc-dropdown-container-body-scroll1 {
  float: left;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #d0dce6;
  scrollbar-track-color: #f5f7fa;
}
.live-casino-builder .bc-dropdown-container-body-scroll1::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.live-casino-builder .bc-dropdown-container-body-scroll1::-webkit-scrollbar-thumb {
  background: #d0dce6;
  border-radius: 20px;
  border: solid white;
  border-width: 8px 0;
}
.live-casino-builder .bc-dropdown-container-body-scroll1::-webkit-scrollbar-thumb:hover {
  background: #bfd0dd;
}
.live-casino-builder .bc-dropdown-container-body-scroll1::-webkit-scrollbar-track {
  background: #f5f7fa;
}
.live-casino-builder .bc-dropdown-container-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

.lcb-media-change-container {
  float: left;
  width: 100%;
  background: white;
  margin: 8px 0 0;
  border: 1px solid #e4e8e8;
  padding: 14px 0;
}
.lcb-media-change-container > ul {
  float: left;
  width: 100%;
  display: table;
}
.lcb-media-change-container > ul > li {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
}
.lcb-media-change-container > ul > li.name-cell {
  height: 38px;
  width: 60%;
}
.lcb-media-change-container > ul > li.name-cell p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font: 14px/38px "Roboto", "Arial", sans-serif;
  color: #999;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lcb-media-change-container > ul > li.image-preview-cell {
  border: 1px solid #e4e6e6;
  border-width: 0 1px;
  max-width: 191px;
  width: 39%;
  text-align: center;
}
.lcb-media-change-container > ul > li.actions-cell {
  width: 1%;
  padding: 0 8px;
}
.lcb-media-change-container > ul > li icon {
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
}
.lcb-media-change-container > ul > li icon.plus:before, .lcb-media-change-container > ul > li icon.plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #018be5;
  left: 50%;
  top: 50%;
  pointer-events: none;
}
.lcb-media-change-container > ul > li icon.plus:before {
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
}
.lcb-media-change-container > ul > li icon.plus:after {
  height: 16px;
  width: 2px;
  margin: -8px 0 0 -1px;
}

table > tbody > tr > td > icon.addIcon.plus:before,
table > tbody > tr > td > icon.addIcon.plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #018be5;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

table > tbody > tr > td > icon.addIcon.plus:before {
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
}
table > tbody > tr > td > icon.addIcon.plus:after {
  height: 12px;
  width: 2px;
  margin: -6px 0 0 -1px;
}


.badge {
  position: absolute;
  top: 0;
  left: 2px;
  height: 13px;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 9px;
  line-height: 13px;
}
.badge-new {
  color: #bb2a85;
  background: rgba(187, 42, 133, 0.06);
}
.badge-promo {
  color: #822691;
  background: rgba(187, 42, 133, 0.06);
}
.badge-jackpot {
  color: #009bb2;
  background: rgba(0, 155, 178, 0.06);
}
.badge-top {
  color: #46904a;
  background: rgba(70, 144, 74, 0.06);
}
.badge-exclusive {
  color: #019afe;
  background: rgba(1, 154, 254, 0.06);
}
.badge-hot {
  color: #c00014;
  background: rgba(1, 154, 254, 0.06);
}
.badge-Not {
  color: #bb2a85;
  background: rgba(187, 42, 133, 0.06);
}
.badge-tournament {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.06);
}

.category-label:before {
  content: "\e920";
  font-family: icomoon;
}

.games-grid-options {
  float: left;
  width: 100%;
}
.games-grid-options > p {
  float: left;
  width: 100%;
  color: #474747;
  font: 14px "Roboto", "Arial", sans-serif;
  margin: 0 0 16px;
}
.games-grid-options > input-holder {
  width: auto;
}
.games-grid-options > input-holder > input {
  width: auto;
}

.range-wrapper {
  margin: 26px 0 0;
  float: left;
  width: 100%;
}
.range-wrapper > ul {
  float: left;
  width: 100%;
  display: table;
}
.range-wrapper > ul > li {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  height: 38px;
  font: 700 14px "Roboto", "Arial", sans-serif;
}
.range-wrapper > ul > li:not(:nth-child(2)) {
  width: 1%;
}
.range-wrapper > ul > li:first-child {
  padding: 0 16px 0 0;
}
.range-wrapper > ul > li:last-child {
  padding: 0 0 0 16px;
}

.range-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.range-box input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  opacity: 0;
  width: 110%;
  margin-left: -5%;
  z-index: 10;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.range-box input:focus {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
.range-box .range-trigger {
  float: left;
  width: 100%;
  margin: 17px 0;
  background: #E6E6E6;
  height: 4px;
  pointer-events: none;
  border-radius: 10px;
}
.range-box .range-trigger .range-small {
  float: left;
  width: 100%;
  background: #019afe;
  height: 4px;
  position: relative;
  border-radius: 10px;
}
.range-box .range-trigger .range-small .renge-small-box {
  width: 38px;
  height: 38px;
  position: absolute;
  top: -17px;
  right: -19px;
}
.range-box .range-trigger .range-small .renge-small-box:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(1, 154, 254, 0.37);
  border: 1px solid #019afe;
  border-radius: 100%;
  transition: 450ms transform;
  transform: scale(0);
}
.range-box .range-trigger .range-small .renge-small-box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border-radius: 100%;
  height: 14px;
  width: 14px;
  background: #019afe;
  margin: -7px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.range-box:hover .range-trigger .range-small .renge-small-box:before, .range-box input:active ~ .range-trigger .range-small .renge-small-box:before {
  transform: scale(1);
}
.range-box:hover .range-trigger .grid-preview, .range-box input:active ~ .range-trigger .grid-preview {
  opacity: 1;
}

.grid-preview {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border: 2px solid #019afe;
  background: white;
  white-space: nowrap;
  font: 0/0 "Roboto", "Arial", sans-serif;
  transition: 200ms opacity linear 200ms;
  opacity: 0;
  margin: 0 0 16px;
}
.grid-preview i {
  display: inline-block;
  width: 34px;
  height: 30px;
  box-sizing: content-box;
}
.grid-preview i + i {
  border-left: 1px dashed #000;
}

.icons-as-radio {
  float: left;
  width: 100%;
  text-align: center;
}
.icons-as-radio icon {
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
  margin: 0;
}
.icons-as-radio p {
  float: left;
  width: 100%;
  font: 14px/34px "Roboto", "Arial", sans-serif;
}

.px-suffix-input > p {
  width: 100%;
}
.px-suffix-input input-holder {
  width: auto;
}
.px-suffix-input input-holder:after {
  content: "(px)";
  display: block;
  position: absolute;
  right: 14px;
  font: 11px/36px "Roboto", "Arial", sans-serif;
  color: #999;
  pointer-events: none;
}
.px-suffix-input input-holder input {
  width: auto;
  padding-right: 32px;
}
.px-suffix-input input-holder.error:after {
  display: none;
}

input-holder[ng-switch-when=colorInput] small, input-holder.color-input-holder small {
  display: block;
  height: 16px;
  width: 16px;
  border: 1px solid #E4E6E6;
  position: absolute;
  left: 12px;
  top: 9px;
  z-index: 10;
}
input-holder[ng-switch-when=colorInput] input, input-holder.color-input-holder input {
  padding-left: 40px;
}

.background-size-container {
  min-height: 444px;
}
.background-size-container .col-12:not(:last-child) {
  margin: 0 0 9px;
}

.icon-preview-small {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  background: no-repeat 50% 50%/cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  margin: -12px 0;
  position: relative;
}
.icon-preview-small:before {
  content: "\f002";
  display: block;
  font: 18px/20px FontAwesome;
  width: 20px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}
.disabled-opacity,
.disabled-result {
  opacity: 0.45;
  pointer-events: none;
}

.opacity {
  opacity: 0.45;
}

.css-editor {
  float: left;
  width: 100%;
  height: calc(100vh - 248px);
}
.css-editor .CodeMirror {
  height: 100%;
  border: 1px solid #f3f3f5;
}
.css-editor .CodeMirror-gutters {
  border-color: #f3f3f5;
  background: #f3f3f5;
}
.css-editor .CodeMirror-linenumber {
  font-size: 11px;
  padding: 0;
}

.background-wrapper {
  padding: 0;
}

.backgrounds-layout {
  float: left;
  width: 100%;
}
.backgrounds-layout > ul {
  float: left;
  width: 100%;
  display: flex;
}
.backgrounds-layout > ul > li:first-child {
  flex: 0;
  background: #ffffff;
  padding: 24px 0 0 24px;
  box-shadow: inset 3px 3px 10px 0 rgba(119, 119, 119, 0.1);
}
.backgrounds-layout > ul > li:last-child {
  flex: auto;
  min-height: calc(100vh - 209px);
}

.horiz-tabs-wrapper {
  float: left;
  width: 100%;
  position: relative;
  white-space: nowrap;
  margin: 0 0 16px;
}
.horiz-tabs-wrapper p {
  float: left;
  width: 100%;
  padding: 0 56px 0 16px;
  font: 14px/52px "Roboto", "Arial", sans-serif;
  position: relative;
  z-index: 10;
  float: left;
  border-radius: 3px;
  height: 52px;
  transition: color 300ms;
}
.horiz-tabs-wrapper p.active {
  color: #1b9cfb;
}
.horiz-tabs-wrapper p icon {
  position: absolute;
  right: 16px;
  top: 50%;
  margin: -12px 0 0;
  transition: 300ms background, 300ms color;
}
.horiz-tabs-wrapper p.active:nth-child(1) ~ i, .horiz-tabs-wrapper p:nth-child(1):hover ~ b {
  top: 0px;
}
.horiz-tabs-wrapper p.active:nth-child(2) ~ i, .horiz-tabs-wrapper p:nth-child(2):hover ~ b {
  top: 52px;
}
.horiz-tabs-wrapper p.active:nth-child(3) ~ i, .horiz-tabs-wrapper p:nth-child(3):hover ~ b {
  top: 104px;
}
.horiz-tabs-wrapper p.active:nth-child(4) ~ i, .horiz-tabs-wrapper p:nth-child(4):hover ~ b {
  top: 156px;
}
.horiz-tabs-wrapper p.active:nth-child(5) ~ i, .horiz-tabs-wrapper p:nth-child(5):hover ~ b {
  top: 208px;
}
.horiz-tabs-wrapper p.active:nth-child(6) ~ i, .horiz-tabs-wrapper p:nth-child(6):hover ~ b {
  top: 260px;
}
.horiz-tabs-wrapper p.active:nth-child(7) ~ i, .horiz-tabs-wrapper p:nth-child(7):hover ~ b {
  top: 312px;
}
.horiz-tabs-wrapper p.active:nth-child(8) ~ i, .horiz-tabs-wrapper p:nth-child(8):hover ~ b {
  top: 364px;
}
.horiz-tabs-wrapper p.active:nth-child(9) ~ i, .horiz-tabs-wrapper p:nth-child(9):hover ~ b {
  top: 416px;
}
.horiz-tabs-wrapper p.active:nth-child(10) ~ i, .horiz-tabs-wrapper p:nth-child(10):hover ~ b {
  top: 468px;
}
.horiz-tabs-wrapper p.active:nth-child(11) ~ i, .horiz-tabs-wrapper p:nth-child(11):hover ~ b {
  top: 520px;
}
.horiz-tabs-wrapper p.active:nth-child(12) ~ i, .horiz-tabs-wrapper p:nth-child(12):hover ~ b {
  top: 572px;
}
.horiz-tabs-wrapper p.active:nth-child(13) ~ i, .horiz-tabs-wrapper p:nth-child(13):hover ~ b {
  top: 624px;
}
.horiz-tabs-wrapper p.active:nth-child(14) ~ i, .horiz-tabs-wrapper p:nth-child(14):hover ~ b {
  top: 676px;
}
.horiz-tabs-wrapper p.active:nth-child(15) ~ i, .horiz-tabs-wrapper p:nth-child(15):hover ~ b {
  top: 728px;
}
.horiz-tabs-wrapper p.active:nth-child(16) ~ i, .horiz-tabs-wrapper p:nth-child(16):hover ~ b {
  top: 780px;
}
.horiz-tabs-wrapper p.active:nth-child(17) ~ i, .horiz-tabs-wrapper p:nth-child(17):hover ~ b {
  top: 832px;
}
.horiz-tabs-wrapper p.active:nth-child(18) ~ i, .horiz-tabs-wrapper p:nth-child(18):hover ~ b {
  top: 884px;
}
.horiz-tabs-wrapper p.active:nth-child(19) ~ i, .horiz-tabs-wrapper p:nth-child(19):hover ~ b {
  top: 936px;
}
.horiz-tabs-wrapper p.active:nth-child(20) ~ i, .horiz-tabs-wrapper p:nth-child(20):hover ~ b {
  top: 988px;
}
.horiz-tabs-wrapper p.active:nth-child(21) ~ i, .horiz-tabs-wrapper p:nth-child(21):hover ~ b {
  top: 1040px;
}
.horiz-tabs-wrapper p.active:nth-child(22) ~ i, .horiz-tabs-wrapper p:nth-child(22):hover ~ b {
  top: 1092px;
}
.horiz-tabs-wrapper p.active:nth-child(23) ~ i, .horiz-tabs-wrapper p:nth-child(23):hover ~ b {
  top: 1144px;
}
.horiz-tabs-wrapper p.active:nth-child(24) ~ i, .horiz-tabs-wrapper p:nth-child(24):hover ~ b {
  top: 1196px;
}
.horiz-tabs-wrapper p.active:nth-child(25) ~ i, .horiz-tabs-wrapper p:nth-child(25):hover ~ b {
  top: 1248px;
}
.horiz-tabs-wrapper p.active:nth-child(26) ~ i, .horiz-tabs-wrapper p:nth-child(26):hover ~ b {
  top: 1300px;
}
.horiz-tabs-wrapper p.active:nth-child(27) ~ i, .horiz-tabs-wrapper p:nth-child(27):hover ~ b {
  top: 1352px;
}
.horiz-tabs-wrapper p.active:nth-child(28) ~ i, .horiz-tabs-wrapper p:nth-child(28):hover ~ b {
  top: 1404px;
}
.horiz-tabs-wrapper p.active:nth-child(29) ~ i, .horiz-tabs-wrapper p:nth-child(29):hover ~ b {
  top: 1456px;
}
.horiz-tabs-wrapper p.active:nth-child(30) ~ i, .horiz-tabs-wrapper p:nth-child(30):hover ~ b {
  top: 1508px;
}
.horiz-tabs-wrapper p.active:nth-child(31) ~ i, .horiz-tabs-wrapper p:nth-child(31):hover ~ b {
  top: 1560px;
}
.horiz-tabs-wrapper i {
  display: block;
  width: calc(100% + 10px);
  height: 52px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f6fa;
  pointer-events: none;
  border-radius: 3px;
  box-shadow: inset 0 1px 10px rgba(119, 119, 119, 0.1);
  transition: 0.3s top;
}
.horiz-tabs-wrapper i:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #f5f6fa;
}

.backgrounds-aside {
  float: left;
  width: 100%;
  min-width: 220px;
}

.backgrounds-left-cont button {
  display: block;
  float: left;
  height: 34px;
  min-width: 130px;
  border: 1px solid #00ca6d;
  background: #00ca6d;
  color: #ffffff;
  font: 700 14px "Roboto", "Arial", sans-serif;
  padding: 0 16px;
  transition: 300ms background;
  margin: 0 8px;
  text-transform: capitalize;
  border-radius: 4px;
  width: 100%;
  margin: 28px 0 0;
  padding: 0 22px;
  border: none;
}
.backgrounds-left-cont button:not(:disabled):hover {
  background: #00b15f;
  border-color: #00b15f;
}
.backgrounds-left-cont button:not(:disabled).hero {
  background: #019afe;
}
.backgrounds-left-cont button:not(:disabled).hero:hover {
  background: #018be5;
}
.backgrounds-left-cont button:not(:disabled).brand-color {
  background: #00ca6d;
}
.backgrounds-left-cont button:not(:disabled).brand-color:hover {
  background: #00b15f;
}
.backgrounds-left-cont button:disabled {
  pointer-events: none;
  color: #999999;
  background: #f1f2f2;
}

.flex-eq-height {
  display: flex;
}
.flex-eq-height > div {
  height: 100%;
}
.flex-eq-height > div .drag-drop-wrapper {
  height: 344px;
}
.flex-eq-height > div .drag-drop-wrapper.jackpot-drag-drop {
  height: 447px;
}

.jackpot-drag-drop {
  height: 560px;
}

.cropbox-plugin img {
  max-width: 100%;
  background: #989FA7;
}

.input-grid-with-border {
  float: left;
  width: 100%;
}
.input-grid-with-border > ul {
  float: left;
  width: calc(100% + 16px);
  margin: 0 0 0 -8px;
  display: flex;
}
.input-grid-with-border > ul > li {
  position: relative;
}
.input-grid-with-border > ul > li:not(:only-child):not(:last-child):before {
  content: "";
  display: block;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  position: absolute;
  background: #e4e6e6;
}

hr {
  float: left;
  width: 100%;
  display: block;
  height: 1px;
  background: #e4e6e6;
}

.user-name-box span {
  font-size: 12px;
  display: inline-block;
}

.move-right {
  float: right;
}

/*# sourceMappingURL=cms.css.map */


.info-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-box {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  top: -35px;
  left: 0;
  z-index: 1000;
  display: none;
}

.info-box > .info-icon:hover ~ .tooltip-box {
  display: block;
}

.d-flex {
  display: flex !important;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-end {
  align-items: end;
}

.casino-settings-container .setting {
  border: 1px solid #e5e6e6;
  padding: 13px;
  margin-bottom: 20px
}

.casino-settings-container .setting h4 {
  margin-bottom: 3px
}

.casino-settings-container .setting .label-holder, .casino-settings-container .setting input-holder {
  float: none;
}

tr.ai-ordered-row {

}
tr.ai-ordered-row > td:not(.tools-cell) {
  opacity: 0.7;
}

tr.ai-ordered-row .cell-ai {
  color: #00a8bb;
  font-weight: 700;
}

.text-error {
  color: #E25E58;
  margin-top: 3px;
  display: inline-block;
}

.selectedIconModalContent {
  display: flex;
  flex-direction: column;
}

.selectedIconModalContent .at-pagination-holder > ul {
  border-top: none;
}

.searchIconInput {
  max-width: 200px;
  margin-bottom: 16px;
}

.selectedIconContainer {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.selectedIconLabel {
  font-size: 13px;
  font-weight: 400;
  color: #86ACC4;
}

.selectedIcon {
  width: 16px;
  height: 16px;
  margin-inline-start: 8px;
}

.selectedIconName {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-inline-start: 4px;
}

.gallery-layout figure.singleIconFigure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.singleIconContainer {
  width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.8);
}

.singleIconName {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 20px;
}