@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, .loader-drop, .ui-draggable-dragging, .modal-backdrop, .modal .modal-dialog .modal-content modal, .tooltip, .icon-preview-small:before {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite, .infinite.loader-drop, .infinite.ui-draggable-dragging, .infinite.modal-backdrop, .modal .modal-dialog .modal-content modal.infinite, .infinite.tooltip, .infinite.icon-preview-small:before {
  animation-iteration-count: infinite;
}

.animated.hinge, .hinge.loader-drop, .hinge.ui-draggable-dragging, .hinge.modal-backdrop, .modal .modal-dialog .modal-content modal.hinge, .hinge.tooltip, .hinge.icon-preview-small:before {
  animation-duration: 2s;
}

.animated.flipOutX, .flipOutX.loader-drop, .flipOutX.ui-draggable-dragging, .flipOutX.modal-backdrop, .modal .modal-dialog .modal-content modal.flipOutX, .flipOutX.tooltip, .flipOutX.icon-preview-small:before,
.animated.flipOutY,
.flipOutY.loader-drop,
.flipOutY.ui-draggable-dragging,
.flipOutY.modal-backdrop,
.modal .modal-dialog .modal-content modal.flipOutY,
.flipOutY.tooltip,
.flipOutY.icon-preview-small:before,
.animated.bounceIn,
.bounceIn.loader-drop,
.bounceIn.ui-draggable-dragging,
.bounceIn.modal-backdrop,
.modal .modal-dialog .modal-content modal.bounceIn,
.modal .modal-dialog .modal-content modal.icon-preview-small:hover:before,
.bounceIn.tooltip,
.bounceIn.icon-preview-small:before,
.icon-preview-small:hover:before,
.animated.bounceOut,
.bounceOut.loader-drop,
.bounceOut.ui-draggable-dragging,
.bounceOut.modal-backdrop,
.modal .modal-dialog .modal-content modal.bounceOut,
.modal .modal-dialog .modal-content modal.icon-preview-small:before,
.bounceOut.tooltip,
.icon-preview-small:before {
  animation-duration: .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.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.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, .loader-drop, .modal-backdrop, .tooltip {
  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.loader-drop, .flip.ui-draggable-dragging, .flip.modal-backdrop, .modal .modal-dialog .modal-content modal.flip, .flip.tooltip, .flip.icon-preview-small:before {
  -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, .ui-draggable-dragging, .modal .modal-dialog .modal-content modal {
  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;
}

li {
  display: block;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.text-el, nav > ul > li > a > span, nav > ul > li > 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.33333em;
  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.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .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: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.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=364");
  src: url("../fonts/icomoon/fonts/icomoon.eot?v=364#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?v=364") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?v=364") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?v=364#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: 50px;
  float: right;
  height: 100%;
  transition: 250ms width;
  position: relative;
  z-index: 500;
}

main section {
  width: calc(100% - 50px);
  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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

main article::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

main article::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 20px;
  border: 3px solid #f9f9f9;
}

main article::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

main article::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.menu-opened main aside {
  width: 240px;
}

.menu-opened main section {
  width: calc(100% - 240px);
}

.content-holder {
  float: left;
  width: 100%;
  padding: 8px;
}

.row {
  float: left;
  width: 100%;
}

.bread-crumbs {
  float: left;
  width: 100%;
}

.bread-crumbs > ul {
  float: left;
  width: 100%;
  background: #fafbfb;
  box-shadow: inset 0 -1px 0 #e9ebeb;
  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 {
  color: #333;
  pointer-events: none;
}

.bc-dropdown-container {
  padding: 8px;
  float: left;
  width: 100%;
}

.bc-dropdown-container-header {
  float: left;
  width: 100%;
  padding: 0 0 0 16px;
  background: #fff;
  border: 1px solid #e4e6e6;
  color: #474747;
}

.bc-dropdown-container-header h3 {
  float: left;
  padding: 0 16px 0 0;
  font: 500 14px/32px "Roboto", "Arial", sans-serif;
  text-transform: capitalize;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.bc-dropdown-container-body {
  float: left;
  width: 100%;
  background: white;
  position: relative;
  padding: 8px;
  border: 1px solid #e4e6e6;
  border-top: 0;
}

.bc-dropdown-container-body[ng-click] {
  cursor: default;
}

[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 #5ebdec !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.54167%/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: #303f4E;
  color: #8298af;
  font: 14px/50px "Roboto", "Arial", sans-serif;
  position: relative;
  z-index: 500;
}

header > ul {
  float: right;
}

header > ul > li {
  float: left;
  padding: 0 16px;
  position: relative;
  transition: 300ms background;
}

header > ul > li + li {
  border-left: 1px solid #32445b;
}

header > ul > li:hover {
  background: #354758;
}

.header-dropdown-wrapper {
  float: left;
}

.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: #5ebdec;
  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 {
  margin: 17px 0;
  float: left;
}

.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;
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms, overflow 200ms ease-in-out 1s;
  display: none;
  transform: translate3d(0, 0, 0);
  background: #303f4E;
}

.header-dropdown-wrapper .dropdown-body > ul {
  float: left;
  width: 100%;
  max-height: calc(100vh - 64px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #5e6e7e;
  scrollbar-track-color: #344757;
}

.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-thumb {
  background: #5e6e7e;
  border-radius: 10px;
}

.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-thumb:hover {
  background: #53626f;
}

.header-dropdown-wrapper .dropdown-body > ul::-webkit-scrollbar-track {
  background: #344757;
}

.header-dropdown-wrapper .dropdown-body > ul > li {
  float: left;
  width: 100%;
  padding: 10px 16px;
  background: #303f4E;
  font: 13px/20px "Roboto", "Arial", sans-serif;
  border-top: 1px solid #32445b;
  position: relative;
  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: 24px;
}

.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: #a1b2c3;
  background: #354758;
}

.header-dropdown-wrapper:hover .dropdown-head {
  color: #a1b2c3;
}

.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;
}

.toggle-menu {
  float: left;
  display: block;
  width: 50px;
  height: 50px;
  border-left: 1px solid #32445b;
  border-right: 1px solid #32445b;
  font: 8px icomoon;
  color: #768899;
  transition: 300ms color, 300ms background;
}

.toggle-menu:hover {
  color: #93a1af;
  background: #354758;
}

.toggle-menu:before {
  content: "\e907";
}

.menu-opened .toggle-menu:before {
  content: "\e908";
}

.logo-wrapper {
  float: left;
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: #303f4E;
  position: relative;
  font: 32px/50px icomoon;
  color: white;
  text-align: center;
}

.logo-wrapper:before, .logo-wrapper:after {
  display: block;
  position: absolute;
  top: 0;
  transition: 600ms transform;
}

.logo-wrapper:before {
  content: "\e90a";
  left: 0;
  width: 240px;
  transform: translateX(-200%);
}

.logo-wrapper:after {
  content: "\e909";
  right: 0;
  width: 50px;
  font-size: 26px;
}

.menu-opened .logo-wrapper:before {
  transform: translateX(0);
}

.menu-opened .logo-wrapper:after {
  transform: translateX(100%);
}

nav {
  float: left;
  width: 100%;
  height: calc(100% - 50px);
  background: #344757;
  color: #768899;
  white-space: nowrap;
}

nav > ul {
  float: left;
  width: 100%;
}

nav > ul > li {
  float: left;
  width: 100%;
  position: relative;
}

nav > ul > li > a {
  float: left;
  width: 290px;
  display: block;
  font: 0/0 "Roboto", "Arial", sans-serif;
  border-bottom: 1px solid #3d4f61;
  background: #344757;
  overflow: hidden;
  max-width: 50px;
  height: 41px;
  transition: 300ms max-width, 300ms color, 300ms background, 300ms width;
}

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: 50px;
}

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.skinPayments:before, nav > ul > li > a > .fa.payments:before {
  content: "\f283";
  font-size: 14px;
}

nav > ul > li > a > .fa:last-child {
  display: none;
  width: 36px;
}

nav > ul > li > a > span {
  width: 240px;
  display: inline-block;
  vertical-align: top;
  color: #aeb9c4;
  padding: 0 16px;
  font: 16px/40px "Roboto", "Arial", sans-serif;
  border-left: 1px solid #3d4f61;
  transition: 300ms color, 300ms width, 300ms padding, 300ms background;
  text-transform: capitalize;
}

nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 100%;
  background: #354758;
  width: 240px;
}

nav > ul > li > ul > li {
  float: left;
  width: 100%;
  max-height: 0;
  overflow: hidden;
}

nav > ul > li > ul > li:last-child > a {
  margin: 0 0 8px;
}

nav > ul > li > ul > li > a {
  float: left;
  width: 100%;
  display: block;
  padding: 0 16px;
  font: 14px/30px "Roboto", "Arial", sans-serif;
  transition: 300ms color, 300ms background;
}

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:hover > a, nav > ul > li > ul > li.active > a {
  background: #3d4f61;
  color: #b3bfd1;
}

nav > ul > li:hover > a {
  max-width: 290px;
}

nav > ul > li:hover > ul > li {
  transition: 250ms max-height, 300ms border;
  transition-delay: 300ms;
  max-height: 40px;
}

nav > ul > li:hover > a {
  background: #324353;
  color: #b6c0c9;
}

nav > ul > li:hover > a > span {
  color: #C6CED5;
}

nav > ul > li.section-active > a > .fa:first-child {
  background: #4eb9ce;
  color: white;
}

.menu-opened nav {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: #5e6e7e;
  scrollbar-track-color: #344757;
}

.menu-opened nav::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.menu-opened nav::-webkit-scrollbar-thumb {
  background: #5e6e7e;
  border-radius: 10px;
}

.menu-opened nav::-webkit-scrollbar-thumb:hover {
  background: #53626f;
}

.menu-opened nav::-webkit-scrollbar-track {
  background: #344757;
}

.menu-opened nav > ul > li > a {
  width: 100%;
  max-width: 100%;
}

.menu-opened nav > ul > li > a > span {
  width: 154px;
  padding: 0;
  border: 0;
}

.menu-opened nav > ul > li > a > .fa {
  display: inline-block;
}

.menu-opened nav > ul > li > ul {
  width: 100%;
  position: static;
}

.menu-opened nav > ul > li > ul > li {
  max-height: 0;
}

.menu-opened nav > ul > li > ul > li > a {
  padding: 0 16px 0 50px;
}

.menu-opened nav > ul > li > ul > li:last-child > a {
  margin: 0;
}

.menu-opened nav > ul > li.active > a > .fa:last-child {
  transform: rotate(90deg);
}

.menu-opened nav > ul > li.active:not(.section-active) > a:not(:only-child) {
  background: #324353;
  color: #b6c0c9;
}

.menu-opened nav > ul > li.active:not(.section-active) > a:not(:only-child) > span {
  color: #C6CED5;
}

.menu-opened nav > ul > li.active > ul > li {
  max-height: 30px;
  transition-delay: 0ms;
}

.menu-opened nav > ul > li.active > ul > li:last-child {
  border-bottom: 1px solid #3d4f61;
}

.menu-opened nav > ul > li.section-active > a {
  background: #4eb9ce;
  color: white;
}

.menu-opened nav > ul > li.section-active > a > span {
  color: white;
}

.menu-opened nav > ul > li.section-active > a > .fa {
  background: none;
}

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;
}

advanced-table .at-translate:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #E4E8E8;
  z-index: 500;
  pointer-events: none;
}

advanced-table .at-translate .at-scroll {
  float: left;
  width: 100%;
  overflow: auto;
  scrollbar-track-color: #F9F9F9;
  scrollbar-shadow-color: #F9F9F9;
  scrollbar-base-color: #C1C1C1;
  scrollbar-arrow-color: #C1C1C1;
}

advanced-table .at-translate .at-scroll::-webkit-scrollbar {
  width: 14px;
  height: 15px;
}

advanced-table .at-translate .at-scroll::-webkit-scrollbar-track {
  background: #F9F9F9;
}

advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border: 3px solid #f9f9f9;
  border-bottom-width: 4px;
  border-radius: 20px;
}

advanced-table .at-translate .at-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

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 {
  box-shadow: inset 0 -1px 0 #E4E8E8;
  background: white;
  height: 39px;
  vertical-align: middle;
  position: relative;
  word-wrap: break-word;
  text-align: left;
  border-left: 1px solid #E4E8E8;
}

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.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;
}

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: 1px solid #E4E8E8;
  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;
}

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;
  box-shadow: inset 0 -1px 0 #bce8f1, 1px 0 0 #d9edf7, -1px 0 0 #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.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: #ECEDED;
  transition: 300ms background;
}

advanced-table .at-translate .at-scroll .at-scroll-width table .tooltip .tooltip-inner {
  max-width: 280px;
}

.at-pagination-holder {
  margin: 8px 0 0;
  font: 14px/32px "Roboto", "Arial", sans-serif;
  color: #474747;
  position: relative;
  float: left;
  width: 100%;
}

.at-pagination-holder.imported {
  margin: 0;
}

.at-pagination-holder > ul {
  float: left;
  width: 100%;
}

.at-pagination-holder > ul > li {
  margin: 8px 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;
}

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 #EAEBEB;
  background: #F1F2F2;
  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 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: #47B4E9;
  background: white;
}

pagination > ul > li.disabled {
  pointer-events: none;
}

pagination > ul > li.disabled > span {
  color: #999999;
}

.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: 14px;
}

.action-toolbar-row button {
  display: block;
  float: left;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #4ec27f;
  color: white;
  font: 700 14px "Roboto", "Arial", sans-serif;
  padding: 0 28px;
  transition: 300ms background;
  margin: 0 8px;
  text-transform: capitalize;
}

.action-toolbar-row button:not(:disabled):hover {
  background: #39a466;
}

.action-toolbar-row button:not(:disabled).hero {
  background: #5ebdec;
}

.action-toolbar-row button:not(:disabled).hero:hover {
  background: #30aae7;
}

.action-toolbar-row button:not(:disabled).brand-color {
  background: #4eb9ce;
}

.action-toolbar-row button:not(:disabled).brand-color:hover {
  background: #32a1b7;
}

.action-toolbar-row button:disabled {
  pointer-events: none;
  color: #999999;
  background: #f1f2f2;
}

.top-action-grid {
  float: left;
  margin: 0 0 0 -8px;
}

.top-action-grid > li {
  margin: 0 8px;
  width: 200px;
  float: left;
}

.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 .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 #5ebdec;
  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: #5ebdec;
  color: white;
  padding: 0 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 300ms background;
  cursor: pointer;
}

.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: #5ebdec;
}

.drag-drop-wrapper:hover button, .drag-drop-wrapper.dragover button {
  background: #30aae7;
}

.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: #5ebdec;
  pointer-events: none;
}

.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: #f1f2f2;
  color: #474747;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font: 12px/22px FontAwesome;
  transition: 300ms background, 300ms color;
  margin: 0 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

icon:hover {
  background: #E7E8E8;
}

icon.disabled {
  pointer-events: none;
  color: #999999;
}

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 {
  background: #5ebdec;
  color: white;
}

icon.fa-save:not(.disabled), icon.addChild:not(.disabled) {
  background: #4ec27f;
  color: white;
}

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;
}

round-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  color: #55C2CE;
  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: #30aae7;
}

.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;
}

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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  min-height: 34px;
}

input-holder input:not([type='checkbox']):focus, input-holder input:not([type='checkbox']).focused, input-holder textarea:focus, input-holder textarea.focused {
  border-color: #a2a8a8;
  color: #474747;
}

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:focus, input-holder textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #474747;
}

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: #999;
  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: #999;
  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: #999;
  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: #999;
  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 input:not([type='checkbox']), input-holder.error textarea {
  border-color: #E25E58;
}

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;
  border-left: 0;
}

input-holder icon ~ input:not([type='checkbox']) {
  width: calc(100% - 34px);
}

.full-width-button {
  display: block;
  float: left;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #4ec27f;
  color: white;
  font: 700 14px "Roboto", "Arial", sans-serif;
  padding: 0 28px;
  transition: 300ms background;
  margin: 0 8px;
  text-transform: capitalize;
  width: 100%;
  margin: 0;
}

.full-width-button:not(:disabled):hover {
  background: #39a466;
}

.full-width-button:not(:disabled).hero {
  background: #5ebdec;
}

.full-width-button:not(:disabled).hero:hover {
  background: #30aae7;
}

.full-width-button:not(:disabled).brand-color {
  background: #4eb9ce;
}

.full-width-button:not(:disabled).brand-color:hover {
  background: #32a1b7;
}

.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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  padding-right: 40px;
  line-height: 32px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chosen-container:not(.chosen-container-multi) > a:focus, .chosen-container:not(.chosen-container-multi) > a.focused {
  border-color: #a2a8a8;
  color: #474747;
}

.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:focus {
  -webkit-text-fill-color: #474747;
}

.chosen-container:not(.chosen-container-multi) > a::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container:not(.chosen-container-multi) > a:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container:not(.chosen-container-multi) > a::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container:not(.chosen-container-multi) > a:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  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;
}

.chosen-container:not(.chosen-container-multi) .chosen-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

.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: #C1C1C1;
  border-radius: 20px;
}

.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.chosen-container:not(.chosen-container-multi) .chosen-drop::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
}

.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input:focus, .chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input.focused {
  border-color: #a2a8a8;
  color: #474747;
}

.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:focus {
  -webkit-text-fill-color: #474747;
}

.chosen-container:not(.chosen-container-multi) .chosen-drop > .chosen-search input::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  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: #999;
  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: #999;
  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: #999;
  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).result-selected, .chosen-container:not(.chosen-container-multi) .chosen-drop > ul > li:not(.disabled-result).highlighted {
  background: #F5F5F5;
}

.chosen-container:not(.chosen-container-multi).chosen-container-active.chosen-with-drop > a {
  color: #474747;
  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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  height: 34px;
  counter-reset: selected;
  position: relative;
  padding: 0;
  pointer-events: none;
}

.chosen-container-multi:focus, .chosen-container-multi.focused {
  border-color: #a2a8a8;
  color: #474747;
}

.chosen-container-multi:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.chosen-container-multi:-webkit-autofill:focus {
  -webkit-text-fill-color: #474747;
}

.chosen-container-multi::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container-multi:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container-multi::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-container-multi:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  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;
}

.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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

.chosen-container-multi > div > div::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.chosen-container-multi > div > div::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 20px;
}

.chosen-container-multi > div > div::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.chosen-container-multi > div > div::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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: 200;
  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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

tags-input > .host > .tags:focus, tags-input > .host > .tags.focused {
  border-color: #a2a8a8;
  color: #474747;
}

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:focus {
  -webkit-text-fill-color: #474747;
}

tags-input > .host > .tags::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

tags-input > .host > .tags:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

tags-input > .host > .tags::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

tags-input > .host > .tags:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  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: #999999;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}

tags-input > .host > .tags > input:-moz-placeholder {
  color: #999999;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}

tags-input > .host > .tags > input::-moz-placeholder {
  color: #999999;
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  opacity: 1;
}

tags-input > .host > .tags > input:-ms-input-placeholder {
  color: #999999;
  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: #30aae7;
  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;
}

checkbox check {
  margin: 9px 0;
  display: block;
  float: left;
  background: #FFFFFF;
  border: 1px solid #e4e6e6;
  color: #474747;
  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 {
  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: #5ebdec;
}

.small-image-browse:not(.filled):hover:before, .small-image-browse:not(.filled):hover:after {
  background: #5ebdec;
}

.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: #5ebdec;
  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: #5ebdec;
  color: white;
}

.daterangepicker .calendar-table table td.in-range:not(.off):not(.end-date) {
  background: rgba(94, 189, 236, 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: #5ebdec;
  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: #5ebdec;
  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;
}

.chosen-html select {
  display: block;
  float: left;
  width: 100%;
  background: white;
  height: 100%;
  border: 1px solid #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  padding-right: 40px;
  height: 34px;
}

.chosen-html select:focus, .chosen-html select.focused {
  border-color: #a2a8a8;
  color: #474747;
}

.chosen-html select:-webkit-autofill {
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.chosen-html select:-webkit-autofill:focus {
  -webkit-text-fill-color: #474747;
}

.chosen-html select::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-html select:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-html select::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-html select:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

.chosen-html select:disabled {
  pointer-events: none;
  background: #F1F2F2;
  border-color: #EAEBEB;
  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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

.columns-settings-list-block::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.columns-settings-list-block::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 20px;
  border: 3px solid #f9f9f9;
}

.columns-settings-list-block::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.columns-settings-list-block::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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;
}

.cropbox-plugin {
  float: left;
  width: 100%;
  overflow: hidden;
}

.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: .5;
}

.cropbox-plugin .cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #5ebdec;
  overflow: hidden;
  width: 100%;
}

.cropbox-plugin .cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: .5;
  position: absolute;
}

.cropbox-plugin .cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropbox-plugin .cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropbox-plugin .cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: .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: .1;
  position: absolute;
  width: 100%;
}

.cropbox-plugin .cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropbox-plugin .cropper-line {
  background-color: #5ebdec;
}

.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: #5ebdec;
  height: 5px;
  opacity: .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: .75;
    width: 5px;
  }
}

.cropbox-plugin .cropper-point.point-se:before {
  background-color: #5ebdec;
  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: #5ebdec;
  color: white;
}

[id*="cke_editor"] .cke_top .cke_toolgroup a.cke_button_on:hover {
  background: #47b4e9;
}

[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__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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

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: #C1C1C1;
  border-radius: 20px;
}

body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_tpl_list::-webkit-scrollbar-track {
  background: #F9F9F9;
}

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: #5ebdec;
  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: #5ebdec;
  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: #30aae7;
}

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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  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"]):focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content input:not([type="checkbox"]):not([type="radio"]).focused, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select.focused {
  border-color: #a2a8a8;
  color: #474747;
}

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:focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_dialog_ui_labeled_content select:-webkit-autofill:focus {
  -webkit-text-fill-color: #474747;
}

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: #999;
  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: #999;
  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: #999;
  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: #999;
  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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  margin: 8px 0 0;
  padding: 12px;
}

body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe:focus, body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body iframe.focused {
  border-color: #a2a8a8;
  color: #474747;
}

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:focus {
  -webkit-text-fill-color: #474747;
}

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: #999;
  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: #999;
  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: #999;
  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: #999;
  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: #5ebdec;
  color: white;
}

body .cke_dialog_body > .cke_dialog_contents .cke_dialog_contents_body .cke_btn_locked:not(.cke_btn_unlocked):hover {
  background: #30aae7;
}

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: #5ebdec;
  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: #30aae7;
}

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: #5ebdec;
  background: rgba(94, 189, 236, 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 #e4e6e6;
  padding: 0 12px 0 12px;
  transition: 300ms border, 300ms background, 300ms padding, 300ms color;
  font: 13px "Roboto", "Arial", sans-serif;
  color: #999999;
  position: relative;
  box-sizing: border-box;
  resize: none;
  padding: 8px 12px;
}

body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea:focus, body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea.focused {
  border-color: #a2a8a8;
  color: #474747;
}

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:focus {
  -webkit-text-fill-color: #474747;
}

body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea::-webkit-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea:-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea::-moz-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  opacity: 1;
}

body div[name="youtubePlugin"] .cke_dialog_ui_textarea textarea:-ms-input-placeholder {
  font-size: 13px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #999;
  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;
  animation-duration: 300ms;
}

.modal .modal-dialog .modal-content modal.sm {
  max-width: 440px;
}

.modal .modal-dialog .modal-content modal.mm {
  max-width: 730px;
}

.pdh-header {
  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: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdh-header i {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  text-align: center;
  line-height: inherit;
  display: block;
  color: #999;
  transition: 300ms color;
}

.pdh-header i:hover {
  color: #474747;
}

.pdh-content {
  float: left;
  width: 100%;
  padding: 24px;
  position: relative;
}

.pdh-content:nth-last-child(2):before {
  content: "";
  display: block;
  background: #e5e5e5;
  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 .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-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;
  transition: 300ms background, 300ms color, 300ms border;
  background: #4eb9ce;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: white;
}

.pdh-buttons-holder > div button:disabled {
  pointer-events: none;
  background: #F1F2F2;
  color: #999;
}

.pdh-buttons-holder > div button:hover {
  background: #32a1b7;
}

.pdh-buttons-holder > div button + button:not(:disabled) {
  background: #F7F7F7;
  color: #8a93a3;
}

.pdh-buttons-holder > div button + button:not(:disabled):hover {
  background: #f2f2f2;
}

.pdh-buttons-holder > div button.red:not(:disabled) {
  background: #ee6567;
  color: white;
}

.pdh-buttons-holder > div button.red:not(:disabled):hover {
  background: #e9373a;
}

.pdh-buttons-holder > div button.hero:not(:disabled) {
  background: #4eb9ce;
  color: white;
}

.pdh-buttons-holder > div button.hero:not(:disabled):hover {
  background: #32a1b7;
}

.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;
}

#toast-container {
  position: fixed;
  top: 62px;
  right: 20px;
  z-index: 100000000;
  min-width: 320px;
  transition: 300ms top;
}

#toast-container .toast {
  float: right;
  clear: both;
  box-shadow: inset 50px 0 0 rgba(255, 255, 255, 0.35), 0 3px 8px rgba(0, 0, 0, 0.1);
  animation: 1s bounceInRight both;
  padding: 16px 16px 16px 66px;
  border: 1px solid;
  position: relative;
  width: 320px;
  font: 13px/20px "Roboto", "Arial", sans-serif;
  color: #474747;
  margin: 4px;
  text-transform: capitalize;
  border-radius: 3px;
}

#toast-container .toast:not(.hidden-close) {
  padding: 16px 44px 16px 66px;
}

#toast-container .toast:not(.hidden-close):after {
  content: "\f00d";
  height: 20px;
  width: 20px;
  position: absolute;
  display: block;
  font: 16px/18px FontAwesome;
  top: 16px;
  text-align: center;
  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: 16px;
  left: 15px;
  text-align: center;
}

#toast-container .toast.toast-error {
  background: #FCDCDD;
  border-color: #EE6567;
}

#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: #DFF3E5;
  border-color: #4ec27f;
}

#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-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: #303f4e;
  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 .25s, visibility 0s linear .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 .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 .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 .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 .8s infinite linear;
  animation: fancybox-rotate .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 .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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
  max-height: calc(100vh - 210px);
}

.search-suggestions::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 20px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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;
}

.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: #4eb9ce;
  color: white;
}

.combo-box-config-list .combo-box-dropdown > button:disabled {
  pointer-events: none;
  color: #999;
}

.combo-box-config-list.active > i {
  color: #32a1b7;
}

.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;
}

.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: #5ebdec;
  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;
}

.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 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: #5ebdec;
  z-index: 20;
}

.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: #30aae7;
  color: #30aae7;
}

.config-tree.second-type .active checkbox check:after {
  background: #30aae7;
}

.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: #5ebdec;
}

.sub-child .tree-lines-block:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
  background: #5ebdec;
}

.sub-toggle {
  color: #5ebdec;
  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: #5ebdec;
  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: scroll;
  scrollbar-face-color: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

.configs-layout > div::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.configs-layout > div::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 20px;
  border: 1px solid #F9F9F9;
}

.configs-layout > div::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.configs-layout > div::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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;
}

.login-section {
  float: left;
  width: 100%;
  height: 100%;
  background: #354758;
  background: linear-gradient(-105deg, #4d637a, #26323f 100%);
}

.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: #5ebdec;
  border: 1px solid #30aae7;
  font: 18px "Roboto", "Arial", sans-serif;
  cursor: pointer;
}

.login-section form button:hover {
  background: #30aae7;
  border-color: #1890cc;
}

.login-section form button:disabled {
  background: #182029;
  border-color: #11161d;
  color: #2f3b4a;
  background: #f3f3f5;
  border-color: #f3f3f5;
  color: #999;
  pointer-events: none;
}

.medium-image-browse {
  float: left;
  width: 100%;
}

.medium-image-browse > ul {
  float: left;
  width: 100%;
}

.medium-image-browse .medium-image-item {
  float: left;
  width: 100%;
  padding: 100% 0 0;
  position: relative;
}

.medium-image-browse .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-browse .medium-image-item figure:not(.active):hover {
  border-color: #d7d7de;
}

.medium-image-browse .medium-image-item figure.active {
  border-color: #5ebdec;
  cursor: default;
}

.medium-image-browse .medium-image-item .medium-image-actions {
  position: absolute;
  bottom: 12px;
  right: 8px;
  font-size: 0;
}

.medium-image-browse .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: #5ebdec;
  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: #C1C1C1;
  scrollbar-track-color: #F9F9F9;
}

.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: #C1C1C1;
  border-radius: 20px;
  border: solid white;
  border-width: 8px 0;
}

.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar-thumb:hover {
  background: #b4b4b4;
}

.live-casino-builder .bc-dropdown-container-body-scroll::-webkit-scrollbar-track {
  background: #F9F9F9;
}

.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: #47b4e9;
  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;
}

.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: #5ebdec;
  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(94, 189, 236, 0.37);
  border: 1px solid #5ebdec;
  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: #5ebdec;
  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 #5ebdec;
  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%;
}

.icons-as-radio icon {
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
  display: block;
  margin: 0;
  float: left;
}

.icons-as-radio p {
  float: left;
  padding: 0 14px;
  width: calc(100% - 34px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  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;
}

.color-input-holder input-holder small {
  display: block;
  height: 16px;
  width: 16px;
  border: 1px solid #E4E6E6;
  position: absolute;
  left: 12px;
  top: 9px;
  z-index: 10;
}

.color-input-holder input-holder input {
  padding-left: 40px;
}

.background-size-container {
  min-height: 251px;
}

.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: "";
  display: block;
  font: 18px/20px FontAwesome;
  width: 20px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}

.disabled-opacity {
  opacity: 0.45;
  pointer-events: none;
}

/*# sourceMappingURL=cms.css.map */