@charset "UTF-8";

/*
 * CSS zona candidato pública
 */

.select .icon-addon label.glyphicon {
  padding-right: 3px;
  border-right-width: 1px;
  border-right-style: solid;
  color: #b2b2b2;
  border-color: #b2b2b2;
  padding-bottom: 5px;
  line-height: 22px;
  padding-top: 0px;
  padding-bottom: 0px;
  top: 5px;
}

.bg-gris {
  background-color: #808080;
}

.bg-color-blueLight {
  background-color: #92a2a8;
}

.bg-color-blueLight.fc-day-grid-event:hover {
  background-color: #92a2a8;
}

.bg-color-blueLight.fc-list-item {
  color: white;
}

.bg-color-blueLight.fc-list-item:hover {
  color: #404040;
}

.bg-success {
  background-color: #739e73;
}

.bg-success.fc-day-grid-event:hover {
  background-color: #739e73;
}

.bg-success.fc-list-item {
  color: white;
}

.bg-success.fc-list-item:hover {
  color: #404040;
}

.bg-info {
  background-color: #57889C;
}

.bg-info.fc-day-grid-event:hover {
  background-color: #57889C;
}

.bg-info.fc-list-item {
  color: white;
}

.bg-info.fc-list-item:hover {
  color: #404040;
}

.bg-warning {
  background-color: #C79121;
}

.bg-warning.fc-day-grid-event:hover {
  background-color: #C79121;
}

.bg-warning.fc-list-item {
  color: white;
}

.bg-warning.fc-list-item:hover {
  color: #404040;
}

.bg-danger {
  background-color: #A90329;
}

.bg-danger.fc-day-grid-event:hover {
  background-color: #A90329;
}

.bg-danger.fc-list-item {
  color: white;
}

.bg-danger.fc-list-item:hover {
  color: #404040;
}

.bg-primary {
  background-color: #3276b1;
}

.bg-primary.fc-day-grid-event:hover {
  background-color: #3276b1;
}

.bg-primary.fc-list-item {
  color: white;
}

.bg-primary.fc-list-item:hover {
  color: #404040;
}

.bg-default {
  background-color: #92a2a8;
}

.bg-default.fc-day-grid-event:hover {
  background-color: #92a2a8;
}

.bg-default.fc-list-item {
  color: white;
}

.bg-default.fc-list-item:hover {
  color: #404040;
}

.label-color-blueLight {
  background-color: #92a2a8;
}

/*cambio*/

/*uso*/

/*uso*/

/*uso*/

/*cambio*/

/*
$font-family-serif:       Georgia, "Times New Roman", Times, serif;
$font-family-monospace:   Monaco, Menlo, Consolas, "Courier New", monospace;
*/

/*uso*/

/*uso*/

/*uso*/

/*uso*/

/*cambio*/

/*uso*/

/*uso y cambio*/

/*añado colores de botones de rrss*/

/*cambio*/

/* SMARTADMIN VARIABLES
 * All variables related specifically to the theme starts from here:
 *
 * Grays moved to front, because they are needed before this point.
 */

/* left side */

/* right side */

/* the color that flashes when you click on the first nav element */

/* the plus icon that appears on the parent nav when expanding and collapsing */

/* these values will only address the first parent in the entire nav */

/* the plus & minus icons */

/* margin top */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.animated.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.animated.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

.animated.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}

.animated.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.animated.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.animated.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animated.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
            transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
            transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
            transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.animated.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.animated.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.animated.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.animated.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.animated.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

.animated.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

.animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

.animated.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.animated.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.animated.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.animated.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.animated.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}

.animated.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.animated.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.animated.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.animated.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}

.animated.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.animated.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.animated.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.animated.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.animated.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}

.animated.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}

.animated.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}

.animated.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.animated.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.animated.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

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

  100% {
    -webkit-transform: rotate(359deg);
  }
}

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

  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/*!
 * Pace Progress Bar 2.0.1
 * https://github.com/HubSpot/pace
 *
 * Released under the MIT license
 * https://github.com/HubSpot/pace/blob/master/LICENSE
 */

.pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  border: solid 4px transparent;
  border-top-color: #DAD216;
  border-left-color: #DAD216;
  border-radius: 15px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
 * jQuery UI Datepicker 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/datepicker/
 */

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
  border: 0;
  font-weight: bold;
  width: 100%;
  padding: 4px 0;
  background-color: #f5f5f5;
  color: #808080;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  /*top: 1px;*/
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  /*left:1px;*/
}

.ui-datepicker .ui-datepicker-next-hover {
  /*right:1px;*/
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}

/* RTL support */

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */

.ui-datepicker-cover {
  display: none;
  display: block;
  position: absolute;
  z-index: -1;
  -webkit-filter: mask();
          filter: mask();
  top: -4px;
  left: -4px;
  width: 200px;
  height: 200px;
}

.ui-datepicker th {
  font-weight: bold;
  color: gray;
}

.ui-datepicker-today a:hover {
  background-color: #808080;
  color: #ffffff;
}

.ui-datepicker-today a {
  background-color: #BFBFBF;
  cursor: pointer;
  padding: 0 4px;
  margin-bottom: 0;
}

.ui-datepicker td a {
  margin-bottom: 0;
  border: 0;
}

.ui-datepicker td:hover {
  color: #ffffff;
}

.ui-datepicker td .ui-state-default {
  border: 0;
  background: none;
  margin-bottom: 0;
  padding: 5px;
  color: gray;
  text-align: center;
  -webkit-filter: none;
          filter: none;
}

/*añado*/

.ui-datepicker td.ui-state-highlight {
  color: #ffffff;
  background-color: #A90329;
}

.ui-datepicker td .ui-state-active {
  color: #333333;
  background-color: #ebebeb;
}

.ui-datepicker td .ui-state-highlight {
  /*
  color: #ffffff;
  background-color: #A90329;
  */
  border-color: #46b8da;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  /* Safari 4 */
  /* Firefox 3.6 */
  border-radius: 0px;
}

.ui-datepicker td .ui-state-active {
  /*
  color: #333333;
  background-color: #ebebeb;
  */
  border-color: #adadad;
  margin-bottom: 0;
  font-size: normal;
  text-shadow: 0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  /* Safari 4 */
  /* Firefox 3.6 */
  border-radius: 0px;
}

.ui-datepicker td .ui-state-hover {
  color: #ffffff;
  background: #428bca;
  background-color: #428bca;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #357ebd;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  /* Safari 4 */
  /* Firefox 3.6 */
  border-radius: 0px;
}

.flag {
  width: 16px;
  height: 11px;
  background: url("/img/flags/flags.png") no-repeat;
  margin-top: -0.18em;
  display: inline-block;
}

.flag.flag-ad {
  background-position: -16px 0;
}

.flag.flag-ae {
  background-position: -32px 0;
}

.flag.flag-af {
  background-position: -48px 0;
}

.flag.flag-ag {
  background-position: -64px 0;
}

.flag.flag-ai {
  background-position: -80px 0;
}

.flag.flag-al {
  background-position: -96px 0;
}

.flag.flag-am {
  background-position: -112px 0;
}

.flag.flag-an {
  background-position: -128px 0;
}

.flag.flag-ao {
  background-position: -144px 0;
}

.flag.flag-ar {
  background-position: -160px 0;
}

.flag.flag-as {
  background-position: -176px 0;
}

.flag.flag-at {
  background-position: -192px 0;
}

.flag.flag-au {
  background-position: -208px 0;
}

.flag.flag-aw {
  background-position: -224px 0;
}

.flag.flag-az {
  background-position: -240px 0;
}

.flag.flag-ba {
  background-position: 0 -11px;
}

.flag.flag-bb {
  background-position: -16px -11px;
}

.flag.flag-bd {
  background-position: -32px -11px;
}

.flag.flag-be {
  background-position: -48px -11px;
}

.flag.flag-bf {
  background-position: -64px -11px;
}

.flag.flag-bg {
  background-position: -80px -11px;
}

.flag.flag-bh {
  background-position: -96px -11px;
}

.flag.flag-bi {
  background-position: -112px -11px;
}

.flag.flag-bj {
  background-position: -128px -11px;
}

.flag.flag-bm {
  background-position: -144px -11px;
}

.flag.flag-bn {
  background-position: -160px -11px;
}

.flag.flag-bo {
  background-position: -176px -11px;
}

.flag.flag-br {
  background-position: -192px -11px;
}

.flag.flag-bs {
  background-position: -208px -11px;
}

.flag.flag-bt {
  background-position: -224px -11px;
}

.flag.flag-bv {
  background-position: -240px -11px;
}

.flag.flag-bw {
  background-position: 0 -22px;
}

.flag.flag-by {
  background-position: -16px -22px;
}

.flag.flag-bz {
  background-position: -32px -22px;
}

.flag.flag-ca {
  background-position: -48px -22px;
}

.flag.flag-catalonia {
  background-position: -64px -22px;
}

.flag.flag-cd {
  background-position: -80px -22px;
}

.flag.flag-cf {
  background-position: -96px -22px;
}

.flag.flag-cg {
  background-position: -112px -22px;
}

.flag.flag-ch {
  background-position: -128px -22px;
}

.flag.flag-ci {
  background-position: -144px -22px;
}

.flag.flag-ck {
  background-position: -160px -22px;
}

.flag.flag-cl {
  background-position: -176px -22px;
}

.flag.flag-cm {
  background-position: -192px -22px;
}

.flag.flag-cn {
  background-position: -208px -22px;
}

.flag.flag-co {
  background-position: -224px -22px;
}

.flag.flag-cr {
  background-position: -240px -22px;
}

.flag.flag-cu {
  background-position: 0 -33px;
}

.flag.flag-cv {
  background-position: -16px -33px;
}

.flag.flag-cw {
  background-position: -32px -33px;
}

.flag.flag-cy {
  background-position: -48px -33px;
}

.flag.flag-cz {
  background-position: -64px -33px;
}

.flag.flag-de {
  background-position: -80px -33px;
}

.flag.flag-dj {
  background-position: -96px -33px;
}

.flag.flag-dk {
  background-position: -112px -33px;
}

.flag.flag-dm {
  background-position: -128px -33px;
}

.flag.flag-do {
  background-position: -144px -33px;
}

.flag.flag-dz {
  background-position: -160px -33px;
}

.flag.flag-ec {
  background-position: -176px -33px;
}

.flag.flag-ee {
  background-position: -192px -33px;
}

.flag.flag-eg {
  background-position: -208px -33px;
}

.flag.flag-eh {
  background-position: -224px -33px;
}

.flag.flag-england {
  background-position: -240px -33px;
}

.flag.flag-er {
  background-position: 0 -44px;
}

.flag.flag-es {
  background-position: -16px -44px;
}

.flag.flag-et {
  background-position: -32px -44px;
}

.flag.flag-eu {
  background-position: -48px -44px;
}

.flag.flag-fi {
  background-position: -64px -44px;
}

.flag.flag-fj {
  background-position: -80px -44px;
}

.flag.flag-fk {
  background-position: -96px -44px;
}

.flag.flag-fm {
  background-position: -112px -44px;
}

.flag.flag-fo {
  background-position: -128px -44px;
}

.flag.flag-fr {
  background-position: -144px -44px;
}

.flag.flag-ga {
  background-position: -160px -44px;
}

.flag.flag-gb {
  background-position: -176px -44px;
}

.flag.flag-gd {
  background-position: -192px -44px;
}

.flag.flag-ge {
  background-position: -208px -44px;
}

.flag.flag-gf {
  background-position: -224px -44px;
}

.flag.flag-gg {
  background-position: -240px -44px;
}

.flag.flag-gh {
  background-position: 0 -55px;
}

.flag.flag-gi {
  background-position: -16px -55px;
}

.flag.flag-gl {
  background-position: -32px -55px;
}

.flag.flag-gm {
  background-position: -48px -55px;
}

.flag.flag-gn {
  background-position: -64px -55px;
}

.flag.flag-gp {
  background-position: -80px -55px;
}

.flag.flag-gq {
  background-position: -96px -55px;
}

.flag.flag-gr {
  background-position: -112px -55px;
}

.flag.flag-gs {
  background-position: -128px -55px;
}

.flag.flag-gt {
  background-position: -144px -55px;
}

.flag.flag-gu {
  background-position: -160px -55px;
}

.flag.flag-gw {
  background-position: -176px -55px;
}

.flag.flag-gy {
  background-position: -192px -55px;
}

.flag.flag-hk {
  background-position: -208px -55px;
}

.flag.flag-hm {
  background-position: -224px -55px;
}

.flag.flag-hn {
  background-position: -240px -55px;
}

.flag.flag-hr {
  background-position: 0 -66px;
}

.flag.flag-ht {
  background-position: -16px -66px;
}

.flag.flag-hu {
  background-position: -32px -66px;
}

.flag.flag-ic {
  background-position: -48px -66px;
}

.flag.flag-id {
  background-position: -64px -66px;
}

.flag.flag-ie {
  background-position: -80px -66px;
}

.flag.flag-il {
  background-position: -96px -66px;
}

.flag.flag-im {
  background-position: -112px -66px;
}

.flag.flag-in {
  background-position: -128px -66px;
}

.flag.flag-io {
  background-position: -144px -66px;
}

.flag.flag-iq {
  background-position: -160px -66px;
}

.flag.flag-ir {
  background-position: -176px -66px;
}

.flag.flag-is {
  background-position: -192px -66px;
}

.flag.flag-it {
  background-position: -208px -66px;
}

.flag.flag-je {
  background-position: -224px -66px;
}

.flag.flag-jm {
  background-position: -240px -66px;
}

.flag.flag-jo {
  background-position: 0 -77px;
}

.flag.flag-jp {
  background-position: -16px -77px;
}

.flag.flag-ke {
  background-position: -32px -77px;
}

.flag.flag-kg {
  background-position: -48px -77px;
}

.flag.flag-kh {
  background-position: -64px -77px;
}

.flag.flag-ki {
  background-position: -80px -77px;
}

.flag.flag-km {
  background-position: -96px -77px;
}

.flag.flag-kn {
  background-position: -112px -77px;
}

.flag.flag-kp {
  background-position: -128px -77px;
}

.flag.flag-kr {
  background-position: -144px -77px;
}

.flag.flag-kurdistan {
  background-position: -160px -77px;
}

.flag.flag-kw {
  background-position: -176px -77px;
}

.flag.flag-ky {
  background-position: -192px -77px;
}

.flag.flag-kz {
  background-position: -208px -77px;
}

.flag.flag-la {
  background-position: -224px -77px;
}

.flag.flag-lb {
  background-position: -240px -77px;
}

.flag.flag-lc {
  background-position: 0 -88px;
}

.flag.flag-li {
  background-position: -16px -88px;
}

.flag.flag-lk {
  background-position: -32px -88px;
}

.flag.flag-lr {
  background-position: -48px -88px;
}

.flag.flag-ls {
  background-position: -64px -88px;
}

.flag.flag-lt {
  background-position: -80px -88px;
}

.flag.flag-lu {
  background-position: -96px -88px;
}

.flag.flag-lv {
  background-position: -112px -88px;
}

.flag.flag-ly {
  background-position: -128px -88px;
}

.flag.flag-ma {
  background-position: -144px -88px;
}

.flag.flag-mc {
  background-position: -160px -88px;
}

.flag.flag-md {
  background-position: -176px -88px;
}

.flag.flag-me {
  background-position: -192px -88px;
}

.flag.flag-mg {
  background-position: -208px -88px;
}

.flag.flag-mh {
  background-position: -224px -88px;
}

.flag.flag-mk {
  background-position: -240px -88px;
}

.flag.flag-ml {
  background-position: 0 -99px;
}

.flag.flag-mm {
  background-position: -16px -99px;
}

.flag.flag-mn {
  background-position: -32px -99px;
}

.flag.flag-mo {
  background-position: -48px -99px;
}

.flag.flag-mp {
  background-position: -64px -99px;
}

.flag.flag-mq {
  background-position: -80px -99px;
}

.flag.flag-mr {
  background-position: -96px -99px;
}

.flag.flag-ms {
  background-position: -112px -99px;
}

.flag.flag-mt {
  background-position: -128px -99px;
}

.flag.flag-mu {
  background-position: -144px -99px;
}

.flag.flag-mv {
  background-position: -160px -99px;
}

.flag.flag-mw {
  background-position: -176px -99px;
}

.flag.flag-mx {
  background-position: -192px -99px;
}

.flag.flag-my {
  background-position: -208px -99px;
}

.flag.flag-mz {
  background-position: -224px -99px;
}

.flag.flag-na {
  background-position: -240px -99px;
}

.flag.flag-nc {
  background-position: 0 -110px;
}

.flag.flag-ne {
  background-position: -16px -110px;
}

.flag.flag-nf {
  background-position: -32px -110px;
}

.flag.flag-ng {
  background-position: -48px -110px;
}

.flag.flag-ni {
  background-position: -64px -110px;
}

.flag.flag-nl {
  background-position: -80px -110px;
}

.flag.flag-no {
  background-position: -96px -110px;
}

.flag.flag-np {
  background-position: -112px -110px;
}

.flag.flag-nr {
  background-position: -128px -110px;
}

.flag.flag-nu {
  background-position: -144px -110px;
}

.flag.flag-nz {
  background-position: -160px -110px;
}

.flag.flag-om {
  background-position: -176px -110px;
}

.flag.flag-pa {
  background-position: -192px -110px;
}

.flag.flag-pe {
  background-position: -208px -110px;
}

.flag.flag-pf {
  background-position: -224px -110px;
}

.flag.flag-pg {
  background-position: -240px -110px;
}

.flag.flag-ph {
  background-position: 0 -121px;
}

.flag.flag-pk {
  background-position: -16px -121px;
}

.flag.flag-pl {
  background-position: -32px -121px;
}

.flag.flag-pm {
  background-position: -48px -121px;
}

.flag.flag-pn {
  background-position: -64px -121px;
}

.flag.flag-pr {
  background-position: -80px -121px;
}

.flag.flag-ps {
  background-position: -96px -121px;
}

.flag.flag-pt {
  background-position: -112px -121px;
}

.flag.flag-pw {
  background-position: -128px -121px;
}

.flag.flag-py {
  background-position: -144px -121px;
}

.flag.flag-qa {
  background-position: -160px -121px;
}

.flag.flag-re {
  background-position: -176px -121px;
}

.flag.flag-ro {
  background-position: -192px -121px;
}

.flag.flag-rs {
  background-position: -208px -121px;
}

.flag.flag-ru {
  background-position: -224px -121px;
}

.flag.flag-rw {
  background-position: -240px -121px;
}

.flag.flag-sa {
  background-position: 0 -132px;
}

.flag.flag-sb {
  background-position: -16px -132px;
}

.flag.flag-sc {
  background-position: -32px -132px;
}

.flag.flag-scotland {
  background-position: -48px -132px;
}

.flag.flag-sd {
  background-position: -64px -132px;
}

.flag.flag-se {
  background-position: -80px -132px;
}

.flag.flag-sg {
  background-position: -96px -132px;
}

.flag.flag-sh {
  background-position: -112px -132px;
}

.flag.flag-si {
  background-position: -128px -132px;
}

.flag.flag-sk {
  background-position: -144px -132px;
}

.flag.flag-sl {
  background-position: -160px -132px;
}

.flag.flag-sm {
  background-position: -176px -132px;
}

.flag.flag-sn {
  background-position: -192px -132px;
}

.flag.flag-so {
  background-position: -208px -132px;
}

.flag.flag-somaliland {
  background-position: -224px -132px;
}

.flag.flag-sr {
  background-position: -240px -132px;
}

.flag.flag-ss {
  background-position: 0 -143px;
}

.flag.flag-st {
  background-position: -16px -143px;
}

.flag.flag-sv {
  background-position: -32px -143px;
}

.flag.flag-sx {
  background-position: -48px -143px;
}

.flag.flag-sy {
  background-position: -64px -143px;
}

.flag.flag-sz {
  background-position: -80px -143px;
}

.flag.flag-tc {
  background-position: -96px -143px;
}

.flag.flag-td {
  background-position: -112px -143px;
}

.flag.flag-tf {
  background-position: -128px -143px;
}

.flag.flag-tg {
  background-position: -144px -143px;
}

.flag.flag-th {
  background-position: -160px -143px;
}

.flag.flag-tj {
  background-position: -176px -143px;
}

.flag.flag-tk {
  background-position: -192px -143px;
}

.flag.flag-tl {
  background-position: -208px -143px;
}

.flag.flag-tm {
  background-position: -224px -143px;
}

.flag.flag-tn {
  background-position: -240px -143px;
}

.flag.flag-to {
  background-position: 0 -154px;
}

.flag.flag-tr {
  background-position: -16px -154px;
}

.flag.flag-tt {
  background-position: -32px -154px;
}

.flag.flag-tv {
  background-position: -48px -154px;
}

.flag.flag-tw {
  background-position: -64px -154px;
}

.flag.flag-tz {
  background-position: -80px -154px;
}

.flag.flag-ua {
  background-position: -96px -154px;
}

.flag.flag-ug {
  background-position: -112px -154px;
}

.flag.flag-um {
  background-position: -128px -154px;
}

.flag.flag-us {
  background-position: -144px -154px;
}

.flag.flag-uy {
  background-position: -160px -154px;
}

.flag.flag-uz {
  background-position: -176px -154px;
}

.flag.flag-va {
  background-position: -192px -154px;
}

.flag.flag-vc {
  background-position: -208px -154px;
}

.flag.flag-ve {
  background-position: -224px -154px;
}

.flag.flag-vg {
  background-position: -240px -154px;
}

.flag.flag-vi {
  background-position: 0 -165px;
}

.flag.flag-vn {
  background-position: -16px -165px;
}

.flag.flag-vu {
  background-position: -32px -165px;
}

.flag.flag-wales {
  background-position: -48px -165px;
}

.flag.flag-wf {
  background-position: -64px -165px;
}

.flag.flag-ws {
  background-position: -80px -165px;
}

.flag.flag-ye {
  background-position: -96px -165px;
}

.flag.flag-yt {
  background-position: -112px -165px;
}

.flag.flag-za {
  background-position: -128px -165px;
}

.flag.flag-zanzibar {
  background-position: -144px -165px;
}

.flag.flag-zm {
  background-position: -160px -165px;
}

.flag.flag-zw {
  background-position: -176px -165px;
}

/* flag with span */

.flag + span {
  text-transform: capitalize;
  display: inline-block;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  margin-top: -3px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .flag + span {
    max-width: 30px !important;
  }
}

/*
 * SMART FORMS
 */

.smart-form {
  margin: 0;
  outline: none;
  color: #666;
  position: relative;
}

.smart-form *,
.smart-form *:after,
.smart-form *:before {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}

.smart-form .btn {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.smart-form .radio + .radio,
.smart-form .checkbox + .checkbox {
  margin-top: 0;
}

.smart-form footer {
  display: block;
  padding: 7px 14px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.smart-form footer .btn {
  float: right;
  height: 31px;
  margin: 6px 0 0 5px;
  padding: 4px 10px;
  cursor: pointer;
}

.smart-form footer:after {
  content: "";
  display: table;
  clear: both;
}

.smart-form legend {
  padding-top: 15px;
}

.smart-form header {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  background: white;
  font-size: 16px;
  font-weight: 300;
  color: #232323;
  margin: 10px 14px 0;
}

.smart-form fieldset {
  display: block;
  padding: 25px 14px 5px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}

.smart-form fieldset + fieldset {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.smart-form section {
  margin-bottom: 15px;
  position: relative;
}

.smart-form .label {
  display: block;
  margin-bottom: 6px;
  line-height: 19px;
  font-weight: 400;
  font-size: 12px;
  color: #3276B1;
  text-align: left;
  white-space: normal;
}

.smart-form .label .col {
  margin: 0;
  padding-top: 7px;
}

.smart-form .input,
.smart-form .select,
.smart-form .textarea,
.smart-form .radio,
.smart-form .checkbox,
.smart-form .toggle,
.smart-form .button {
  position: relative;
  display: block;
  font-weight: 400;
}

.smart-form .input input,
.smart-form .select select,
.smart-form .textarea textarea {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  height: 32px;
  line-height: inherit;
  padding: 5px 10px;
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  background: #fff;
  font: 12px "Open Sans", Helvetica, Arial, sans-serif;
  color: #404040;
  appearance: normal;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.smart-form .note,
.note {
  margin-top: 6px;
  padding: 0 1px;
  font-size: 11px;
  line-height: 15px;
  color: #999;
}

.note {
  margin-top: 2px;
  font-size: 10px;
}

.smart-form .note a {
  font-size: 12px;
}

/*
 * File inputs
 */

.smart-form .input-file .button {
  position: absolute;
  top: 4px;
  right: 4px;
  float: none;
  height: 22px;
  margin: 0;
  padding: 0 14px;
  font-size: 12px;
  line-height: 22px;
}

.smart-form .input-file .button:hover {
  box-shadow: none;
}

.smart-form .input-file .button input {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
}

/*
 * Selects
 */

.smart-form .select i {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 5px;
  height: 11px;
  background: white;
  box-shadow: 0 0 0 9px white;
}

.smart-form .select i:after,
.smart-form .select i:before {
  content: "";
  position: absolute;
  right: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.smart-form .select i:after {
  bottom: 0;
  border-top: 4px solid #404040;
}

.smart-form .select i:before {
  top: 0;
  border-bottom: 4px solid #404040;
}

.smart-form .select-multiple select {
  height: auto;
}

/*
 * Text areas
 */

.smart-form .textarea textarea {
  height: auto;
  resize: none;
}

.smart-form .textarea-resizable textarea {
  resize: vertical;
}

.smart-form .textarea-expandable textarea {
  height: 31px;
}

.smart-form .textarea-expandable textarea:focus {
  height: auto;
}

/*
 * Radio and checkboxes
 */

.smart-form .radio,
.smart-form .checkbox {
  margin-bottom: 4px;
  padding-left: 25px;
  line-height: 25px;
  color: #404040;
  cursor: pointer;
  font-size: 12px;
}

.smart-form .radio:last-child,
.smart-form .checkbox:last-child {
  margin-bottom: 0;
}

.smart-form .radio input,
.smart-form .checkbox input {
  position: absolute;
  left: -9999px;
}

.smart-form .radio input + i:after,
.smart-form .checkbox input + i:after {
  position: absolute;
  opacity: 0;
  transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
  -ms-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
}

.smart-form .radio i,
.smart-form .checkbox i {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 17px;
  height: 17px;
  outline: none;
  border-width: 1px;
  border-style: solid;
  background: #FFF;
}

.smart-form .radio i {
  border-radius: 50%;
}

.smart-form .radio input + i:after {
  content: "";
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.smart-form .checkbox input + i:after {
  content: "\F00C";
  top: -1px;
  left: 1px;
  width: 15px;
  height: 15px;
  font: normal 16px/19px FontAwesome;
  text-align: center;
}

.smart-form .checkbox input:checked:hover + i:after {
  content: "\F00D";
}

.smart-form .checkbox input:checked:disabled:hover + i:after {
  content: "\F00C";
}

.smart-form .radio input:checked + i:after,
.smart-form .checkbox input:checked + i:after {
  opacity: 1;
}

.smart-form .inline-group {
  margin: 0 -15px -4px 0;
}

.smart-form .inline-group:after {
  content: "";
  display: table;
  clear: both;
}

.smart-form .inline-group .radio,
.smart-form .inline-group .checkbox {
  float: left;
  margin-right: 30px;
}

.smart-form .inline-group .radio:last-child,
.smart-form .inline-group .checkbox:last-child {
  margin-bottom: 4px;
}

/*
 * toggles
 */

.smart-form .toggle {
  margin-bottom: 4px;
  padding-right: 61px;
  font-size: 15px;
  line-height: 25px;
  color: #404040;
  cursor: pointer;
}

.smart-form .toggle:last-child {
  margin-bottom: 0;
}

.smart-form .toggle input {
  position: absolute;
  left: -9999px;
}

.smart-form .toggle input:checked + i:after {
  content: attr(data-swchon-text);
  text-align: right;
}

.smart-form .toggle input:checked + i:before {
  right: 36px;
}

.smart-form .toggle i {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  width: 49px;
  height: 17px;
  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  background: #fff;
}

.smart-form .toggle i:after {
  content: attr(data-swchoff-text);
  position: absolute;
  top: 2px;
  right: 8px;
  left: 8px;
  font-style: normal;
  font-size: 9px;
  line-height: 12px;
  font-weight: 700;
  text-align: left;
  color: #5f5f5f;
}

.smart-form .toggle i:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 4px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 1;
  transition: right 0.2s;
  -o-transition: right 0.2s;
  -ms-transition: right 0.2s;
  -moz-transition: right 0.2s;
  -webkit-transition: right 0.2s;
}

/*
 * ratings
 */

.smart-form .rating {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 25px;
  color: #404040;
}

.smart-form .rating:last-child {
  margin-bottom: 0;
}

.smart-form .rating input {
  position: absolute;
  left: -9999px;
}

.smart-form .rating label {
  display: block;
  float: right;
  height: 17px;
  margin-top: 5px;
  padding: 0 2px;
  font-size: 17px;
  line-height: 17px;
  cursor: pointer;
}

/*
 * buttons
 */

.smart-form .button {
  float: right;
  height: 31px;
  overflow: hidden;
  margin: 10px 0 0 5px;
  padding: 0 25px;
  outline: none;
  border: 0;
  font: 300 15px/31px "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.smart-form .icon-append,
.smart-form .icon-prepend {
  position: absolute;
  top: 5px;
  width: 22px;
  height: 22px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.smart-form .icon-append {
  right: 5px;
  padding-left: 3px;
  border-left-width: 1px;
  border-left-style: solid;
}

.smart-form .icon-prepend {
  left: 5px;
  padding-right: 3px;
  border-right-width: 1px;
  border-right-style: solid;
}

.smart-form .input .icon-prepend + input,
.smart-form .textarea .icon-prepend + textarea {
  padding-left: 37px;
}

.smart-form .input .icon-append + input,
.smart-form .textarea .icon-append + textarea {
  padding-right: 37px;
}

.smart-form .input .icon-prepend + .icon-append + input,
.smart-form .textarea .icon-prepend + .icon-append + textarea {
  padding-left: 37px;
}

/*
 * grid
 */

.smart-form .row {
  margin: 0 -15px;
}

.smart-form .row:after {
  content: "";
  display: table;
  clear: both;
}

.smart-form .col {
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.smart-form .col-1 {
  width: 8.33%;
}

.smart-form .col-2 {
  width: 16.66%;
}

.smart-form .col-3 {
  width: 25%;
}

.smart-form .col-4 {
  width: 33.33%;
}

.smart-form .col-5 {
  width: 41.66%;
}

.smart-form .col-6 {
  width: 50%;
}

.smart-form .col-7 {
  width: 58.33%;
}

.smart-form .col-8 {
  width: 66.67%;
}

.smart-form .col-9 {
  width: 75%;
}

.smart-form .col-10 {
  width: 83.33%;
}

.smart-form .col-11 {
  width: 91.67%;
}

.smart-form .col-12 {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .smart-form .col {
    float: none;
    width: 100%;
  }
}

/*
 * tooltips
 */

.smart-form .select select {
  padding: 5px;
}

.smart-form .tooltip {
  position: absolute;
  z-index: 99999;
  left: -9999px;
  padding: 2px 8px 3px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  opacity: 0;
  transition: margin 0.3s, opacity 0.3s;
  -o-transition: margin 0.3s, opacity 0.3s;
  -ms-transition: margin 0.3s, opacity 0.3s;
  -moz-transition: margin 0.3s, opacity 0.3s;
  -webkit-transition: margin 0.3s, opacity 0.3s;
}

.smart-form .tooltip:after {
  content: "";
  position: absolute;
}

.smart-form .input input:focus + .tooltip,
.smart-form .textarea textarea:focus + .tooltip {
  opacity: 1;
}

.smart-form .tooltip-top-right {
  bottom: 100%;
  margin-bottom: 15px;
}

.smart-form .tooltip-top-right:after {
  top: 100%;
  right: 11px;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.smart-form .input input:focus + .tooltip-top-right,
.smart-form .textarea textarea:focus + .tooltip-top-right {
  right: 0;
  left: auto;
  margin-bottom: 5px;
}

.smart-form .tooltip-top-left {
  bottom: 100%;
  margin-bottom: 15px;
}

.smart-form .tooltip-top-left:after {
  top: 100%;
  left: 11px;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.smart-form .input input:focus + .tooltip-top-left,
.smart-form .textarea textarea:focus + .tooltip-top-left {
  right: auto;
  left: 0;
  margin-bottom: 5px;
}

.smart-form .tooltip-right {
  top: 4px;
  white-space: nowrap;
  margin-left: 15px;
}

.smart-form .tooltip-right:after {
  top: 6px;
  right: 100%;
  border-top: 4px solid transparent;
  border-right: 4px solid rgba(0, 0, 0, 0.9);
  border-bottom: 4px solid transparent;
}

.smart-form .input input:focus + .tooltip-right,
.smart-form .textarea textarea:focus + .tooltip-right {
  left: 100%;
  margin-left: 5px;
}

.smart-form .tooltip-left {
  top: 4px;
  white-space: nowrap;
  margin-right: 15px;
}

.smart-form .tooltip-left:after {
  top: 6px;
  left: 100%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid rgba(0, 0, 0, 0.9);
}

.smart-form .input input:focus + .tooltip-left,
.smart-form .textarea textarea:focus + .tooltip-left {
  right: 100%;
  left: auto;
  margin-right: 5px;
}

.smart-form .tooltip-bottom-right {
  top: 100%;
  margin-top: 15px;
}

.smart-form .tooltip-bottom-right:after {
  bottom: 100%;
  right: 11px;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-left: 4px solid transparent;
}

.smart-form .input input:focus + .tooltip-bottom-right,
.smart-form .textarea textarea:focus + .tooltip-bottom-right {
  right: 0;
  left: auto;
  margin-top: 5px;
}

.smart-form .tooltip-bottom-left {
  top: 100%;
  margin-top: 15px;
}

.smart-form .tooltip-bottom-left:after {
  bottom: 100%;
  left: 11px;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-left: 4px solid transparent;
}

.smart-form .input input:focus + .tooltip-bottom-left,
.smart-form .textarea textarea:focus + .tooltip-bottom-left {
  right: auto;
  left: 0;
  margin-top: 5px;
}

/*
 * normal state
 */

.smart-form .input input,
.smart-form .select select,
.smart-form .textarea textarea,
.smart-form .radio i,
.smart-form .checkbox i,
.smart-form .toggle i,
.smart-form .icon-append,
.smart-form .icon-prepend {
  border-color: #bdbdbd;
  transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
}

.smart-form .toggle i:before {
  background-color: #3276B1;
}

.smart-form .rating label {
  color: #ccc;
  transition: color 0.3s;
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
}

.smart-form .button {
  background-color: #3276B1;
  opacity: 0.8;
  transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}

.smart-form .button.button-secondary {
  background-color: #b3b3b3;
}

.smart-form .icon-append,
.smart-form .icon-prepend {
  color: #a2a2a2;
}

/*
 * hover state
 */

.smart-form .input:hover input,
.smart-form .select:hover select,
.smart-form .textarea:hover textarea,
.smart-form .radio:hover i,
.smart-form .checkbox:hover i,
.smart-form .toggle:hover i {
  border-color: #5d98cc;
}

.smart-form .rating input + label:hover,
.smart-form .rating input + label:hover ~ label {
  color: #3276b1;
}

.smart-form .button:hover {
  opacity: 1;
}

.smart-form .radio:hover i,
.smart-form .checkbox:hover i,
.smart-form .toggle:hover i {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

/*
 * radio/toggle/checkbox active state
 */

.smart-form .radio:active i,
.smart-form .checkbox:active i,
.smart-form .toggle:active i {
  background: #f0f0f0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

/*
 * focus state
 */

.smart-form .input input:focus,
.smart-form .select select:focus,
.smart-form .textarea textarea:focus,
.smart-form .radio input:focus + i,
.smart-form .checkbox input:focus + i,
.smart-form .toggle input:focus + i {
  border-color: #3276b1;
}

/*
 * checked state
 */

.smart-form .radio input + i:after {
  background-color: #3276b1;
}

.smart-form .checkbox input + i:after {
  color: #3276b1;
}

.smart-form .radio input:checked + i,
.smart-form .checkbox input:checked + i,
.smart-form .toggle input:checked + i {
  border-color: #3276b1;
}

.smart-form .rating input:checked ~ label {
  color: #3276b1;
}

/*
 * error state
 */

.smart-form .state-error input,
.smart-form .state-error select,
.smart-form .state-error textarea,
.smart-form .radio.state-error i,
.smart-form .checkbox.state-error i,
.smart-form .toggle.state-error i {
  background: #fff0f0;
  border-color: #a90329;
}

.smart-form .toggle.state-error input:checked + i {
  background: #fff0f0;
}

.smart-form .state-error + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #D56161;
}

.smart-form .rating.state-error + em {
  margin-top: -4px;
  margin-bottom: 4px;
}

.smart-form .state-error select + i {
  background: #fff0f0;
  box-shadow: 0 0 0 9px #fff0f0;
}

.state-error .icon-append,
.state-error .icon-prepend {
  color: #ed1c24;
}

/*
 * success state
 */

.smart-form .state-success input,
.smart-form .state-success select,
.smart-form .state-success textarea,
.smart-form .radio.state-success i,
.smart-form .checkbox.state-success i,
.smart-form .toggle.state-success i {
  background: #f0fff0;
  border-color: #7dc27d;
}

.smart-form .toggle.state-success input:checked + i {
  background: #f0fff0;
}

.smart-form .note-success {
  color: #6fb679;
}

.smart-form .state-success select + i {
  background: honeyDew;
  box-shadow: 0 0 0 9px honeyDew;
}

/*
 * disable state
 */

.smart-form .input.state-disabled input,
.smart-form .select.state-disabled,
.smart-form .textarea.state-disabled,
.smart-form .radio.state-disabled,
.smart-form .checkbox.state-disabled,
.smart-form .toggle.state-disabled,
.smart-form .button.state-disabled {
  cursor: default !important;
  opacity: 0.6 !important;
}

.smart-form .input.state-disabled:hover input,
.smart-form .select.state-disabled:hover select,
.smart-form .textarea.state-disabled:hover textarea,
.smart-form .radio.state-disabled:hover i,
.smart-form .checkbox.state-disabled:hover i,
.smart-form .toggle.state-disabled:hover i {
  border-color: #e5e5e5 !important;
}

.smart-form .state-disabled.radio input:checked + i,
.smart-form .state-disabled.checkbox input:checked + i,
.smart-form .state-disabled.toggle input:checked + i,
.smart-form .state-disabled.checkbox input + i:after,
.smart-form .state-disabled.radio input + i:after {
  border-color: #e5e5e5 !important;
  color: #333 !important;
}

.smart-form .state-disabled.radio input + i:after {
  background-color: #333;
}

/*
 * submit state
 */

.smart-form .message {
  display: none;
  color: #6fb679;
}

.smart-form .message i {
  display: block;
  margin: 0 auto 20px;
  width: 81px;
  height: 81px;
  border: 1px solid #6fb679;
  border-radius: 50%;
  font-size: 30px;
  line-height: 81px;
}

.smart-form.submited fieldset,
.smart-form.submited footer {
  display: none;
}

.smart-form.submited .message {
  display: block;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.9);
  font: 300 18px/27px "Open Sans", Helvetica, Arial, sans-serif;
  text-align: center;
}

/*
 * JQUERY UI UPDATE
 */

.smart-form .ui-widget-content .ui-spinner-input {
  margin: 0px;
  border: 0px;
  box-shadow: none !important;
  height: 29px;
}

/*
 * date picker

.ui-datepicker {
	display: none;
	padding: 10px 12px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
	text-align: center;
	color: #666;
}
.ui-datepicker a {
	color: #404040;
}
.ui-datepicker-header {
	position: relative;
	margin: -10px -12px 10px;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,.1);
	font-size: 15px;
	line-height: 27px;
}
.ui-datepicker-prev, .ui-datepicker-next {
	position: absolute;
	top: 0;
	display: block;
	width: 47px;
	height: 47px;
	font-size: 15px;
	line-height: 47px;
	text-decoration: none;
	cursor: pointer;
}
.ui-datepicker-prev {
	left: 0;
}
.ui-datepicker-next {
	right: 0;
}
.ui-datepicker-calendar {
	border-collapse: collapse;
	font-size: 13px;
	line-height: 27px;
}
.ui-datepicker-calendar th {
	color: #999;
}
.ui-datepicker-calendar a, .ui-datepicker-calendar span {
	display: block;
	width: 31px;
	margin: auto;
	text-decoration: none;
	color: #404040;
	text-align:center;
}
.ui-datepicker-unselectable.ui-state-disabled {

}
.ui-datepicker-unselectable.ui-state-disabled > span {
	color:#bfbfbf;
	background-color: #FAFCFD;
}

.ui-datepicker-calendar a:hover {
	background: #3276B1;
	color:#fff;
}
.ui-datepicker-calendar span {

}
.ui-datepicker-today a {
	font-weight: 700;
}
.ui-datepicker-calendar .ui-state-active {
	background: rgba(0,0,0,.05);
	cursor: default;
}
.ui-datepicker-inline {
	border: 2px solid #e5e5e5;
	background: #fff;
	box-shadow: none;
}
.ui-datepicker-inline .ui-datepicker-calendar {
	width: 100%;
} */

/*
 * model
 */

.smart-form-modal {
  position: fixed;
  z-index: 1;
  display: none;
  width: 400px;
}

.smart-form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/*
 * Time picker
 */

.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}

.ui-timepicker-div dl {
  text-align: left;
}

.ui-timepicker-div dl dt {
  float: left;
  clear: left;
  padding: 0 0 0 5px;
}

.ui-timepicker-div dl dd {
  margin: 17px 10px 12px 40%;
}

.ui-timepicker-div td {
  font-size: 90%;
}

.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.ui-timepicker-rtl {
  direction: rtl;
}

.ui-timepicker-rtl dl {
  text-align: right;
  padding: 0 5px 0 0;
}

.ui-timepicker-rtl dl dt {
  float: right;
  clear: right;
}

.ui-timepicker-rtl dl dd {
  margin: 0 40% 10px 10px;
}

/*
 * Large, small and extra small fields
 */

.smart-form input.input-lg {
  height: 44px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.33;
}

.smart-form input.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.smart-form input.input-xs {
  height: 24px;
  padding: 2px 10px;
  font-size: 11px;
  line-height: 1.5;
}

/* SELECT */

.smart-form select.input-sm {
  height: 30px;
  line-height: 15px;
  font-size: 12px;
}

.smart-form select.input-sm + i {
  height: 10px;
}

.smart-form select.input-lg {
  height: 44px;
  line-height: 22px;
  font-size: 17px;
}

.smart-form select.input-lg + i {
  height: 11px;
  top: 17px;
}

/* aep fix for aspnet mvc
   from abelepereira  */

.smart-form .checkbox input + input[type=hidden] + i:after {
  content: "\F00C";
  top: -1px;
  left: 1px;
  width: 15px;
  height: 15px;
  font: normal 16px/19px FontAwesome;
  text-align: center;
}

.smart-form .checkbox input:checked:hover + input[type=hidden] + i:after {
  content: "\F00D";
}

.smart-form .checkbox input:checked:disabled:hover + input[type=hidden] + i:after {
  content: "\F00C";
}

.smart-form .checkbox input:checked + input[type=hidden] + i:after {
  opacity: 1;
}

/* toogle fix */

.smart-form .toggle input:checked + input[type=hidden] + i:after {
  content: attr(data-swchon-text);
  text-align: right;
}

.smart-form .toggle input:checked + input[type=hidden] + i:before {
  right: 36px;
}

/* end of fix */

/*
 * LOGIN/REGISTER
 */

body {
  background: #ffffff !important;
}

.display-image {
  margin-top: -10px;
  margin-right: 20px;
}

.terms-body {
  max-height: 400px;
  overflow: auto;
}

.login-app-icons {
  margin-top: 130px;
}

#login-page {
  background: #ffffff;
  overflow: visible;
}

#login-page .container {
  border: none;
}

#login-page #header {
  margin: 0;
  height: 71px;
  border-bottom: 1px solid #eeeeee !important;
  overflow: hidden;
  padding: 0 30px;
  background-clip: padding-box;
  border-width: 0;
  /*margin-bottom: 20px;*/
  background: #fcfcfc;
}

#login-page #header #logo {
  margin-top: 22px;
  margin-left: 0px;
}

#login-page #header #logo img {
  width: 137px;
}

#login-page #main-login {
  padding-top: 20px;
  margin-left: 0px;
}

#login-page .hero {
  background-image: url(/images/login.png?89e54b5ecbc18456c945a814484ded7e);
  background-repeat: no-repeat;
  background-position: 0 137px;
  height: 320px;
  width: 100%;
  float: left;
}

#login-page h4.paragraph-header {
  color: #565656;
  font-size: 15px;
  font-weight: normal;
  line-height: 22px;
  margin-top: 15px;
  width: 270px;
}

#login-page h5.about-heading {
  color: #565656;
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
  margin: 0 0 5px;
}

#login-page .login-header-big {
  font-weight: 400;
}

#login-page .login-desc-box-l {
  min-height: 350px;
  width: 50%;
}

#login-page-header-space {
  float: right;
  text-align: right;
  display: block;
  vertical-align: middle;
  line-height: 71px;
}

#login-page-header-space > :first-child {
  font-size: 13px;
  margin-right: 14px;
  vertical-align: -3px;
  font-weight: 400;
}

#login-page-header-space .btn {
  font-weight: bold;
  text-transform: uppercase;
}

#login-page-header-space > * {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 880px) {
  #login-page #header {
    padding: 0 5px !important;
  }
}

@media only screen and (min-width: 0px) and (max-width: 679px) {
  #login-page #header {
    padding: 0 5px !important;
  }

  #login-page #header #logo {
    margin-top: 22px;
  }

  #login-page #header #logo img {
    width: 135px;
  }
}

#left-panel {
  position: absolute;
  -webkit-transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
  transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
  -webkit-transform: translate(0px, 0px) translateZ(0px);
}

/*
 * MAIN PANEL
 */

#main {
  margin-left: 220px;
  padding: 0;
  padding-bottom: 52px;
  min-height: 500px;
  position: relative;
}

/* when mobile menu is active */

body.mobile-view-activated.hidden-menu {
  overflow-x: hidden;
}

body.container.hidden-menu:not(.mobile-view-activated) {
  overflow: hidden;
}

.hidden-menu.fixed-ribbon #ribbon {
  left: 10px;
}

/*
 * HIDDEN MENU
 */

.hidden-menu #left-panel {
  left: -210px;
  z-index: 903;
}

.hidden-menu #left-panel.sidebar {
  background-color: #e8e8e8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5A5A5A), to(#686868));
  background-image: linear-gradient(to bottom, #5A5A5A 0%, #686868 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#5A5A5A", endColorstr="#686868",GradientType=0 );
  box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
  border-color: #494949;
}

.hidden-menu #left-panel.sidebar ul li a {
  color: #ffffff;
}

.hidden-menu #main {
  margin-left: 10px;
}

.hidden-menu #left-panel:hover {
  left: 0px;
}

.hidden-menu .minifyme {
  display: none;
}

.minified #hide-menu {
  display: none;
}

.btn-header.pull-right {
  margin-left: 6px;
}

.btn-header a > span {
  font-size: 13px;
  font-weight: normal;
  line-height: 30px;
  height: 30px;
  display: inline-block;
}

.btn-header > :first-child > a {
  border-radius: 2px;
  cursor: default !important;
  display: inline-block;
  font-weight: bold;
  height: 39px;
  line-height: 38px;
  min-width: 30px;
  padding: 2px;
  text-align: center;
  text-decoration: none !important;
  -moz-user-select: none;
  -webkit-user-select: none;
  background-color: #f8f8f8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
  background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
  border: 1px solid #bfbfbf;
  color: #6D6A69;
  font-size: 17px;
  margin: 10px 0 0 0;
}

.btn-header > :first-child > a:hover {
  border: 1px solid #bfbfbf;
  color: #222;
  -webkit-transition: all 0s;
  transition: all 0s;
  cursor: pointer;
  box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
}

.btn-header > :first-child > a:active {
  background-color: #e8e8e8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#ededed));
  background-image: linear-gradient(to bottom, #e8e8e8 0%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e8e8e8", endColorstr="#ededed",GradientType=0 );
  box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
}

.hidden-menu #hide-menu > :first-child > a {
  background-color: #e8e8e8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5A5A5A), to(#686868));
  background-image: linear-gradient(to bottom, #5A5A5A 0%, #686868 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#5A5A5A", endColorstr="#686868",GradientType=0 );
  box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  border-color: #494949;
}

.hidden-menu #hide-menu > :first-child > a:active,
.full-screen #fullscreen > :first-child > a:active {
  box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
}

/* This issue relates to container + toggle menu with a result of overflow. */

html.hidden-menu-mobile-lock {
  overflow-x: hidden;
}

.hidden-menu .page-footer {
  padding-left: 20px;
}

/*
 * ACCORDIONS
 */

.smart-accordion-default.panel-group {
  margin-bottom: 0px;
}

.smart-accordion-default.panel-group .panel + .panel {
  margin-top: -1px;
}

.smart-accordion-default.panel-group .panel-heading {
  padding: 0px;
}

.smart-accordion-default.panel-group .panel-title a {
  display: block;
  padding: 10px 15px;
  text-decoration: none !important;
}

.smart-accordion-default .panel-heading,
.panel-group .panel {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}

.smart-accordion-default .panel-default > .panel-heading {
  background-color: #fcfcfc;
}

.smart-accordion-default .panel-default {
  border-color: #c3c3c3;
}

.smart-accordion-default .panel-title > a > :first-child {
  display: none;
}

.smart-accordion-default .panel-title > a.collapsed > .fa {
  display: none;
}

.smart-accordion-default .panel-title > a.collapsed > :first-child {
  display: inline-block;
}

.no-padding .smart-accordion-default > div {
  border-left: none !important;
  border-right: none !important;
}

.no-padding .smart-accordion-default > div:first-child {
  border-top: none !important;
}

.no-padding .smart-accordion-default > div:last-child {
  border-bottom: none !important;
}

/*
 * TABS
 */

.nav-tabs > li > a .badge {
  font-size: 11px;
  padding: 3px 5px 3px 5px;
  opacity: 0.5;
  margin-left: 5px;
  min-width: 17px;
  font-weight: normal;
}

.nav-tabs > li > a > .fa {
  opacity: 0.5;
}

.tabs-left .nav-tabs > li > a .badge {
  margin-right: 5px;
  margin-left: 0px;
}

.nav-tabs > li > a .label {
  display: inline-block;
  font-size: 11px;
  margin-left: 5px;
  opacity: 0.5;
}

.nav-tabs > li.active > a .badge,
.nav-tabs > li.active > a .label,
.nav-tabs > li.active > a > .fa {
  opacity: 1;
}

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

.nav-tabs > li.active > a {
  box-shadow: 0 -2px 0 #57889c;
  border-top-width: 0px !important;
  margin-top: 1px !important;
  font-weight: bold;
}

.tabs-left .nav-tabs > li.active > a {
  box-shadow: -2px 0 0 #57889c;
  border-top-width: 1px !important;
  border-left: none !important;
  margin-left: 1px !important;
}

.tabs-left .nav-pills > li.active > a {
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

.tabs-right .nav-tabs > li.active > a {
  box-shadow: 2px 0 0 #57889c;
  border-top-width: 1px !important;
  border-right: none !important;
  margin-right: 1px !important;
}

.tabs-below .nav-tabs > li.active > a {
  box-shadow: 0 2px 0 #57889c;
  border-bottom-width: 0px !important;
  border-top: none !important;
  margin-top: 0px !important;
}

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #dddddd;
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li,
.tabs-left > .nav-pills > li,
.tabs-right > .nav-pills > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a,
.tabs-left > .nav-pills > li > a,
.tabs-right > .nav-pills > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

.tabs-left > .nav-tabs,
.tabs-left > .nav-pills {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #dddddd;
}

.tabs-left > .nav-pills {
  border-right: none;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #d5d5d5 #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
  *border-right-color: #ffffff;
}

.tabs-left > .tab-content {
  margin-left: 109px;
}

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #dddddd;
  /* DDD */
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #dddddd #dddddd #dddddd transparent;
  *border-left-color: #ffffff;
}

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #dddddd;
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #dddddd;
  border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #dddddd #dddddd #dddddd;
  /* tabs */
}

/* bordered tabs */

.nav-tabs.bordered {
  background: #ffffff;
  border: 1px solid #dddddd;
}

.nav-tabs.bordered > :first-child a {
  border-left-width: 0px !important;
}

.nav-tabs.bordered + .tab-content {
  border: 1px solid #dddddd;
  border-top: none;
}

/* bordered tabs top right */

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

.tabs-pull-right.nav-tabs > li:first-child > a,
.tabs-pull-right.nav-pills > li:first-child > a {
  margin-right: 1px;
}

.tabs-pull-right.bordered.nav-tabs > li:first-child > a,
.tabs-pull-right.bordered.nav-pills > li:first-child > a {
  border-left-width: 1px !important;
  margin-right: 0px;
  border-right-width: 0px;
}

/* jarviswidget header first child is tab */

.jarviswidget > header > .nav-tabs.pull-left > li:first-child a {
  border-left-width: 0px !important;
}

/*
 * No Padding
 */

.no-content-padding {
  margin: -10px -14px 0 -14px;
  /*used with content >:first-child */
}

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

.no-padding > pre {
  margin: 30px;
}

.no-padding > table,
.no-padding .dataTables_wrapper table {
  border: none !important;
  margin-bottom: 0px !important;
  border-bottom-width: 0px !important;
}

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

.padding-5 {
  padding: 5px !important;
}

.padding-7 {
  padding: 7px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-gutter {
  padding: 13px !important;
}

.padding-top-10 {
  padding-top: 10px !important;
}

.padding-top-15 {
  padding-top: 15px !important;
}

.padding-bottom-0 {
  padding-bottom: 0px !important;
}

.padding-bottom-10 {
  padding-bottom: 10px !important;
}

.padding-bottom-15 {
  padding-bottom: 15px !important;
}

.padding-top-0 {
  padding-top: 0px !important;
}

.no-padding > table tr td:last-child,
.no-padding > table tr th:last-child,
.no-padding .dataTables_wrapper table tr td:last-child,
.no-padding .dataTables_wrapper table tr th:last-child {
  border-right: none !important;
}

.no-padding > table tr td:first-child,
.no-padding > table tr th:first-child,
.no-padding .dataTables_wrapper table tr td:first-child,
.no-padding .dataTables_wrapper table tr th:first-child {
  border-left: none !important;
}

.no-padding .dataTables_wrapper table tbody tr:last-child td {
  border-bottom: 0;
}

/*
 * Font Weights
 */

.semi-bold {
  font-weight: 400 !important;
}

.ultra-light {
  font-weight: 300 !important;
}

/*
 * Font Sizes
 */

.font-xs {
  font-size: 85% !important;
}

.font-sm {
  font-size: 95% !important;
}

.font-md {
  font-size: 130% !important;
}

.font-lg {
  font-size: 160% !important;
}

.font-xl {
  font-size: 200% !important;
}

.font-400 {
  font-size: 400% !important;
}

/*
 * Margins
 */

.no-margin {
  margin: 0px !important;
}

.margin-top-5 {
  margin-top: 5px !important;
}

.margin-top-10 {
  margin-top: 10px !important;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-right-5 {
  margin-right: 5px !important;
}

.margin-top-0 {
  margin-top: 0px !important;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-right-13 {
  margin-right: 13px !important;
}

/*
 * No border
 */

.no-border,
.well[class*=" bg-"].no-border {
  border-width: 0px !important;
}

.no-border-transparent {
  border-color: transparent !important;
}

.no-border-radius {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

/*
 * Inlines
 */

.display-inline {
  display: inline-block !important;
}

.display-normal {
  display: inline !important;
}

/*
 * CURSORS
 */

.cursor-pointer {
  cursor: pointer;
}

/*
 * Images
 */

.hover-transparent {
  opacity: 0.5;
}

.hover-transparent:hover {
  opacity: 1;
}

/*
 * Forced text alignments
 */

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

.text-align-left,
.text-left {
  text-align: left !important;
}

.text-align-right,
.text-right {
  text-align: right !important;
}

/*
 * HR
 */

hr.simple {
  margin-top: 10px;
  margin-bottom: 10px;
  border-style: dashed;
}

/*
 * SHORT CUTS
 */

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

/*
 * Air fields
 * Description: absolute positioned objects
 */

.air {
  position: absolute;
  z-index: 5;
}

.air-bottom {
  bottom: 0px;
}

.air-top {
  top: 0px;
}

.air-top-right {
  top: 0px;
  right: 0px;
}

.air-top-left {
  top: 0px;
  left: 0px;
}

.air-bottom-left {
  bottom: 0px;
  left: 0px;
}

.air-bottom-right {
  bottom: 0px;
  right: 0px;
}

/*
 * Display none
 */

.display-none {
  display: none !important;
}

/*
 * Custom Radio and Input
 * SETUP
 */

.checkbox input[type=checkbox].checkbox + span,
.checkbox-inline input[type=checkbox].checkbox + span,
.radiobox-inline input[type=radio].radiobox + span,
.radio input[type=radio].radiobox + span {
  margin-left: -20px;
}

.form-inline .checkbox input[type=checkbox].checkbox + span,
.form-inline .radiobox input[type=radio].radiobox + span {
  margin-left: 0px;
}

.form-inline .checkbox,
.form-inline .radiobox {
  padding-left: 0px;
}

label input[type=radio].radiobox + span,
input[type=checkbox].checkbox + span {
  vertical-align: middle;
  line-height: 20px;
}

input[type=checkbox].checkbox + span,
input[type=checkbox].checkbox + span:after,
input[type=checkbox].checkbox + span:before,
input[type=radio].radiobox + span,
input[type=radio].radiobox + span:after,
input[type=radio].radiobox + span:before {
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
}

input[type=checkbox].checkbox,
input[type=radio].radiobox {
  visibility: hidden;
  position: absolute;
  z-index: 20;
  width: 18px;
  height: 18px;
}

label input[type=checkbox].checkbox + span,
label input[type=radio].radiobox + span {
  position: relative;
  z-index: 19;
  display: inline-block;
  margin: 0;
  line-height: 17px;
  min-height: 14px;
  min-width: 14px;
  margin-right: 5px;
}

label input[type=checkbox].checkbox + span:hover,
label input[type=radio].radiobox + span:hover {
  cursor: pointer;
}

label input[type=radio].radiobox + span:before,
label input[type=checkbox].checkbox + span:before {
  font-family: FontAwesome;
  font-size: 12px;
  border-radius: 0;
  content: "\A0";
  /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 1px;
  height: 12px;
  line-height: 12px;
  min-width: 12px;
  margin-right: 5px;
  border: 1px solid #bfbfbf;
  background-color: #f4f4f4;
  font-weight: normal;
  margin-top: -1px;
}

/*
 * RADIO
 */

label input[type=radio].radiobox + span:before {
  content: "\A0";
  /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
}

label input[type=radio].radiobox:checked + span {
  font-weight: bold;
}

/* DEFAULT COLOR */

label input[type=radio].radiobox:checked + span:before {
  content: "\F111";
  /* circle */
  color: #2e7bcc;
}

/* ORANGE COLOR */

label input[type=radio].radiobox.style-3:checked + span:before {
  color: #A90329;
  border-color: #A90329;
}

/* CHROME COLOR */

label input[type=radio].radiobox.style-2:checked + span:before {
  color: #66665e;
  border-color: #4d90fe;
  font-size: 9px;
}

label input[type=radio].radiobox.style-2:checked + span {
  font-weight: normal;
}

/* Style 1 Radio */

label input[type=radio].radiobox.style-1 + span:before {
  font-size: 9px;
  background: #ffffff;
  text-shadow: none;
  box-shadow: none !important;
  border-width: 1px;
  height: 13px;
  line-height: 13px;
  min-width: 13px;
}

label input[type=radio].radiobox.style-1:checked + span:before {
  font-size: 10px;
  color: #333333;
  border-color: #333333;
  background: #ffffff;
}

label input[type=radio].radiobox.style-1:checked + span {
  font-weight: normal;
}

/*
 * RADIO:HOVER & ACTIVE STATES
 */

/* DEFAULT:HOVER radio content --> 2022 */

label:hover input[type=radio].radiobox + span:before,
label:hover input[type=radio].radiobox:checked + span:before {
  color: #2e7bcc;
  border-color: #2e7bcc;
}

/* ORANGE:HOVER */

label:hover input[type=radio].radiobox.style-3 + span:before,
label:hover input[type=radio].radiobox.style-3:checked + span:before {
  color: #A90329;
  border-color: #A90329;
}

/* CHROME:HOVER */

label:hover input[type=radio].radiobox.style-2:checked + span:before {
  color: #66665e;
  border-color: #4d90fe;
}

/* METRO:HOVER */

label:hover input[type=radio].radiobox.style-1:checked + span:before {
  color: #333333;
  border-color: #333333;
  background: #ffffff;
}

label:hover input[type=radio].radiobox.style-1 + span:before {
  color: #333333;
  border-color: #333333;
  background: #ffffff;
}

/* DEFAULT:ACTIVE */

label:active input[type=radio].radiobox + span:before {
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

/*
* RADIO:DISABLE STATES
*/

/* GLOBAL */

label input[type=radio][disabled].radiobox + span,
label input[type=radio][disabled].radiobox:checked + span,
label:hover input[type=radio][disabled].radiobox:checked + span:before {
  color: #a7a7a7;
  cursor: not-allowed;
}

label input[type=radio][disabled].radiobox:checked + span:before {
  content: "\F111";
}

label input[type=radio][disabled].radiobox:checked + span:before,
label input[type=radio][disabled].radiobox + span:before,
label:active input[type=radio][disabled].radiobox:checked + span:before,
label:hover input[type=radio][disabled].radiobox:checked + span:before {
  background: #eee !important;
  border-color: #ccc !important;
  box-shadow: none;
  color: #a7a7a7;
}

/*
 * CHECKBOX
 */

label input[type=checkbox].checkbox + span:before {
  content: "\A0";
  /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
}

label input[type=checkbox].checkbox:checked + span:before {
  content: "\F00C";
}

label input[type=checkbox].checkbox:checked + span {
  font-weight: bold;
}

/* DEFAULT COLOR */

label input[type=checkbox].checkbox:checked + span:before {
  color: #2e7bcc;
}

/* RED COLOR */

label input[type=checkbox].checkbox.style-3:checked + span:before {
  color: #ffffff;
  border-color: #A90329;
  background: #A90329;
}

/* CHROME */

label input[type=checkbox].checkbox.style-2 + span:before {
  background: transparent;
  border-color: #c1c1c1;
  box-shadow: none;
}

label input[type=checkbox].checkbox.style-2:checked + span:before {
  content: "\F00C";
  color: #66665e;
  border-color: #4d90fe;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUQ0MEM4RUFEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUQ0MEM4RUJEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRDQwQzhFOERBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRDQwQzhFOURBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsD/PVAAAAAQSURBVHjaYv7//78vQIABAAlYA05NMPppAAAAAElFTkSuQmCC) #ffffff;
  /*#fefeec*/
}

label input[type=checkbox].checkbox.style-2:checked + span {
  font-weight: normal;
}

/* METRO COLOR */

label input[type=checkbox].checkbox.style-1 + span:before {
  color: #333333;
  background: #ffffff;
  text-shadow: none;
  box-shadow: none !important;
  border-width: 1px;
  height: 12px;
  line-height: 13px;
  min-width: 12px;
}

label input[type=checkbox].checkbox.style-1:checked + span:before {
  color: #333333;
  border-color: #333333;
}

label input[type=checkbox].checkbox.style-1:checked + span {
  font-weight: normal;
}

/*
 * CHECKBOX:HOVER & ACTIVE STATES
 */

label:active input[type=checkbox].checkbox + span:before {
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

/* DEFAULT:HOVER */

label:hover input[type=checkbox].checkbox + span:before {
  color: #2e7bcc;
  border-color: #2e7bcc;
}

/* RED:HOVER*/

label:hover input[type=checkbox].checkbox.style-3 + span:before {
  color: #ffffff;
  border-color: #a90327;
}

/* CHROME:HOVER*/

label:hover input[type=checkbox].checkbox.style-2 + span:before {
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
}

label:hover input[type=checkbox].checkbox.style-2:checked + span:before {
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

/* METRO:HOVER*/

label:hover input[type=checkbox].checkbox.style-1 + span:before {
  border-color: #333333;
}

/* DEFAULT:ACTIVE */

label:active input[type=checkbox].checkbox:checked + span:before {
  color: #ffffff;
  background: #2e7bcc;
  border-color: #2e7bcc;
}

/* RED:ACTIVE */

label:active input[type=checkbox].checkbox.style-3:checked + span:before {
  color: #A90329;
  background: #ffffff;
  border-color: #A90329;
}

/* CHROME:ACTIVE */

label:active input[type=checkbox].checkbox.style-2:checked + span:before {
  color: #66665e;
  background: transparent;
  border-color: #c1c1c1;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:active input[type=checkbox].checkbox.style-2 + span:before {
  color: #66665e;
  background: transparent;
  border-color: #c1c1c1;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

/* METRO:ACTIVE */

label:active input[type=checkbox].checkbox.style-1:checked + span:before {
  color: #ffffff;
  background: #333333;
  border-color: #333333;
}

/*
 * CHECKBOX:DISABLE STATES
 */

/* GLOBAL */

label input[type=checkbox][disabled].checkbox + span,
label input[type=checkbox][disabled].checkbox:checked + span,
label:hover input[type=checkbox][disabled].checkbox:checked + span:before {
  color: #a7a7a7;
  cursor: not-allowed;
}

label input[type=checkbox][disabled].checkbox:checked + span:before {
  content: "\F00C";
  color: #a7a7a7;
}

label input[type=checkbox][disabled].checkbox.style-2:checked + span:before {
  content: "\F00C";
}

label input[type=checkbox][disabled].checkbox:checked + span:before,
label input[type=checkbox][disabled].checkbox + span:before,
label:active input[type=checkbox][disabled].checkbox:checked + span:before,
label:hover input[type=checkbox][disabled].checkbox:checked + span:before {
  background: #eee !important;
  border-color: #ccc !important;
  box-shadow: none;
  color: #a7a7a7;
  box-shadow: none !important;
}

/*
 * Alerts
 */

.alert {
  margin-bottom: 15px;
  margin-top: 0px;
  padding: 5px 15px 5px 34px;
  color: #675100;
  border-width: 0px;
  border-left-width: 5px;
  padding: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}

.alert .close {
  top: 0px;
  right: -5px;
  line-height: 20px;
}

.alert-heading {
  font-weight: 600;
}

.alert-danger {
  border-color: #953b39;
  color: #ffffff;
  background-color: #c26565;
  text-shadow: none;
}

.alert-warning {
  border-color: #e0b66c;
  color: #826430;
  background-color: spin(#efd9b3, 8);
}

.alert-success {
  border-color: #8ac38b;
  color: #356635;
  background-color: spin(#c4e0c4, -20);
}

.alert-info {
  border-color: #9cb4c5;
  color: #305d8c;
  background-color: #d6dde7;
}

/*lo sacamos del main del smartadmin*/

/*
 * USED WITH DEMO
 */

.square {
  display: block;
  float: left;
  margin-right: 10px;
  height: 20px;
  width: 20px;
}

/*
 * RESET BOOTSTRAP DEFAULT IE FILTER
 */

[class^=bg-],
[class*=" bg-"] {
  -webkit-filter: none !important;
          filter: none !important;
}

/*
 * TEXT COLOR
 */

.txt-color-blue {
  color: #57889c !important;
}

.txt-color-blueLight {
  color: #92a2a8 !important;
}

.txt-color-blueDark {
  color: #4c4f53 !important;
}

.txt-color-green {
  color: #356e35 !important;
}

.txt-color-greenLight {
  color: #71843f !important;
}

.txt-color-greenDark {
  color: #496949 !important;
}

.txt-color-red {
  color: #a90329 !important;
}

.txt-color-yellow {
  color: #b09b5b !important;
}

.txt-color-orange {
  color: #b19a6b !important;
}

.txt-color-orangeDark {
  color: #a57225 !important;
}

.txt-color-pink {
  color: #ac5287 !important;
}

.txt-color-pinkDark {
  color: #a8829f !important;
}

.txt-color-purple {
  color: #6e587a !important;
}

.txt-color-darken {
  color: #404040 !important;
}

.txt-color-lighten {
  color: #d5e7ec !important;
}

.txt-color-white {
  color: #ffffff !important;
}

.txt-color-grayDark {
  color: #525252 !important;
}

.txt-color-magenta {
  color: #6e3671 !important;
}

.txt-color-teal {
  color: #568a89 !important;
}

.txt-color-redLight {
  color: #a65858 !important;
}

/*
 * BACKGROUNDS
 */

.bg-color-blue {
  background-color: #57889c !important;
}

.bg-color-blueLight {
  background-color: #92a2a8 !important;
}

.bg-color-blueDark {
  background-color: #4c4f53 !important;
}

.bg-color-green {
  background-color: #356e35 !important;
}

.bg-color-greenLight {
  background-color: #71843f !important;
}

.bg-color-greenDark {
  background-color: #496949 !important;
}

.bg-color-red {
  background-color: #a90329 !important;
}

.bg-color-yellow {
  background-color: #b09b5b !important;
}

.bg-color-orange {
  background-color: #c79121 !important;
}

.bg-color-orangeDark {
  background-color: #a57225 !important;
}

.bg-color-pink {
  background-color: #ac5287 !important;
}

.bg-color-pinkDark {
  background-color: #a8829f !important;
}

.bg-color-purple {
  background-color: #6e587a !important;
}

.bg-color-darken {
  background-color: #404040 !important;
}

.bg-color-lighten {
  background-color: #d5e7ec !important;
}

.bg-color-white {
  background-color: #ffffff !important;
}

.bg-color-grayDark {
  background-color: #525252 !important;
}

.bg-color-magenta {
  background-color: #6e3671 !important;
}

.bg-color-teal {
  background-color: #568a89 !important;
}

.bg-color-redLight {
  background-color: #a65858 !important;
}

/*
 * GENERAL MOBILE (Applies to all resolutions below 979px)
 */

@media (max-width: 979px) {
  /* mobile lock x-scroll for menu */

  html.hidden-menu-mobile-lock {
    overflow-x: hidden;
  }

  /* Force content to spread 100% */

  #main {
    width: 100% !important;
  }

  /* Footer */

  .page-footer {
    padding: 15px 14px 0;
  }

  /* Profile Page */

  .profile-pic {
    float: left;
  }

  .profile-pic > img {
    width: 110px;
    margin-right: 10px;
  }

  .profile-pic + div,
  .profile-pic + div + div {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* added new class per version 1.3 
  html, body {
  	overflow-x: hidden !important;
  }*/

  #fullscreen > :first-child > a {
    display: none !important;
  }

  body.container {
    border: none !important;
    width: 100% !important;
  }

  .inbox-data-message > :first-child {
    height: 50px;
    overflow: hidden;
  }

  .show-stats .show-stat-buttons > :first-child {
    padding-right: 13px;
  }

  .show-stats .show-stat-buttons > :last-child {
    padding-left: 13px;
  }

  .inbox-checkbox-triggered > .btn-group .btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .inbox-body .table-wrap {
    padding: 0px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .inbox-nav-bar {
    padding-left: 5px;
    padding-right: 5px;
  }

  .inbox-data-message > :first-child > :first-child {
    display: block !important;
    font-size: 13px;
  }

  .inbox-table-icon > :first-child {
    margin-top: 12px;
  }

  #inbox-table .inbox-table-icon {
    padding-left: 10px !important;
  }

  /* search header */

  .header-search.pull-right {
    margin-left: 0px;
  }

  /* Visibility */

  .visible-tablet {
    display: inline-block !important;
  }

  .hidden-tablet,
  .display-inline.hidden-tablet {
    display: none !important;
  }

  .jarviswidget header h2 {
    width: 310px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /* dropzone image fix */

  .dropzone .dz-default.dz-message {
    background-size: 100%;
    width: 200px;
    height: 43px;
    margin-left: -112px;
    margin-top: -23.5px;
  }
}

/* MOBILE LAYOUT STARTS HERE */

/*
 * IPAD HORIZONTAL
 */

@media (min-width: 768px) and (max-width: 979px) {
  #main::after {
    /*content: "IPAD HORIZONTAL";*/
  }

  #main {
    margin-left: 0;
  }

  #left-panel {
    left: -220px;
  }

  /* minified adjustment counter */

  .minified #left-panel {
    left: 0;
  }

  /* responsive menu button */

  #hide-menu > :first-child > a {
    margin-top: 5px;
    width: 40px;
  }

  .btn-header a {
    margin-top: 9px !important;
    width: 40px !important;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i::before {
    content: "\F0C9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    position: relative;
    left: 210px;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0px;
  }

  .jarviswidget header h2 {
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /*
   * Header search
   */

  .header-search > input[type=text] {
    margin-top: 9px;
  }
}

/*
 * IPAD VERTICAL
 */

@media (min-width: 768px) and (max-width: 880px) {
  #main::after {
    /*content: "IPAD VERTICAL";*/
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  .no-content-padding {
    margin: 0 -14px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  /* minified adjustment counter */

  .minified #left-panel {
    left: 0;
  }

  /* responsive menu button */

  #hide-menu > :first-child > a,
  .btn-header a {
    margin-top: 5px !important;
    width: 40px !important;
    height: 39px !important;
    line-height: 38px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 200px;
  }

  /* transparent header button */

  .btn-header.transparent a {
    border: none !important;
    background: none;
    margin-left: 0;
    width: 25px !important;
    box-shadow: none !important;
  }

  .btn-header.transparent a:hover {
    color: #A90329;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i::before {
    content: "\F0C9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    position: relative;
    left: 210px;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  .jarviswidget header h2 {
    width: 180px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /*
   * Header search
   */

  .header-search > input[type=text] {
    margin-top: 9px;
  }
}

/*
 * OTHER DEVICES
 */

@media (max-width: 767px) {
  /* Profile Page */

  .profile-pic > img {
    width: 100px;
  }

  #main::after {
    /*content: "OTHER DEVICES";*/
  }

  #main {
    margin-left: 0px;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  /* dashboard microcharts */

  .show-stat-microcharts > div {
    margin-top: 0px !important;
    border-right: none !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* padding adjustment */

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  /* minified adjustment counter */

  .minified #left-panel {
    left: 0;
  }

  /* transparent header button */

  .btn-header.transparent a {
    border: none !important;
    background: none;
    margin-left: 0;
    width: 25px !important;
    box-shadow: none !important;
  }

  .btn-header.transparent a:hover {
    color: #A90329;
  }

  /* responsive menu button */

  #hide-menu > :first-child > a,
  .btn-header a {
    margin-top: 5px !important;
    width: 40px !important;
    height: 39px !important;
    line-height: 38px !important;
  }

  #hide-menu > :first-child > a {
    width: 40px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 175px;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i::before {
    content: "\F0C9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    position: relative;
    left: 210px;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  /*.fixed-navigation #left-panel {
  	position:absolute !important;
  }*/

  body.fixed-navigation.hidden-menu {
    overflow: hidden !important;
  }

  /*
   * fixed ribbon
   */

  .fixed-ribbon #content {
    padding-top: 52px;
  }

  /*
   * header search
   */

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
  }

  .search-mobile .header-search {
    display: block;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 49px;
    background: #333;
    padding: 0 2px;
    box-sizing: border-box;
    left: 0px;
  }

  .search-mobile .header-search > input[type=text] {
    margin-top: 2px;
    height: 45px;
    border-color: #333;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    height: 29px;
    line-height: 29px;
    background: #dddddd;
  }

  .search-mobile .header-search > button {
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  .jarviswidget header h2 {
    width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

/*
 * ANDROID
 */

@media only screen and (min-width: 0px) and (max-width: 679px) {
  /* Profile Page */

  .profile-pic > img {
    width: 90px;
  }

  #main::after {
    /*content: "ANDROID";*/
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  /* dashboard microcharts */

  .show-stat-microcharts > div {
    margin-top: 0px !important;
    border-right: none !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* padding adjustment */

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  /* minified adjustment counter */

  .minified #left-panel {
    left: 0;
  }

  /* header color altered and adjusted for mobile view & contrast */

  #header {
    background: #ffffff;
  }

  #ribbon {
    border-bottom: 1px solid #CFCFCF;
    border-top: 1px solid #E6E6E6;
    background: #f5f5f5;
  }

  #ribbon .breadcrumb a,
  #ribbon .breadcrumb {
    color: #6d6c6c !important;
  }

  #ribbon .breadcrumb > .active,
  #ribbon .breadcrumb li:last-child {
    color: #333 !important;
  }

  /* responsive menu button */

  #hide-menu > :first-child > a,
  .btn-header a {
    margin-top: 5px !important;
    width: 40px !important;
    height: 39px !important;
    line-height: 38px !important;
  }

  #hide-menu > :first-child > a {
    width: 40px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 175px;
  }

  /* transparent header button */

  .btn-header.transparent a {
    border: none !important;
    background: none;
    margin-left: 0;
    width: 25px !important;
    box-shadow: none !important;
  }

  .btn-header.transparent a:hover {
    color: #A90329;
  }

  /* menu btn cont... */

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i::before {
    content: "\F0C9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    position: relative;
    left: 210px;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  /*
   * header search
   */

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
  }

  .search-mobile .header-search {
    display: block;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 49px;
    background: #333;
    padding: 0 2px;
    box-sizing: border-box;
    left: 0px;
  }

  .search-mobile .header-search > input[type=text] {
    margin-top: 2px;
    height: 45px;
    border-color: #333;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    height: 29px;
    line-height: 29px;
    background: #dddddd;
  }

  .search-mobile .header-search > button {
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  .hidden-tablet {
    display: none !important;
  }

  .jarviswidget header h2 {
    width: 300px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

/*
 * IPHONE
 */

@media only screen and (min-width: 320px) and (max-width: 479px) {
  /* Hide headings on phones as its not needed*/

  .page-title {
    display: none;
  }

  /* Profile Page */

  .profile-pic {
    text-align: left;
  }

  .profile-pic > img {
    width: 90px;
    margin-left: 0px;
    top: -25px;
    margin-right: 0px;
  }

  .profile-pic + div > h1 {
    font-size: 20px;
  }

  .profile-pic + div > h1 small {
    font-size: 16px;
  }

  .profile-carousel .carousel-indicators {
    top: 10px;
  }

  #main::after {
    /*content: "IPHONE";*/
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  /* dashboard microcharts */

  .show-stat-microcharts > div {
    margin-top: 0px !important;
    border-right: none !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* padding adjustment */

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  /* minified adjustment counter */

  .minified #left-panel {
    left: 0;
  }

  /* header color altered and adjusted for mobile view & contrast */

  #header {
    background: #ffffff;
  }

  #ribbon {
    border-bottom: 1px solid #cfcfcf;
    border-top: 1px solid #e6e6e6;
    background: #f5f5f5;
  }

  #ribbon .breadcrumb a,
  #ribbon .breadcrumb {
    color: #6d6c6c !important;
  }

  #ribbon .breadcrumb > .active,
  #ribbon .breadcrumb li:last-child {
    color: #333 !important;
  }

  /* lego width adjustment */

  #logo {
    width: 175px;
  }

  #logo-group {
    width: 169px !important;
  }

  /* spark line top */

  #sparks {
    text-align: center;
    background: #e0e0e0;
    padding: 10px 0;
    margin-bottom: 15px;
  }

  #sparks li {
    padding: 0 10px 0 20px;
  }

  /* responsive menu button */

  #hide-menu > :first-child > a,
  .btn-header a {
    margin-top: 5px !important;
    width: 40px !important;
    height: 39px !important;
    line-height: 38px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 175px;
  }

  /* transparent header button */

  .btn-header.transparent a {
    border: none !important;
    background: none;
    margin-left: 0;
    width: 25px !important;
    box-shadow: none !important;
  }

  .btn-header.transparent a:hover {
    color: #A90329;
  }

  #hide-menu > :first-child > a {
    width: 40px !important;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i::before {
    content: "\F0C9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    position: relative;
    left: 210px;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0px;
  }

  /* #*$^& Bootstrap 3 ! */

  .hidden-mobile {
    display: none !important;
  }

  .visible-mobile {
    display: inline-block !important;
  }

  /* activity panel */

  .ajax-notifications {
    height: 250px;
  }

  .ajax-dropdown {
    width: 299px;
    height: 320px;
    left: 0;
    top: 49px;
  }

  .ajax-dropdown:before {
    margin-left: -14px;
  }

  .ajax-dropdown:after {
    margin-left: -13px;
  }

  /*
   * header search
   */

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
    margin-left: 0;
  }

  .search-mobile .header-search {
    display: block;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 49px;
    background: #333;
    padding: 0 2px;
    box-sizing: border-box;
    left: 0px;
  }

  .search-mobile .header-search > input[type=text] {
    margin-top: 2px;
    height: 45px;
    border-color: #333;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    height: 29px;
    line-height: 29px;
    background: #dddddd;
  }

  .search-mobile .header-search > button {
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  /* widget headers width */

  .jarviswidget header h2 {
    width: 135px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

.dt-toolbar {
  display: block;
  position: relative;
  padding: 6px 7px 1px;
  width: 100%;
  float: left;
  border-bottom: 0px solid #ccc;
  background: white;
}

.dt-toolbar-footer {
  background: white;
  font-size: 11px;
  overflow: hidden;
  padding: 5px 10px;
  border-top: 0px solid #ccc;
  -ms-box-shadow: inset 0 1px #fff;
  box-shadow: inset 0 1px #fff;
}

.dt-toolbar > :first-child,
.dt-toolbar-footer > :first-child {
  padding-left: 0px !important;
}

.dt-toolbar > :last-child,
.dt-toolbar-footer > :last-child {
  padding-right: 0px !important;
}

.dt-toolbar-footer > :first-child .dataTables_filter > :only-child,
.dt-toolbar-footer > :first-child .DTTT,
.dt-toolbar-footer > :first-child .pagination,
.dt-toolbar-footer > :first-child .dataTables_length {
  float: left;
  margin-right: 12px;
}

.dt-toolbar-footer > :last-child .dataTables_filter > :only-child,
.dt-toolbar-footer > :last-child .DTTT,
.dt-toolbar-footer > :last-child .pagination,
.dt-toolbar-footer > :last-child .dataTables_length {
  float: right;
}

div.dataTables_info {
  padding-top: 6px;
  font-size: 13px;
  font-weight: normal;
  font-style: italic;
  color: #969696;
}

div.dataTables_length label {
  font-weight: normal;
  float: left;
  text-align: left;
}

div.dataTables_length select {
  width: 75px;
}

div.dataTables_filter label {
  font-weight: normal;
  float: right;
}

div.dataTables_filter input {
  width: 16em;
}

div.dataTables_info {
  padding-top: 8px;
}

div.dataTables_paginate {
  float: right;
  margin: 0;
}

div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
}

.dataTables_filter {
  float: left;
  width: 100%;
}

.dataTables_filter .input-group-addon {
  width: 32px;
  margin-top: 0px;
  float: left;
  height: 32px;
  padding-top: 8px;
}

.dataTables_filter .input-group-addon + .form-control {
  float: left;
  height: 32px;
}

table.table-bordered.dataTable {
  border-collapse: separate !important;
}

table.table-bordered thead th,
table.table-bordered thead td {
  border-left-width: 0;
  border-top-width: 0;
}

table.table-bordered tbody th,
table.table-bordered tbody td {
  border-left-width: 0;
  border-bottom-width: 0;
}

table.table-bordered th:last-child,
table.table-bordered td:last-child {
  border-right-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}

table.dataTable td,
table.dataTable th {
  box-sizing: content-box;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
}

table.dataTable thead .sorting {
  background: url(/images/sort_both.png?3444d9d5d1039b8b619d05efd687a6a9) no-repeat center right;
}

table.dataTable thead .sorting_asc {
  background: url(/images/sort_asc.png?c4fc0214ddf2b82117aefeea28f39bab) no-repeat center right;
}

table.dataTable thead .sorting_desc {
  background: url(/images/sort_desc.png?aa6c079759e4cdbb3b14cd960047cc93) no-repeat center right;
}

table.dataTable thead .sorting_asc_disabled {
  background: url(/images/sort_asc_disabled.png?fab39f2771ab597b747dd401a85acad4) no-repeat center right;
}

table.dataTable thead .sorting_desc_disabled {
  background: url(/images/sort_desc_disabled.png?76d94c53ff582a64732e992bf3205e60) no-repeat center right;
}

table.dataTable thead > tr > th {
  padding-left: 18px;
  padding-right: 18px;
}

table.dataTable th:active {
  outline: none;
}

.no-padding > table,
.no-padding .dataTables_wrapper table {
  border: none !important;
  margin-bottom: 0px !important;
  border-bottom-width: 0px !important;
}

.no-padding > table tr td:last-child,
.no-padding > table tr th:last-child,
.no-padding .dataTables_wrapper table tr td:last-child,
.no-padding .dataTables_wrapper table tr th:last-child {
  border-right: none !important;
}

.no-padding > table tr td:first-child,
.no-padding > table tr th:first-child,
.no-padding .dataTables_wrapper table tr td:first-child,
.no-padding .dataTables_wrapper table tr th:first-child {
  border-left: none !important;
}

.no-padding .dataTables_wrapper table tbody tr:last-child td {
  border-bottom: 0;
}

/*
* LTR filter position
*/

.dt-toolbar > :first-child .dataTables_filter > :only-child,
.dt-toolbar > :first-child .DTTT,
.dt-toolbar > :first-child .pagination,
.dt-toolbar > :first-child .dataTables_length {
  float: left !important;
}

.dt-toolbar > :last-child .dataTables_filter > :only-child,
.dt-toolbar > :last-child .DTTT,
.dt-toolbar > :last-child .pagination,
.dt-toolbar > :last-child .dataTables_length {
  float: right;
}

/* bottom portion */

.dt-toolbar-footer > :first-child .dataTables_filter > :only-child,
.dt-toolbar-footer > :first-child .DTTT,
.dt-toolbar-footer > :first-child .pagination,
.dt-toolbar-footer > :first-child .dataTables_length {
  float: left;
  margin-right: 12px;
}

.dt-toolbar-footer > :last-child .dataTables_filter > :only-child,
.dt-toolbar-footer > :last-child .DTTT,
.dt-toolbar-footer > :last-child .pagination,
.dt-toolbar-footer > :last-child .dataTables_length {
  float: right;
}

/* custom font icon */

.dataTable tbody .details-control {
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.dataTable tbody .details-control:before {
  font-family: "FontAwesome";
  content: "\F0FE";
  font-size: 1.4em;
  color: #739e73;
}

.dataTable tbody .shown .details-control:before {
  content: "\F146";
  color: #A90329;
}

.dataTable tbody .shown + tr > td {
  padding: 0px !important;
}

.dataTable tbody .shown {
  background: rgba(205, 209, 98, 0.2) !important;
}

.dataTable tbody .shown > td {
  background: none !important;
}

.dataTable tbody .shown + tr > td > table > tbody > tr:last-child {
  border-bottom: 1px solid #c2c2c2;
}

.dataTable tbody .shown + tr > td > table tbody tr {
  background-color: rgba(205, 209, 98, 0.05) !important;
}

/* jquery.Jcrop.css v0.9.12 - MIT License */

/*
  The outer-most container in a typical Jcrop instance
  If you are having difficulty with formatting related to styles
  on a parent element, place any fixes here or in a like selector

  You can also style this element if you want to add a border, etc
  A better method for styling can be seen below with .jcrop-light
  (Add a class to the holder and style elements for that extended class)
*/

.jcrop-holder {
  direction: ltr;
  text-align: left;
}

/* Selection Border */

.jcrop-vline,
.jcrop-hline {
  background: #ffffff url(/images/Jcrop.gif?7a4b4c6ebdb549fcbe47408f9457493e);
  font-size: 0;
  position: absolute;
}

.jcrop-vline {
  height: 100%;
  width: 1px !important;
}

.jcrop-vline.right {
  right: 0;
}

.jcrop-hline {
  height: 1px !important;
  width: 100%;
}

.jcrop-hline.bottom {
  bottom: 0;
}

.jcrop-tracker {
  height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.jcrop-handle {
  background-color: #333333;
  border: 1px #eeeeee solid;
  width: 7px;
  height: 7px;
  font-size: 1px;
}

.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px;
}

.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%;
}

.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%;
}

.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0;
}

.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0;
}

.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px;
}

/* Dragbars */

.jcrop-dragbar.ord-n,
.jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%;
}

.jcrop-dragbar.ord-e,
.jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px;
}

.jcrop-dragbar.ord-n {
  margin-top: -4px;
}

.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}

.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}

.jcrop-dragbar.ord-w {
  margin-left: -4px;
}

/* The "jcrop-light" class/extension */

.jcrop-light .jcrop-vline,
.jcrop-light .jcrop-hline {
  background: #ffffff;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000000;
  border-color: #ffffff;
  border-radius: 3px;
}

/* The "jcrop-dark" class/extension */

.jcrop-dark .jcrop-vline,
.jcrop-dark .jcrop-hline {
  background: #000000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 3px;
}

/* Simple macro to turn off the antlines */

.solid-line .jcrop-vline,
.solid-line .jcrop-hline {
  background: #ffffff;
}

/* Fix for twitter bootstrap et al. */

.jcrop-holder {
  display: inline-block;
  float: left;
  margin-bottom: 20px;
}

.modal .jcrop-holder {
  display: block;
  float: none !important;
  margin: 0px !important;
}

.jcrop-holder img,
img.jcrop-preview {
  max-width: none;
}

/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/

.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

.select2-container .select2-choice {
  display: block;
  height: 32px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  white-space: nowrap;
  line-height: 32px;
  color: #444;
  text-decoration: none;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
}

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  /*background: url("../img/select2.png") right top no-repeat;*/
  cursor: pointer;
  outline: 0;
}

.select2-container .select2-choice abbr:hover {
  /*background-position: right -11px;*/
  cursor: pointer;
}

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.select2-container .select2-choice .select2-arrow {
  display: none;
  width: 34px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
  background-clip: padding-box;
  background: #eee;
}

.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-size: 14px;
}

.select2-container .select2-choice .select2-arrow b:before {
  content: "\F107";
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
}

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #ccc;
}

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}

.select2-container.select2 {
  width: 100%;
}

.select2-container :before {
  padding: 2px;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  /* webkit */
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background: #fff;
  filter: alpha(opacity=0);
}

.select2-drop {
  margin-top: -1px;
  width: 100%;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-top: 0;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-auto-width {
  border-top: 1px solid #ccc;
  width: auto;
}

.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}

.select2-drop.select2-drop-above {
  margin-bottom: 0px;
  border-top: 1px solid #5D98CC;
  border-top-width: 3px;
  border-bottom: 0;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-active {
  border: 1px solid #5D98CC;
  border-top: none;
  border-bottom-width: 3px;
}

.select2-drop.select2-drop-above.select2-drop-active {
  border-top-width: 3px;
}

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 29px;
  padding: 6px 20px 5px 10px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  box-shadow: none;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #fff), color-stop(99%, #eee));
  background: linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-search:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\F002";
  top: 25%;
  right: 10px;
  color: #686868 !important;
}

.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}

.select2-drop.select2-drop-above .select2-search:before {
  top: 34%;
}

.select2-search input.select2-active {
  background: #fff url(/images/select2-spinner.gif?7b9776076d5fceef4993b55c9383dedd) no-repeat 100%;
  background: url(/images/select2-spinner.gif?7b9776076d5fceef4993b55c9383dedd) no-repeat 100%, -webkit-gradient(linear, left top, left bottom, color-stop(85%, #fff), color-stop(99%, #eee));
  background: url(/images/select2-spinner.gif?7b9776076d5fceef4993b55c9383dedd) no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5D98CC;
  outline: none;
}

.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #fff;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5D98CC;
  border-top-color: transparent;
}

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  -webkit-filter: none;
          filter: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}

/* results */

.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px;
}

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}

.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select2-results .select2-highlighted {
  background: #3276b1;
  color: #fff;
}

.select2-results li em {
  background: #feffde;
  font-style: normal;
}

.select2-results .select2-highlighted em {
  background: transparent;
}

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding: 3px 5px;
}

.select2-no-results {
  padding-left: 20px;
}

.select2-no-results:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F05A";
  margin-right: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/

.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
  display: none;
}

.select2-more-results.select2-active {
  background: #f4f4f4 url(/images/select2-spinner.gif?7b9776076d5fceef4993b55c9383dedd) no-repeat 100%;
}

.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}

/* multiselect */

.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #ccc;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
  min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5D98CC;
  outline: none;
}

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  box-shadow: none;
  background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url(/images/select2-spinner.gif?7b9776076d5fceef4993b55c9383dedd) no-repeat 100% !important;
}

.select2-default {
  color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 1px 28px 1px 8px;
  margin: 4px 0 3px 5px;
  position: relative;
  line-height: 18px;
  color: #fff;
  cursor: default;
  border: 1px solid #2a6395;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #3276b1;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}

.select2-container-multi .select2-choices .select2-search-choice-focus {
  opacity: 0.8;
}

.select2-search-choice-close {
  display: block;
  min-width: 21px;
  min-height: 20px;
  position: absolute;
  right: 3px;
  top: 3px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 12px;
  text-decoration: none !important;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.select2-search-choice-close:before {
  color: #ffffff;
  content: "\F057";
}

.select2-container-multi .select2-search-choice-close {
  display: block;
  top: 0;
  right: 0;
  padding: 3px 4px 3px 6px;
}

.select2-container-multi .select2-search-choice-close:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}*/

/* disabled styles */

.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px;
  border: 1px solid #4a90cc;
  background-image: none;
  background-color: #86b4dd;
  cursor: not-allowed;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}

/* end multiselect */

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}

.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

.select2-display-none {
  display: none;
}

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}

/*
 * ADJUSTMENTS
 */

.has-error .select2-choice,
.has-error .select2-container .select2-choice .select2-arrow,
.has-error .select2-container-multi .select2-choices {
  border-color: #b94a48;
}

.has-error .select2-container .select2-choice .select2-arrow {
  background: #f2dede;
  color: #b94a48;
}

.has-error .select2-dropdown-open .select2-choice {
  border-color: #5D98CC !important;
}

.select2-drop.select2-drop-above.select2-drop-active {
  margin-top: 2px;
}

.editable-input > .select2-container {
  min-width: 200px;
}

/*Messagebox */

.divMessageBox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000;
}

/*
.MessageIE {
  background-image: url("../img/bg.png");    
}*/

.MessageBoxContainer {
  position: relative;
  top: 35%;
  color: white;
  position: relative;
  width: 100%;
  background-color: #232323;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
}

.MessageBoxContainer input {
  width: 50%;
  padding: 5px;
}

.MessageBoxContainer select {
  width: 50%;
  padding: 5px;
}

.MessageBoxMiddle {
  position: relative;
  left: 20%;
  width: 60%;
}

.MessageBoxMiddle .MsgTitle {
  letter-spacing: -1px;
  font-size: 24px;
  font-weight: 300;
}

.MessageBoxMiddle .pText {
  font-size: 13px;
}

.MessageBoxButtonSection {
  width: 100%;
  height: 30px;
}

.MessageBoxButtonSection button {
  float: right;
  margin-right: 7px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13px;
  font-weight: bold;
}

/* End of MessageBox */

.LoadingBoxContainer {
  position: relative;
  top: 20%;
  color: white;
  position: relative;
  width: 100%;
  background-color: #232323;
}

.LoadingBoxContainer .MsgTitle {
  font-size: 26px;
}

.LoadingBoxContainer .pText {
  font-style: 30px;
}

.LoadingBoxMiddle {
  position: relative;
  left: 20%;
  width: 50%;
  padding: 10px;
}

#LoadingPoints {
  position: absolute;
}

/* bigBoxes */

.bigBox {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: #004d60;
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  width: 390px;
  height: 150px;
  color: white;
  z-index: 99999;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  border-left: 5px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.bigBox span {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1px;
  padding: 5px 0 !important;
  display: block;
}

.bigBox p {
  font-size: 13px;
  margin-top: 10px;
}

.bigBox .bigboxicon {
  font-size: 30px;
  text-align: left;
  position: absolute;
  top: 120px;
  left: 6px;
  z-index: 0;
}

.bigBox .bigboxnumber {
  width: 100%;
  text-align: right;
  font-size: 25px;
}

#divMiniIcons {
  position: fixed;
  width: 415px;
  right: 10px;
  bottom: 180px;
  z-index: 9999;
  float: right;
}

#divMiniIcons .cajita {
  text-align: center;
  vertical-align: middle;
  padding: 4px 6px;
  color: #FFF;
  float: right;
  cursor: pointer;
  display: block;
  background-color: #F00;
  font-size: 17px;
  margin-left: 4px;
  margin-top: 5px;
}

#divMiniIcons .cajita:active {
  top: 1px;
  left: 1px;
  position: relative;
}

.botClose {
  position: absolute;
  right: 10px;
  height: 16px;
  width: 15px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.5;
  display: block;
  top: 15px;
}

.botClose:hover {
  opacity: 1;
}

.cajita img {
  width: 23px;
  height: 23px;
  padding-left: 3px;
  padding-top: 3px;
}

/* End of  bigBoxes */

/* SmallBox */

#divSmallBoxes {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.SmallBox {
  position: absolute;
  right: 5px;
  top: 20px;
  width: 420px;
  color: white;
  z-index: 9999;
  overflow: hidden;
  border: 1px solid transparent;
}

.SmallBox:hover {
  border: 1px solid #fff;
  cursor: pointer;
}

.SmallBox .foto {
  font-size: 50px;
  position: absolute;
  left: 17px;
}

.SmallBox .textoFull {
  width: 93%;
  float: left;
  padding-left: 20px;
}

.SmallBox .textoFoto {
  width: 78%;
  margin: 3px 20px 3px 80px;
  float: left;
}

.SmallBox span {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1px;
  display: block;
  margin: 4px 0;
}

.SmallBox p {
  font-size: 13px;
  margin-top: 2px;
}

.miniPic {
  position: absolute;
  bottom: 8px;
  right: 9px;
}

.miniIcono {
  height: 100%;
  font-size: 20px;
}

/* End of SmallBox */

#pageslide {
  /* These styles MUST be included. Do not change. */
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  /* Specify the width of your pageslide here */
  width: 305px;
  padding: 20px;
  /* These styles are optional, and describe how the pageslide will look */
  background-color: #004d60;
  color: #fff;
  -webkit-box-shadow: inset 0 0 5px 5px #222;
  -moz-shadow: inset 0 0 0px 0px #222;
  box-shadow: inset 0 0 0px 0px #222;
}

.purehtml {
  color: white;
  font-size: 16px;
}

/* Mobile Phones */

@media screen and (max-width: 450px) and (max-width: 767px) {
  /* SmallBox Responsive */

  #divSmallBoxes {
    position: fixed;
    width: 90%;
    right: 0;
    top: 0;
  }

  .SmallBox {
    width: 95%;
  }

  .SmallBox:hover {
    box-shadow: 0px 0px 10px #888888;
    cursor: pointer;
  }

  .SmallBox span {
    font-size: 16px;
    /*font-weight: bold;*/
  }

  .SmallBox p {
    font-size: 12px;
    margin-top: 2px;
  }

  .SmallBox .textoFull {
    width: 93%;
    float: left;
    padding-left: 20px;
  }

  .SmallBox .textoFoto {
    width: 55%;
    margin: 3px 20px 3px 80px;
    float: left;
  }

  /* End of SmallBox Responsive*/

  /* bigBoxes Responsive */

  .bigBox {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #004d60;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    width: 88%;
    height: 150px;
    color: white;
    z-index: 99999;
  }

  /* End of  bigBoxes  Responsive */

  /*Messagebox Responsive */

  .divMessageBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
  }

  .MessageBoxContainer {
    position: relative;
    top: 25%;
    color: white;
    position: relative;
    width: 100%;
    background-color: #232323;
  }

  .MessageBoxMiddle {
    position: relative;
    left: 0;
    width: 100%;
    padding: 3px;
  }

  .MessageBoxMiddle .MsgTitle {
    font-size: 22px;
  }

  .MessageBoxMiddle .pText {
    font-style: 10px;
  }

  .MessageBoxContainer input {
    width: 50%;
    padding: 5px;
  }

  .MessageBoxContainer select {
    width: 50%;
    padding: 5px;
  }

  .MessageBoxButtonSection {
    width: 100%;
    height: 30px;
  }

  .MessageBoxButtonSection button {
    float: right;
    margin-right: 5px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* End of MessageBox Responsive */
}

/* Animations */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

/*
 *  CSS imita web pública carolina
 */

a:hover {
  color: #eb3b3b;
  text-decoration: none;
}

a:active {
  color: #eb3b3b;
  text-decoration: none;
}

.success {
  background-color: #739e73;
}

.danger {
  background-color: #A90329;
}

.txt-color-orangeDark {
  color: #C79121;
}

.links-grey,
#footer .paneles-footer a:not(.btn),
.cont-publica .breadcrumb a,
.cont-publica .sidebar ul li a {
  color: #808080;
}

.links-grey:hover,
#footer .paneles-footer a:hover:not(.btn),
.cont-publica .breadcrumb a:hover,
.cont-publica .sidebar ul li a:hover {
  color: #eb3b3b;
}

.smart-form fieldset.heading {
  padding-top: 0px;
}

.smart-form input .tooltip {
  width: 0px;
}

.smart-form .table-content .input-group-addon {
  box-sizing: border-box;
}

.smart-form .table-content .dt-toolbar {
  padding-bottom: 10px;
  padding-left: 0px;
}

.smart-form span.label {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.radio-center .radio i {
  left: 30px;
}

/*.widget_nav_menu a {
  padding: 4px 0px 5px 4px;
}*/

/*
Header
*/

.fa.fa-menu {
  font-size: 20px;
}

.subcontent {
  margin-bottom: 50px;
}

#header_meta {
  background-color: #f4f4f4;
  border-bottom: 1px solid #eeeeee;
}

#menu-toggle {
  position: relative;
}

#menu-toggle a {
  background-color: #fff;
  color: #333;
  border: 1px solid #eeeeee;
  position: absolute;
  box-sizing: border-box;
  padding: 13px;
  height: 46px;
  width: 46px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  right: 0;
  top: 30px;
  margin-top: -23px;
  z-index: 10000;
  font-size: 20px;
}

#menu-toggle a:hover {
  background-color: #a81010;
  color: #ffffff;
  border-color: #a81010;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.social_bookmarks {
  float: right;
  margin-bottom: 0;
}

.social_bookmarks li {
  display: inline-block;
  list-style: none;
}

.social_bookmarks li:not(:last-child) {
  border-right: 1px solid #f4f4f4;
}

.social_bookmarks .btn {
  opacity: 0.65;
  width: 30px;
  line-height: 30px;
  outline: none;
  min-height: 30px;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  color: #ffffff;
  font-size: 13px;
  border-radius: 0;
  border: 0;
}

.social_bookmarks .btn-facebook {
  background-color: #37589b;
}

.social_bookmarks .btn-twitter {
  background-color: #46d4fe;
}

.social_bookmarks .btn-youtube {
  background-color: #a72b1d;
}

.social_bookmarks .btn-flickr {
  background-color: #ff0086;
}

.social_bookmarks .btn-linkedin {
  background-color: #419cca;
}

.social_bookmarks .btn-feed {
  background-color: #ffa133;
}

.social_bookmarks .btn-instagram {
  background-color: transparent;
  color: #444;
}

.social_bookmarks .btn-instagram:hover {
  color: #fff;
  background-color: #a67658;
}

.social_bookmarks .btn-contacto {
  background-color: transparent;
  color: #444;
}

.social_bookmarks .btn-contacto:hover {
  color: #fff;
  background-color: #9fae37;
}

.social_bookmarks .btn:hover {
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  webkit-transition: all 0.3s ease-out;
}

.social_bookmarks.sb-footer {
  float: left;
  margin-top: 20px;
  font-size: 11px;
}

.social_bookmarks.sb-footer a.btn {
  color: #ffffff;
}

/*

body  {font-family: $font-family-base;
       font-size:$font-size-base;
}
*/

/*
#left-panel {
  -webkit-transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
  transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
  -webkit-transform: translate(0px, 0px) translateZ(0px);
}

.hidden-menu {

  #left-panel {

    position: absolute;
    display: block !important;
    z-index: 100;
    background-color: white;
  }
}

html.hidden-menu-mobile-lock { overflow-x: hidden; }
*/

.form-header {
  margin: 15px 14px 20px;
  border-bottom: none;
  display: block;
  color: #646464;
  font-size: 20px;
  font-weight: 400;
}

.form-header + form fieldset:first-of-type {
  padding-top: 0px;
}

.cont-publica {
  width: 100%;
  max-width: 1220px;
  margin-bottom: 80px;
}

.cont-publica#header_main {
  padding-top: 15px;
  margin-bottom: 20px;
}

.cont-publica .border-bottom {
  border-bottom: 1px solid #ddd;
}

.cont-publica .panel-title {
  font-size: 13px;
}

.cont-publica h2 {
  font-size: 20px;
  font-weight: 600;
}

.cont-publica h4 {
  font-size: 16px;
  font-weight: 600;
}

.cont-publica h5 {
  font-size: 13px;
  font-weight: bolder;
}

.cont-publica h6 {
  font-size: 13px;
  color: #a81010;
  font-weight: 600;
}

.cont-publica .sidebar {
  display: inline-block;
  float: left;
  padding-right: 30px;
  padding-left: 10px;
  border-right: solid 1px #d6d6d6;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 12px;
  min-width: 200px;
}

.cont-publica .sidebar ul {
  list-style: none outside;
  padding-left: 0px;
}

.cont-publica .sidebar ul li {
  min-height: 20px;
  text-align: right;
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 1.1em;
}

.cont-publica .sidebar ul li a {
  line-height: 21px;
}

.cont-publica .sidebar ul li a.active {
  color: #333333;
  font-weight: bold;
}

.cont-publica .sidebar ul .submenu {
  font-style: italic;
  font-size: 11px;
  border-top: 1px solid #ddd;
}

.cont-publica .sidebar ul .submenu li {
  min-height: 17.5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.cont-publica .sidebar ul i {
  position: absolute;
  margin-right: -30px;
  right: 40px;
}

.cont-publica #botones-cabecera {
  padding-top: 10px;
  padding-bottom: 10px;
  /*    a {
        &:not(.btn) {
          @extend .links-grey;
        }
      }*/
}

.cont-publica .content {
  min-height: 600px;
}

.cont-publica .content .subcontent {
  min-height: inherit;
}

.cont-publica .content .panel-programas {
  padding-left: 30px;
  padding-right: 10px;
}

.cont-publica .content .panel-programas .texto-programa p.prog-ent {
  color: #333333;
}

/* footer */

#footer {
  padding-top: 50px;
  padding-bottom: 30px;
  min-height: 280px;
  background-color: #eeeeee;
}

#footer .paneles-footer {
  padding-left: 30px;
  padding-right: 30px;
}

#footer .paneles-footer #footer-font-smaller {
  font-size: 10px;
}

#footer .paneles-footer h5 {
  text-transform: uppercase;
  font-weight: bolder;
  color: #555555;
}

/*tablas de contenidos*/

.table-content {
  margin: 20px;
  min-height: 300px;
}

.table-content .table thead {
  background-color: #999999;
  color: #ffffff;
}

.table-content .table thead tr th:not(.col-button) {
  padding-left: 15px;
  text-align: left;
}

.table-content .table thead tr th.col-button {
  text-align: center;
}

.table-content .table tbody tr td:not(.col-button) {
  padding-left: 15px;
  text-align: left;
}

.table-content .table tbody tr td.col-button {
  text-align: center;
}

.table-content .table tbody tr td.col-button a {
  margin-left: 5px;
}

.table-content .table tbody tr.disabled {
  color: #999999;
}

.mobile-view-activated .container.cont-publica .row {
  margin-left: 0px;
  margin-right: 0px;
}

.mobile-view-activated .container.cont-publica .row .col-md-8,
.mobile-view-activated .container.cont-publica .row .col-sm-6,
.mobile-view-activated .container.cont-publica .row .col-xs-12,
.mobile-view-activated .container.cont-publica .row .col-md-4 {
  padding-left: 0px;
  padding-right: 0px;
}

.mobile-view-activated .container.cont-publica .panel-programas {
  padding-left: 0px;
}

.btn-lista {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  padding: 5px;
}

.btn-lista:focus,
.btn-lista.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-lista:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-lista:active,
.btn-lista.active,
.open > .btn-lista.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-lista:active:hover,
.btn-lista:active:focus,
.btn-lista:active.focus,
.btn-lista.active:hover,
.btn-lista.active:focus,
.btn-lista.active.focus,
.open > .btn-lista.dropdown-toggle:hover,
.open > .btn-lista.dropdown-toggle:focus,
.open > .btn-lista.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-lista:active,
.btn-lista.active,
.open > .btn-lista.dropdown-toggle {
  background-image: none;
}

.btn-lista.disabled:hover,
.btn-lista.disabled:focus,
.btn-lista.disabled.focus,
.btn-lista[disabled]:hover,
.btn-lista[disabled]:focus,
.btn-lista[disabled].focus,
fieldset[disabled] .btn-lista:hover,
fieldset[disabled] .btn-lista:focus,
fieldset[disabled] .btn-lista.focus {
  background-color: #fff;
  border-color: #ccc;
}

.btn-lista .badge {
  color: #fff;
  background-color: #333;
}

.btn-lista.edit {
  color: #356e35;
}

.btn-lista.edit:hover {
  background-color: #356e35;
  color: #ffffff;
}

.btn-lista.delete {
  color: #a90329;
}

.btn-lista.delete:hover {
  background-color: #a90329;
  color: #ffffff;
}

.btn-lista.view {
  color: #c79121;
}

.btn-lista.view:hover {
  background-color: #c79121;
  color: #ffffff;
}

.btn-lista.new {
  color: #a57225;
}

.btn-lista.new:hover {
  background-color: #a57225;
  color: #ffffff;
}

.btn-lista.blue {
  color: #57889c;
}

.btn-lista.blue:hover {
  background-color: #57889c;
  color: #ffffff;
}

.btn-lista:not(:first-child) {
  margin-left: 5px;
}

.btn-volver {
  background-color: #999999;
  color: #ffffff;
}

.btn-volver:hover {
  background-color: #555555;
  color: #ffffff;
}

a.btn,
button.btn {
  font-size: 12px;
}

.select2-choices,
.select2-results,
.select2-chosen {
  font-size: 12px;
}

.check-margin-top .checkbox {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

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

.smart-form .input input[disabled=disabled] {
  background-color: #eeeeee;
}

.smart-form .input select[disabled=disabled] {
  background-color: #eeeeee;
}

.smart-form input[disabled=disabled] + i {
  background-color: #eeeeee;
}

.smart-form input[readonly=readonly] {
  background-color: #eeeeee;
}

.smart-form select[disabled=disabled] {
  background-color: #eeeeee;
}

.tooltip.in {
  opacity: 1;
}

.tooltip i {
  color: #739e73;
}

.checkbox.prec-tooltip,
.select.prec-tooltip {
  display: inline-block;
}

.ui-datepicker {
  background-color: white;
  webkit-box-shadow: 2px 2px 30px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 30px 1px rgba(0, 0, 0, 0.75);
}

.form-group.required .control-label:after {
  content: "*";
  color: red;
}

a.point_hover:hover {
  cursor: pointer;
}

.content #cabecera-programa {
  min-height: 100px;
  margin-bottom: 20px;
}

.content #cabecera-programa h4 {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 10px;
}

.content #cabecera-programa > div {
  min-height: 100px;
}

.content #cabecera-programa > div #boton-container a:first-child {
  margin-right: 5px;
}

.content #cabecera-programa > div h5 span {
  padding-left: 10px;
}

.content .row {
  margin-left: 0px;
  margin-right: 0px;
}

.content .row.row-programa {
  padding-bottom: 5px;
  padding-top: 5px;
}

.content .row.row-programa:nth-child(odd) {
  background-color: #f4f4f4;
}

.content .row.row-programa .boton-programa .btn {
  margin-top: 9px;
}

.content .row.row-programa .texto-programa p {
  margin-bottom: 0px;
}

.content .row.row-programa .texto-programa p a:hover {
  color: #eb3b3b;
  text-decoration: none;
}

.content .tabs-left {
  /*    a:not(.btn){@extend .links-grey;
      }*/
}

.content .tabs-left .tab-content {
  margin-left: 20%;
}

.content .tabs-left .tab-content .epigrafe-content {
  text-align: justify;
}

.content .tabs-left .tab-content .epigrafe-content table {
  width: 100%;
  text-align: left;
  font-size: 12px;
}

.content .tabs-left .tab-content .epigrafe-content table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.content .tabs-left .tab-content .epigrafe-content table > tbody tr td {
  padding: 5px;
  /*
  &:first-child {
    font-weight: bolder;
    width: 40%;
  }
  */
}

.content .tabs-left .tab-content .tab-pane ol li,
.content .tabs-left .tab-content .tab-pane ul li {
  margin-bottom: 5px;
}

.content .tabs-left .tab-content .tab-pane.show-pane {
  opacity: 1;
  display: block;
}

.content .tabs-left .tab-content .tab-pane#tab2 table > tbody tr td:first-child {
  font-weight: bolder;
  width: 40%;
}

.content .tabs-left .tab-content.content-programa a:hover {
  color: #eb3b3b;
  text-decoration: none;
}

.content .tabs-left .nav-tabs {
  max-width: 18%;
}

/*
 * Client page forms
 */

.client-form header {
  padding: 15px 13px;
  margin: 0;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  background: rgba(248, 248, 248, 0.9);
}

#login-page body {
  margin-left: 0px !important;
  padding-top: 69px !important;
}

.upload-foto {
  background-image: url("/img/upload_foto.png");
  background-position: top;
  background-repeat: no-repeat;
  height: 200px;
  padding-top: 120px;
}

.upload-foto p {
  font-size: 20px;
  text-align: center;
}

.jcrop-keymgr {
  opacity: 0;
}

.jcrop-centered {
  display: inline-block !important;
}

.crop-image-wrapper {
  text-align: center;
}

.cand_content {
  padding: 20px;
  font-size: 13px;
  text-align: justify;
}

.cand_content .subheading {
  font-size: 14px;
  font-weight: bolder;
  font-style: italic;
  color: #646464;
  margin-bottom: 20px;
}

.dropdown-menu li.disabled a {
  pointer-events: none;
}

.combodate select {
  font-size: 13px;
}

.combodate select.form-control {
  display: inline-block;
  border-radius: 0px;
}

/*!
 * FullCalendar v3.1.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */

.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "\BB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "\D7";
  font-size: 200%;
  top: 6%;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
  /* force height to include the border and padding */
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */

.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* icons in buttons */

.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 0.2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6));
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* unthemed */

.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}

/* jqui themed */

.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/

a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* TODO: move to agenda/basic */

.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.3;
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */

.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}

/*.fc-event .fc-content {
	position: relative;
	z-index: 2;
}*/

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */

.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */

.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-day-grid-event {
  margin-top: 2px;
  margin-bottom: 2px;
}

/*.fc-day-grid-event .fc-content { !* force events to be one-line tall *!
	white-space: nowrap;
	overflow: hidden;
}*/

/* resizer (cursor devices) */

/* left resizer  */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
  text-align: center;
}

/*.fc-toolbar.fc-header-toolbar {
	margin-bottom: 1em;
}*/

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

/*.fc-toolbar .fc-left {
	float: left;
}

.fc-toolbar .fc-right {
	float: right;
}*/

/*
.fc-toolbar .fc-center {
	display: inline-block;
}
*/

/* the things within each left/right/center section */

.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: 0.75em;
}

/* the first thing within each left/center/right section */

.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */

/*
.fc-toolbar h2 {
	margin: 0;
}
*/

/* button layering (for border precedence) */

.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */

/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */

.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 7em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */

.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */

.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
  margin-top: 1px;
  margin-bottom: 1px;
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\A0-\A0";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/

/* possibly reusable */

.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */

.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */

.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */

.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */

.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item:hover td {
  background-color: #f5f5f5;
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */

.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */

.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

.fc-header-toolbar {
  min-height: 45px;
  border-color: #45474b;
  background: #4c4f53;
  color: #fff;
  border: 1px solid;
  height: 34px;
  line-height: 40px;
  padding-bottom: 1em;
}

.fc-header-toolbar .fc-left {
  float: left;
  width: 25%;
  text-align: left;
  /*añado*/
  padding-top: 12px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: top;
}

.fc-header-toolbar .fc-left h2 {
  margin: 0;
  margin-top: 0;
  white-space: nowrap;
}

.fc-header-toolbar .fc-center {
  /*añado*/
  padding-top: 12px;
  text-align: center;
  display: inline-block;
}

.fc-header-toolbar .fc-right {
  float: right;
  width: 25%;
  text-align: right;
  /*añado*/
  padding-top: 12px;
  padding-right: 10px;
}

.fc-header-toolbar .fc-right .fc-button-group {
  float: right;
}

.fc-header-toolbar .fc-button {
  margin-bottom: 1em;
  vertical-align: top;
  margin-right: -1px;
  position: relative;
  display: inline-block;
  padding: 0 0.4em;
  overflow: hidden;
  height: 2.2em;
  line-height: 2.2em;
  white-space: nowrap;
  cursor: pointer;
}

.fc-header-toolbar .fc-button .fc-icon {
  margin: 0 0.1em;
  font-family: "Courier New", Courier, monospace;
  vertical-align: baseline;
  padding-top: 7px;
  /* for IE7 */
}

.fc-header-toolbar .fc-button .fc-icon.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
}

.fc-header-toolbar .fc-button .fc-icon.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
}

.fc-header-toolbar .fc-button .fc-icon.fc-icon-left-double-arrow:after {
  content: "\AB";
}

.fc-header-toolbar .fc-button .fc-icon.fc-icon-right-double-arrow:after {
  content: "\BB";
}

.fc-header-toolbar .fc-button.fc-state-default {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#e6e6e6));
  background-image: linear-gradient(to bottom, white, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-header-toolbar .fc-button.fc-state-default.fc-corner-left:not(.fc-prev-button, .fc-next-button) {
  /* non-theme */
  border-radius: 2px;
  margin-right: 5px;
}

.fc-header-toolbar .fc-button.fc-state-default.fc-corner-right:not(.fc-prev-button, .fc-next-button) {
  /* non-theme */
  border-radius: 2px;
  margin-left: 5px;
}

.fc-header-toolbar .fc-button .fc-state-hover,
.fc-header-toolbar .fc-button .fc-state-down,
.fc-header-toolbar .fc-button .fc-state-active,
.fc-header-toolbar .fc-button .fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-header-toolbar .fc-button .fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-header-toolbar .fc-button .fc-state-down,
.fc-header-toolbar .fc-button .fc-state-active {
  background-color: #cccccc;
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-header-toolbar .fc-button .fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

.fc-header-toolbar .fc-corner-right,
.fc-header-toolbar .ui-corner-right {
  /* theme */
  margin-right: 0;
  /* back to normal */
}

.fc-header-toolbar .fc-state-hover,
.fc-header-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-header-toolbar .fc-state-down {
  z-index: 3;
}

.fc-header-toolbar .fc-state-active,
.fc-header-toolbar .ui-state-active {
  z-index: 4;
}

.fc-widget-header {
  background-color: #eee;
  background-image: -linear-gradient(top, #f2f2f2 0, #fafafa 100%);
}

.fc-widget-header .fc-day-header {
  padding: 4px;
}

.fc-day-grid {
  color: #333;
}

.fc-day-grid th {
  text-align: center;
}

.fc-day-grid .fc-time,
.fc-day-grid .fc-title {
  padding: 3px 0px 2px 3px;
  display: inline-block;
  line-height: 16px;
  font-size: 11px;
  box-sizing: border-box;
}

.fc-day-grid .fc-time {
  font-weight: bold;
}

.fc-day-grid td.fc-other-month,
.fc-day-grid td.dropzone {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-color: #FAFCFD;
  background-size: 16px 16px;
}

.fc-day-grid td.fc-other-month .fc-day-number,
.fc-day-grid td.dropzone .fc-day-number {
  float: right;
  padding: 0 2px;
}

.fc-day-grid td.fc-other-month .fc-other-month .fc-day-number,
.fc-day-grid td.dropzone .fc-other-month .fc-day-number {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
                 might want to set the 'color' property instead
                 making day-numbers bold also fixes the problem */
}

.fc-day-grid td.fc-other-month .fc-day-content,
.fc-day-grid td.dropzone .fc-day-content {
  clear: both;
  padding: 2px 2px 1px;
  /* distance between events and day edges */
}

.fc-day-grid td.fc-other-month .fc-time,
.fc-day-grid td.dropzone .fc-time {
  font-weight: bold;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
  cursor: pointer;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.8;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event {
  border: none !important;
  border-right: none;
  border-left: 6px solid rgba(0, 0, 0, 0.15) !important;
  padding-left: 2px;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-ltr .fc-h-event.fc-end,
.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-rtl .fc-h-event.fc-start,
.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-v-event.fc-end {
  border-right-width: 0px;
  border-radius: 0px;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-ltr .fc-h-event.fc-end:active,
.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-rtl .fc-h-event.fc-end.fc-start:active,
.fc-day-grid td.fc-event-container .fc-day-grid-event.fc-event.fc-v-event.fc-end:active {
  opacity: 0.8;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event .fc-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event .fc-content .fc-time {
  display: block;
  white-space: nowrap;
  font-size: 10px;
  font-weight: bold;
}

.fc-day-grid td.fc-event-container .fc-day-grid-event .fc-content .fc-title .fa {
  font-size: 14px;
  margin-top: 4px;
  margin-right: 4px;
}

@media (max-width: 700px) {
  /**
      * Header styles for small screens
      */

  .fc-header-toolbar {
    overflow: auto;
    height: auto;
    min-height: 45px;
    padding_bottom: 0px;
  }

  .fc-header-toolbar div.fc-right .fc-button-group,
  .fc-header-toolbar div.fc-left .fc-button-group,
  .fc-header-toolbar div.fc-center .fc-button-group {
    float: left;
  }

  .fc-header-toolbar div.fc-right .fc-button-group button,
  .fc-header-toolbar div.fc-left .fc-button-group button,
  .fc-header-toolbar div.fc-center .fc-button-group button {
    height: 2em;
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .fc-header-toolbar div.fc-right div,
  .fc-header-toolbar div.fc-right h2,
  .fc-header-toolbar div.fc-left div,
  .fc-header-toolbar div.fc-left h2,
  .fc-header-toolbar div.fc-center div,
  .fc-header-toolbar div.fc-center h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }

  .fc-header-toolbar .fc-left {
    width: 70%;
  }

  .fc-header-toolbar .fc-right {
    padding-right: 0px;
    width: 30%;
  }

  .fc-header-toolbar .fc-center {
    width: 100%;
  }
}

#calendar-buttons {
  position: absolute;
  right: 30px;
  margin-top: 10px;
}

.btn-vista {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 2px;
  margin-top: 30px;
}

.fc-agendaWeek-view {
  max-height: 600px;
  overflow: auto;
}

/*@font-face {
  font-family: moovegdpr;
  src: url(../fonts/moovegdpr.eot);
  src: url(../fonts/moovegdpr.eot#iefix) format("embedded-opentype"), url(../fonts/moovegdpr.ttf) format("truetype"), url(../fonts/moovegdpr.woff) format("woff"), url(../fonts/moovegdpr.svg#moovegdpr) format("svg");
  font-weight: 400;
  font-style: normal
}*/

[class*=" moovegdpr-"],
[class^=moovegdpr-] {
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.moovegdpr-arrow-close:before {
  content: "\E900";
}

.moovegdpr-policy:before {
  content: "\E901";
}

.moovegdpr-advanced:before {
  content: "\E902";
}

.moovegdpr-3rd-party:before {
  content: "\E903";
}

.moovegdpr-strict-necessary:before {
  content: "\E904";
}

.moovegdpr-privacy-overview:before {
  content: "\E905";
}

body.moove_gdpr_overflow {
  overflow: hidden;
}

body.moove_gdpr_overflow #page {
  position: relative;
  z-index: 10;
}

body.moove_gdpr_overflow #main-header,
body.moove_gdpr_overflow #page-container {
  z-index: 99;
}

.lity-hide {
  display: none;
}

#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button,
#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button {
  text-decoration: none;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider,
#moove_gdpr_cookie_modal .switch .slider {
  overflow: visible;
}

#moove_gdpr_cookie_modal {
  margin: 0 auto;
  margin-top: 0;
  min-height: 60vh;
  font-family: Nunito, sans-serif;
}

#moove_gdpr_cookie_modal span.tab-title {
  display: block;
}

#moove_gdpr_cookie_modal button {
  letter-spacing: 0;
  outline: none;
  cursor: pointer;
}

#moove_gdpr_cookie_modal * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: inherit;
}

#moove_gdpr_cookie_modal .cookie-switch,
#moove_gdpr_cookie_modal .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

#moove_gdpr_cookie_modal .cookie-switch input,
#moove_gdpr_cookie_modal .switch input {
  display: none;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider,
#moove_gdpr_cookie_modal .cookie-switch .slider,
#moove_gdpr_cookie_modal .switch .cookie-slider,
#moove_gdpr_cookie_modal .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: red;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0;
  padding: 0;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:before,
#moove_gdpr_cookie_modal .cookie-switch .slider:before,
#moove_gdpr_cookie_modal .switch .cookie-slider:before,
#moove_gdpr_cookie_modal .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 1px;
  bottom: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
  display: block;
  box-sizing: content-box;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:after,
#moove_gdpr_cookie_modal .cookie-switch .slider:after,
#moove_gdpr_cookie_modal .switch .cookie-slider:after,
#moove_gdpr_cookie_modal .switch .slider:after {
  content: attr(data-text-disabled);
  position: absolute;
  top: 0;
  left: 60px;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  color: red;
  display: block;
  white-space: nowrap;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.cookie-round,
#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.round,
#moove_gdpr_cookie_modal .cookie-switch .slider.cookie-round,
#moove_gdpr_cookie_modal .cookie-switch .slider.round,
#moove_gdpr_cookie_modal .switch .cookie-slider.cookie-round,
#moove_gdpr_cookie_modal .switch .cookie-slider.round,
#moove_gdpr_cookie_modal .switch .slider.cookie-round,
#moove_gdpr_cookie_modal .switch .slider.round {
  border-radius: 34px;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.cookie-round:before,
#moove_gdpr_cookie_modal .cookie-switch .cookie-slider.round:before,
#moove_gdpr_cookie_modal .cookie-switch .slider.cookie-round:before,
#moove_gdpr_cookie_modal .cookie-switch .slider.round:before,
#moove_gdpr_cookie_modal .switch .cookie-slider.cookie-round:before,
#moove_gdpr_cookie_modal .switch .cookie-slider.round:before,
#moove_gdpr_cookie_modal .switch .slider.cookie-round:before,
#moove_gdpr_cookie_modal .switch .slider.round:before {
  border-radius: 50%;
}

#moove_gdpr_cookie_modal .cookie-switch input:checked + .cookie-slider,
#moove_gdpr_cookie_modal .cookie-switch input:checked + .slider,
#moove_gdpr_cookie_modal .switch input:checked + .cookie-slider,
#moove_gdpr_cookie_modal .switch input:checked + .slider {
  background-color: #2e9935;
}

#moove_gdpr_cookie_modal .cookie-switch input:checked + .cookie-slider:after,
#moove_gdpr_cookie_modal .cookie-switch input:checked + .slider:after,
#moove_gdpr_cookie_modal .switch input:checked + .cookie-slider:after,
#moove_gdpr_cookie_modal .switch input:checked + .slider:after {
  content: attr(data-text-enable);
  color: #2e9935;
  white-space: nowrap;
}

#moove_gdpr_cookie_modal .cookie-switch input:focus + .cookie-slider,
#moove_gdpr_cookie_modal .cookie-switch input:focus + .slider,
#moove_gdpr_cookie_modal .switch input:focus + .cookie-slider,
#moove_gdpr_cookie_modal .switch input:focus + .slider {
  box-shadow: 0 0 1px #2e9935;
}

#moove_gdpr_cookie_modal .cookie-switch input:checked + .cookie-slider:before,
#moove_gdpr_cookie_modal .cookie-switch input:checked + .slider:before,
#moove_gdpr_cookie_modal .switch input:checked + .cookie-slider:before,
#moove_gdpr_cookie_modal .switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

#moove_gdpr_cookie_modal a,
#moove_gdpr_cookie_modal button {
  outline: none;
  box-shadow: none;
  text-shadow: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content {
  color: #000;
  background-color: #fff;
  width: 900px;
  width: 80vw;
  max-width: 1170px;
  min-height: 600px;
  border-radius: 10px;
  position: relative;
  margin: 0 auto;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content fieldset {
  background-color: transparent;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-left .moove-gdpr-company-logo-holder {
  text-align: left;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-center .moove-gdpr-company-logo-holder {
  text-align: center;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.logo-position-right .moove-gdpr-company-logo-holder {
  text-align: right;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .main-modal-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  height: 100%;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-right-content,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-content,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main {
  height: 100%;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-left-content {
  display: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content {
  width: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: relative;
  float: none;
  padding-bottom: 135px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .main-modal-content {
  max-height: 50vh;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 0;
  height: 100%;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt {
  padding-right: 30px;
  white-space: nowrap;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a {
  padding-right: 0;
  text-align: right;
  -webkit-box-pack: end;
          justify-content: flex-end;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  position: relative;
  top: 0;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings {
  float: left;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main {
  display: block;
  position: relative;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
  position: relative;
  overflow: hidden;
  padding-right: 190px;
  padding-bottom: 10px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  text-align: right;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.cookie-slider,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.slider {
  position: relative;
  width: 50px;
  height: 30px;
  display: block;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.cookie-slider:after,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.slider:after {
  text-align: right;
  left: auto;
  right: 60px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main h3.tab-title,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main span.tab-title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
  padding-right: 190px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
          align-items: center;
  height: 75px;
  position: relative;
  margin-bottom: 20px;
  padding-right: 180px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder {
  max-width: 180px;
  margin: 0;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  text-align: right;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  height: 100%;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder img {
  max-width: 100%;
  text-align: center;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .tab-title {
  width: 100%;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close {
  position: absolute;
  text-decoration: none;
  top: -30px;
  right: -30px;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  z-index: 99;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover span.gdpr-icon {
  background-color: #fff;
  color: #0c4da2;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 48px;
  background-color: #0c4da2;
  border: 1px solid #0c4da2;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder {
  padding: 0;
  margin-bottom: 30px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder img {
  max-height: 75px;
  max-width: 70%;
  display: inline-block;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-title h2 {
  font-weight: 400;
  font-size: 20px;
  margin: 5px 0 0;
  padding: 0;
  color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-content.moove-gdpr-no-modal-title .moove-gdpr-tab-main h3.tab-title,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-content.moove-gdpr-no-modal-title .moove-gdpr-tab-main span.tab-title {
  margin-top: 0;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: #000;
  margin-bottom: 25px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  max-height: calc(100% - 155px);
  overflow-y: auto;
  padding-right: 20px;
  padding-bottom: 15px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content button,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content li,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
  margin-top: 0;
  padding: 0;
  color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h1,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h2,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h3,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h4,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h5,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h6 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 700;
  text-transform: none;
  color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a {
  color: #000;
  text-decoration: underline;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content.moove-gdpr-strict-warning-message {
  display: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar {
  padding: 5px;
  margin-right: 10px;
  margin-bottom: 15px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled {
  opacity: 0.6;
  pointer-events: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .cookie-switch input:checked + .cookie-slider,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .switch input:checked + .slider {
  background-color: #474747;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .cookie-switch input:checked + .cookie-slider:after,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar.gdpr-checkbox-disabled .switch input:checked + .slider:after {
  color: #474747;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar p {
  display: inline-block;
  float: right;
  color: #09a501;
  margin: 0;
  line-height: 1.2;
  font: 700 11px Arial, Helvetica, sans-serif;
  font-weight: 700;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar form fieldset:hover label {
  color: #09a501;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f1f1f1;
  z-index: 15;
  border-radius: 5px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
  content: "";
  position: absolute;
  bottom: 130px;
  left: 60px;
  right: 60px;
  height: 1px;
  display: block;
  background-color: #c9c8c8;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding {
  text-decoration: none;
  padding: 0 10px;
  font-size: 10px;
  color: #000;
  font-weight: 700;
  line-height: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  width: auto;
  max-width: 250px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding img {
  height: 15px;
  margin-left: 5px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder {
  width: 100%;
  display: block;
  padding: 0 60px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
  margin: 0;
  text-decoration: none;
  border-radius: 150px;
  color: #fff;
  line-height: 18px;
  padding: 15px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover {
  background-color: #fff;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-allow-all,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-allow-all {
  float: left;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings {
  float: right;
  color: #fff;
  display: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:hover {
  background-color: #fff;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
  width: 40%;
  display: inline-block;
  float: left;
  padding: 40px 60px;
  position: absolute;
  height: 100%;
  top: 0;
  box-shadow: 0 0 30px 0 rgba(35, 35, 35, 0.1);
  background: #fff;
  z-index: 10;
  left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt {
  position: absolute;
  bottom: 0;
  padding-bottom: 30px;
  left: 60px;
  right: 60px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a {
  color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  padding: 20px 0;
  position: relative;
  top: 10px;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a img {
  width: 60px;
  height: auto;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 0;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu {
  padding: 0;
  list-style: none;
  margin: 0;
  z-index: 12;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button {
  background-color: #fff;
  border-color: #f1f1f1;
  color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a span.gdpr-icon,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button span.gdpr-icon {
  color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  line-height: 1.1;
  padding: 13px 20px;
  color: #0c4da2;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-align: left;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a:hover i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a:hover span.gdpr-icon,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button:hover i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button:hover span.gdpr-icon {
  text-decoration: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon {
  display: inline-block;
  float: left;
  font-size: 30px;
  width: 40px;
  margin-right: 5px;
  position: relative;
  top: 0;
  color: #0c4da2;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-nav-tab-title,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-nav-tab-title {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  width: calc(100% - 40px);
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
  width: 60%;
  display: inline-block;
  float: right;
  padding: 40px 60px;
  position: absolute;
  top: 0;
  height: auto;
  right: 0;
  background-color: #f1f1f1;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo {
  width: 100%;
  height: 0;
  padding-bottom: 38px;
  background-size: contain;
  background-position: 0;
  background-repeat: no-repeat;
}

.moove-hidden {
  display: none;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar:after,
.moove-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

#moove_gdpr_cookie_info_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  max-height: 400px;
  color: #fff;
  z-index: 9900;
  background-color: #202020;
  border-top: 1px solid #fff;
  font-family: Nunito, sans-serif;
  -webkit-transition: bottom 0.3s cubic-bezier(0.17, 0.04, 0.03, 0.94);
  transition: bottom 0.3s cubic-bezier(0.17, 0.04, 0.03, 0.94);
}

#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top {
  bottom: auto;
  top: 0;
  -webkit-transition: top 0.3s cubic-bezier(0.17, 0.04, 0.03, 0.94);
  transition: top 0.3s cubic-bezier(0.17, 0.04, 0.03, 0.94);
}

#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-dark-scheme {
  border-top: 0;
  border-bottom: 1px solid #fff;
}

#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-light-scheme {
  border-top: 0;
  border-bottom: 1px solid #202020;
}

#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top.moove-gdpr-info-bar-hidden {
  bottom: auto;
  top: -400px;
}

#moove_gdpr_cookie_info_bar * {
  font-family: inherit;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-info-bar-hidden {
  bottom: -400px;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-align-center,
#moove_gdpr_cookie_info_bar.moove-gdpr-align-right {
  text-align: center;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme {
  background-color: #fff;
  border-top: 1px solid #202020;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme p {
  color: #202020;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a,
#moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button {
  text-decoration: underline;
  outline: none;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #202020;
  border-top: 1px solid #fff;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme p {
  color: #fff;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button {
  text-decoration: underline;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
  background-color: #fff;
  color: #a80909;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a {
  border-color: #fff;
  color: #fff;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a:hover {
  background-color: #fff;
  color: #202020;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
  padding: 10px 40px;
  position: relative;
  display: inline-block;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container i.gdpricon-cog-1,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container span.gdpricon-cog-1 {
  font-size: 40px;
  width: 60px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  color: #fff;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup {
  position: absolute;
  width: 60px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  top: calc(50% - 25px);
  right: 0;
  text-decoration: none;
  outline: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup i,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup span.gdpr-icon {
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  color: #424449;
  border-radius: 50%;
  display: block;
  border: 1px solid #fff;
  font-size: 16px;
  position: relative;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup:hover i,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-close-cookie-popup:hover span.gdpr-icon {
  background-color: #424449;
  color: #fff;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  padding-bottom: 0;
  color: #fff;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h1,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h2,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h3,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h4,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h5,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content h6 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border: 1px solid #202020;
  color: #202020;
  text-decoration: none;
  outline: none;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  font-size: 28px;
  padding-top: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 10px;
  margin-left: 6vw;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a:hover {
  background-color: #202020;
  color: #fff;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 150px;
  padding: 8px 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  margin: 3px 4px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  background-color: #a80909;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
  color: #fff;
  background-color: #202020;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button {
  background-color: #424449;
  color: #fff;
  border-color: transparent;
  text-decoration: underline;
  cursor: pointer;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.change-settings-button:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.change-settings-button:hover {
  border-color: #fff;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content span.change-settings-button {
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
  padding-left: 15px;
  padding-left: 3vw;
}

.lity.moove_gdpr_cookie_modal_open .lity-container {
  max-width: 100%;
}

.lity.moove_gdpr_cookie_modal_open .lity-close {
  opacity: 0;
  visibility: hidden;
}

#moove_gdpr_save_popup_settings_button {
  display: block;
  z-index: 1001;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  padding: 0;
  text-align: center;
  height: 40px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 0;
  border: none;
  text-decoration: none;
}

#moove_gdpr_save_popup_settings_button:not(.gdpr-floating-button-custom-position) {
  bottom: 50px;
  left: 50px;
}

#moove_gdpr_save_popup_settings_button span {
  background-color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon {
  display: inline-block;
  line-height: 40px;
  float: left;
  font-size: 30px;
  min-width: 40px;
  text-align: center;
  z-index: 15;
  position: relative;
  background-color: transparent;
}

#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon i,
#moove_gdpr_save_popup_settings_button span.moove_gdpr_icon span.gdpr-icon {
  position: relative;
  top: 3px;
  font-weight: 900;
  background-color: transparent;
}

#moove_gdpr_save_popup_settings_button span.moove_gdpr_text {
  font: normal 12px Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 15px 0 5px;
  top: 0;
  left: 0;
  position: relative;
  line-height: 40px;
  display: none;
  overflow: hidden;
  z-index: 5;
  background-color: transparent;
  text-decoration: none;
}

#moove_gdpr_save_popup_settings_button:hover {
  background-color: #000;
}

#moove_gdpr_save_popup_settings_button:hover span.moove_gdpr_text {
  display: block;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt {
  padding-right: 60px;
}

#moove_gdpr_cookie_info_bar * {
  box-sizing: border-box;
}

#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
}

#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mright {
  float: right;
}

#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mgrey {
  background-color: #424449;
}

#moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder a.mgbutton.mgrey:hover {
  background-color: #202020;
}

@media (max-width: 767px) {
  #moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
  #moove_gdpr_cookie_info_bar.gdpr-full-screen-infobar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    min-height: 30px;
    font-weight: 400;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-modal-right-content,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-content,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main {
    min-height: 40vh;
  }

  .gdpr-fb-hide-mobile {
    display: none !important;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    width: calc(100vw - 40px);
  }

  #moove_gdpr_cookie_modal .cookie-switch,
  #moove_gdpr_cookie_modal .switch {
    width: 40px;
    height: 24px;
  }

  #moove_gdpr_cookie_modal .cookie-switch .cookie-slider:before,
  #moove_gdpr_cookie_modal .cookie-switch .slider:before,
  #moove_gdpr_cookie_modal .switch .cookie-slider:before,
  #moove_gdpr_cookie_modal .switch .slider:before {
    height: 20px;
    width: 20px;
  }

  #moove_gdpr_cookie_modal .cookie-switch input:checked + .cookie-slider:before,
  #moove_gdpr_cookie_modal .cookie-switch input:checked + .slider:before,
  #moove_gdpr_cookie_modal .switch input:checked + .cookie-slider:before,
  #moove_gdpr_cookie_modal .switch input:checked + .slider:before {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title {
    padding-right: 0;
    height: auto;
    margin-bottom: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .tab-title {
    font-weight: 800;
    font-size: 22px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-title .moove-gdpr-company-logo-holder {
    display: none;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content {
    height: 80vh;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content .main-modal-content {
    max-height: calc(80vh - 155px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt {
    position: relative;
    padding-right: 10px;
    max-width: 50%;
    width: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt a {
    font-weight: 700;
    font-size: 11px;
    white-space: normal;
    padding-left: 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    padding-right: 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content p {
    margin-bottom: 15px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form {
    text-align: left;
    margin-bottom: 15px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.cookie-slider,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.slider {
    width: 40px;
    height: 24px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.cookie-slider:after,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-tab-main-content .moove-gdpr-status-bar form span.slider:after {
    left: 45px;
    right: 0;
    text-align: left;
    top: -3px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main h3.tab-title,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main span.tab-title {
    padding-right: 0;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    max-height: 500px;
    max-height: 90vw;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .cookie-switch .cookie-slider:after,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .switch .slider:after {
    font-weight: 800;
    font-size: 12px;
    line-height: 30px;
    min-width: 130px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-close-modal-button a,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-close-modal-button button {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #202020;
    color: #202020;
    text-decoration: none;
    outline: none;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    font-size: 27px;
    padding-top: 1px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-left: 15px;
    margin-left: 6vw;
    position: absolute;
    right: 5px;
    top: 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-decoration: none;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo {
    padding-bottom: 30px;
    background-size: contain;
    background-position: 50%;
    margin-top: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder {
    margin-bottom: 15px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    padding: 10px;
    padding-top: 30px;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
    height: 140px;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu {
    display: inline-block;
    margin: 0 auto;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li {
    list-style: none;
    margin-bottom: 20px;
    display: inline-block;
    float: left;
    margin: 0 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
    padding: 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon {
    margin: 0;
    text-align: center;
    width: 24px;
    font-size: 24px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-nav-tab-title,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-nav-tab-title {
    display: none;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt {
    top: 3px;
    right: 3px;
    left: auto;
    padding: 0;
    bottom: auto;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
    width: 100%;
    position: relative;
    padding: 15px 10px;
    height: calc(90vh - 200px);
    border-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 {
    max-height: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title {
    font-weight: 800;
    font-size: 16px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-status-bar {
    padding: 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    padding: 0;
    position: relative;
    overflow: auto;
    max-height: calc(100% - 110px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content li,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h1,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h2,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h3,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h4,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h5,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content h6 {
    font-weight: 700;
    font-size: 14px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main {
    margin-bottom: 55px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    height: 100%;
    max-height: calc(90vh - 320px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
    height: 70px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
    left: 10px;
    right: 10px;
    bottom: 70px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder {
    padding: 0 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
    margin: 0;
    background-color: #fff;
    text-decoration: none;
    border-radius: 150px;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    padding: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    color: #fff;
    min-width: 110px;
    text-align: center;
    text-transform: none;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    width: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt button {
    top: 0;
    padding: 5px 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder img {
    max-height: 40px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder {
    text-align: center;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding: 15px;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container i.gdpricon-cog-1,
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container span.gdpricon-cog-1 {
    display: none;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice {
    padding-left: 4px;
    margin-bottom: 10px;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    padding-left: 0;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    background-color: #a80909;
  }

  .moove-gdpr-branding-cnt a {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo {
    margin-top: 0;
    background-position: 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content {
    height: 600px;
    height: 90vh;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content .main-modal-content {
    max-height: 500px;
    max-height: calc(80vh - 80px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-company-logo-holder {
    text-align: left;
    margin: 0;
    display: inline-block;
    float: left;
    width: 40%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu {
    max-width: 60%;
    float: right;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    padding-top: 30px;
    height: 75px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title {
    margin-bottom: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
    height: 45px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
    bottom: 45px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    max-height: 350px;
    max-height: calc(100% - 70px);
  }

  #moove_gdpr_cookie_modal {
    background: transparent;
    border-radius: 5px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
    height: 55vh;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a.moove-gdpr-branding {
    top: 0;
    padding: 0;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v1 .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    max-height: calc(90vh - 220px);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-modal-right-content {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
    padding: 30px 20px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
    height: 120px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder {
    padding: 0 20px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
    bottom: 120px;
    left: 20px;
    right: 20px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt {
    padding-right: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    padding: 30px 20px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    min-height: 620px;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt {
    left: 20px;
    right: 20px;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p > a {
    font-size: 13px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
    padding: 10px 15px;
    font-weight: 800;
    font-size: 12px;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button a,
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-close-modal-button button {
    margin-left: 15px;
    margin-left: 5vw;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title {
    font-weight: 800;
    font-size: 24px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding: 10px 20px;
  }
}

@media (min-width: 1000px) and (max-width: 1300px) {
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
    padding: 40px 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
    height: 120px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder {
    padding: 0 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
    bottom: 120px;
    left: 30px;
    right: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-branding-cnt {
    padding-right: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt {
    left: 30px;
    right: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    padding: 30px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    min-width: 700px;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    min-height: 600px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    display: block;
    max-width: 100%;
    text-align: center;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin-top: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    display: block;
    max-width: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span {
    display: block;
  }
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    display: block;
    max-width: 100%;
    text-align: center;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin-top: 10px;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content {
    display: block;
    max-width: 100%;
  }

  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span,
  #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span {
    display: block;
  }
}

@media print {
  #moove_gdpr_cookie_info_bar,
  #moove_gdpr_cookie_modal,
  #moove_gdpr_save_popup_settings_button,
  .gdpr_cookie_settings_shortcode_content {
    display: none !important;
  }

  body.moove_gdpr_overflow {
    overflow: auto;
  }

  body.moove_gdpr_overflow .lity {
    display: none !important;
  }
}

