/* Minification failed. Returning unminified contents.
(1986,32): run-time error CSS1039: Token not allowed after unary operator: '-bs-secondary'
(2150,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-secondary'
(2154,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-warning'
(2158,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-danger'
(2235,29): run-time error CSS1039: Token not allowed after unary operator: '-bs-warning'
(2241,29): run-time error CSS1039: Token not allowed after unary operator: '-bs-success'
(2954,32): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(3638,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3640,35): run-time error CSS1039: Token not allowed after unary operator: '-margin-t'
(3641,22): run-time error CSS1039: Token not allowed after unary operator: '-margin-t'
(3829,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-secondary'
(3833,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-info'
(3837,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-warning'
(3841,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-danger'
 */
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

.animated.infinite {
  animation-iteration-count: infinite;
}

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

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

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

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

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

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

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

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

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

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

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

@font-face {
    font-family: "MaterialIcons-Regular";
    src: url("../fonts/MaterialIcons-Regular.eot");
    src: url("../fonts/MaterialIcons-Regular.woff") format("woff"), url("../fonts/MaterialIcons-Regular.ttf") format("truetype"), url("../fonts/MaterialIcons-Regular.svg#MaterialIcons-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glyphicons';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}


.headercontainer {
    height: auto;
    overflow: hidden;
}

.fixedContentHeader, .fixedITAMContentHeader {
    float: left;
    margin-top: 5px;
}

.fixedContentHeader {
    width: 110px;
}

.fixedITAMContentHeader {
    width: 180px;
}

.fixedContent {
    width: 200px;
    float: none;
}

.itamLabelContent {
    padding-right: 5px;
    padding-top: 5px;
}

.ITAMCursor {
    cursor: pointer;
}

.ITAMTab {
    width: 100% !important;
    height: calc(100vh - 40px);
    position: fixed;
    left: 0px;
    top: 40px;
    display: block;
    z-index: 999;
    border: 0px;
    background-color: transparent;
}

.modal-header > h5 {
    font-weight: bold;
    float: left;
}

.nav-tabs > li a {
    text-decoration: none !important;
    padding-top: 5px;
    padding-bottom: 4.8px;
    padding-left: 5px;
    padding-right: 5px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border: 1px solid #A8A8A8;
    border-bottom-color: transparent;
    text-decoration: none !important;
    font-weight: bold;
}

.nav-tabs > li > a:hover {
    font-weight: bold;
}

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none !important;
    background-color: transparent;
    border-bottom-color: transparent;
}

.tab-pane {
    border: solid 1px #dee2e6;
    border-top: 0;
    padding: 5px;
}

.nodeMandatoryclass, .RequiredField {
    color: red;
}

.component-material-icons:hover {
    border: solid 1px gray;
}

.ITASMActionFontIcon, ITASMActionFontIconSearchWhite {
    color: white !important;
}

.ITASMActionFontIconSearch, .ITASMActionFontIconSearchBlack, ITASMActionFontIconSearchWhite {
    font-size: 24px !important;
}

.menuIconBig {
    color: white;
    font-size: 30px !important;
}

.toolBarIcon {
    color: white;
    padding-top: 4px;
}

.custoLink {
    float: right;
    display: inline-block;
    padding: 4px 10px 4px 0;
}

@media (max-width: 460px) {
    .custoLink {
        float: left;
    }
}

.ROptionLabelField {
    border: none;
    display: inline-flex;
    padding: 3px;
    vertical-align: top;
    margin: 2px 0 2px 0;
    width: 100%;
}

.tableCustomizeSearch {
    border-collapse: separate;
    border-spacing: 2px;
}

.RWidth50 {
    width: 45% !important;
}

.RWidth100PX {
    width: 100px;
}

.RWidth200PX {
    width: 200px;
}

.RWidth250PX {
    width: 257px;
}

html, body {
    overflow-y: hidden;
}

.atchmt_gh, .itamLabelNoData, .itsmCompFieldLabel, .DatalistTitleSelectedItem, .FormLabelTextBold, .conditionReferencedEntityProperty, .conditionValue, .conditionProperty {
    font-weight: bold;
}

textarea {
    resize: vertical;
}

/* Supprime l'action effacer de IE.*/
::-ms-clear {
    display: none;
}

/* Supprime l'action de r�v�ler le mot de passe*/
::-ms-reveal {
    display: none;
}

/* all placeholder*/
::-webkit-input-placeholder, ::-moz-placeholder, -ms-input-placeholder, input:-moz-placeholder {
    font-style: italic !important;
    color: gray !important;
}

.PoppingPanelHeader {
    font-size: 12pt;
    margin-left: 6px;
}

.assetListLinkButton {
    padding-right: 3px;
}

.truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recordHeaderItem {
    display: flex;
    display: -ms-flexbox;
    white-space: nowrap;
}

input[type=checkbox] + label, input[type=radio] + label {
    font-weight: normal;
    margin-left: 5px;
    margin-right: 5px;
}

input[type=checkbox]:checked + label, input[type=radio]:checked + label {
    font-weight: bold;
    margin-right: 5px;
    margin-right: 5px;
}

.divToolBarRight {
    position: absolute;
    right: 0px;
    margin-top: 2px;
    top: 0px;
}

/* Tuiles de navigation rapide */

div.TileLevel1 {
    border: none;
    overflow: hidden;
    width: 99.5%;
}

div.TileLevel2 {
    border: none;
    overflow: hidden;
    width: 32.5%;
}

div.TileLevel3 {
    border: none;
    overflow: hidden;
    width: 29%;
}

div.TileLevelMore {
    border: none;
    overflow: hidden;
    width: 90%;
}

@media (max-width: 800px) {
    div.TileLevel2 {
        width: 97%;
    }

    div.TileLevel3 {
        width: 44%;
    }

    div.TileLevelMore {
        width: 82%;
    }
}

@media (min-width: 800px) and (max-width: 1500px) {
    div.TileLevel2 {
        width: 48.2%;
    }

    div.TileLevel3 {
        width: 45%;
    }

    div.TileLevelMore {
        width: 80%;
    }
}

@media (min-width: 2000px) {
    div.TileLevel2 {
        width: 24%;
    }

    div.TileLevel3 {
        width: 30%;
    }

    div.TileLevelMore {
        width: 90%;
    }
}

div.TileTitle {
    padding: 2px;
    clear: left;
    border: none;
}

.noBorderTextBox {
    border: 0;
}

.filterButton, .ITSMRemoveButton {
    font-size: 12px !important;
    font-weight: bold !important;
    cursor: pointer;
}

.FormLabelTextItalic {
    font-style: italic;
}

.nodeclass {
    background-color: transparent;
}

.nodeclass2 {
    cursor: pointer;
}

    .nodeclass2:Hover {
        cursor: pointer;
    }

.nodeReadonlyclass {
    color: #888888;
}

.HiddenField {
    visibility: hidden;
    width: 0;
    height: 0;
}

/*Info box*/
.Box {
    background-color: Transparent;
    padding-bottom: 5px;
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    border-color: #4682B4;
}

.Panel {
    border-right: gray 1px solid;
    padding-right: 10px;
    border-top: gray 1px solid;
    padding-left: 10px;
    padding-bottom: 10px;
    border-left: gray 1px solid;
    padding-top: 10px;
    border-bottom: gray 1px solid;
}

/****************************sql text*****************************/
.Code {
    font-family: "Courier New";
    font-size: 10pt;
}

/***************************ITAMLC Grid************************/
.GridITAMUnset {
    width: unset;
    border: none;
}

.GridITAM {
    width: 100%;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.GridITAM, .GridITAMUnset {
    text-align: left;
    padding: 3px;
    line-height: 23px;
    border-collapse: collapse;
}

    .GridITAM td {
        padding-left: 5px;
        padding-right: 1px;
    }

.GridSelectedItemStyleITAM {
    background-color: silver;
}

.GridItemStyleITAM {
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
}

    .GridItemStyleITAM:hover {
        background-color: var(--bs-secondary) !important;
    }


.GridHeaderStyleITAM {
    text-align: left;
    vertical-align: middle;
    font-weight: bold;
}

    .GridHeaderStyleITAM a:link {
        text-decoration: none;
    }

    .GridHeaderStyleITAM a:visited {
        text-decoration: none;
    }

.GridPagerStyleITAM td {
    text-align: left;
    border-width: 0px;
}

/***************************ITAMLC table main************************/
.TableMain {
    margin-top: 1px;
    margin-left: 2px;
    width: 99%;
}

/***************************ITAMLC master page************************/
.MasterPageTitle {
    font-weight: normal;
    font-size: 18px;
    padding-bottom: 10px;
}

.MasterPageTitleTd, .MasterPageSubTitleTd {
    padding-left: 13px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.MasterPageSubTitle {
    color: #555555;
}

.MasterPageMandatoryLabel {
    text-align: right;
    padding-right: 16px;
}

.masterpage_content_div {
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
    height: calc(100vh - 40px);
}

/***************************ITAMLC search ************************/
.CustomizeSearchLabel {
    white-space: nowrap;
}

.ValidationSummary {
    color: #FFF;
    font-size: 16px;
    padding: 10px;
}

.mask {
    position: absolute;
    z-index: 14900;
    background-color: #000;
    display: none;
    top: 0;
    left: 0;
}

#dialog {
    position: absolute;
    z-index: 15000;
    border: 1px solid #8b8b8b;
    background: #FAFAFA;
    display: none;
    width: 350px;
}

    #dialog .dialog_title_bar {
        height: 14px;
    }

    #dialog .dialog_title {
        float: left;
        font-size: 9pt;
    }

    #dialog .dialog_close {
        float: right;
        width: 15px;
        height: 15px;
        cursor: pointer;
    }

    #dialog .dialog_content {
        padding: 15px;
        color: #333333;
    }

    #dialog .dialog_button_bar {
        padding: 15px;
        text-align: right;
    }

.selectorCompletionList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.selectorCompletionListItem, .selectorCompletionListItemSelected {
    margin-top: 1px;
    margin-bottom: 1px;
    white-space: nowrap;
}

.selectorCompletionListItem {
    background-color: white;
}

.selectorCompletionListItemSelected {
    background-color: #E2E2E2;
}

.selectorSearchBoxSelected {
    font-style: normal;
}

.selectorSearchBox {
    font-style: italic;
}

/* Div d'attente pour ITSM */
#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    opacity: 0.3;
    /*  filter: alpha(opacity = 30);*/
    background-color: black;
    z-index: 999;
    text-align: center;
}

/* Images for ITSM */
.image16x16 {
    height: 16px;
    width: 16px;
}

.itsm_alertsgravity1 {
    color: var(--bs-secondary);
}

.itsm_alertsgravity2 {
    color: var(--bs-warning);
}

.itsm_alertsgravity3 {
    color: var(--bs-danger);
}
/***************************CSS for ITSM Admin Relation ************************/
#AdminRelationFrom {
    font-size: small !important;
    color: darkorange;
}

#AdminRelationTo {
    font-size: 25px !important;
    position: relative;
    top: 7px;
}

.AdminDuplicateError {
    font-size: 21px !important;
    color: red !important;
}

/***************************CSS for ITSM Screen template ************************/

.floatContentOptionBootstrap, .floatContentBootstrap {
    display: flex;
}

.floatContentBootstrapDate {
    float: left;
}

.floatContentBootstrapDate {
    width: 190px;
}

.ITSMMemoHistoModeResponsive {
    overflow: auto;
    width: 99.7%;
}

.ITSMHistoTransfert {
    position: relative;
    top: 7px;
    margin-left: 20px;
    margin-right: 20px;
}

.ITSMHistoEvent {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 50px;
}

.ITSMHistoIndent {
    margin-left: 70px;
}

.ITSMLabelUserText {
    margin-top: 4px;
}

.ITSMEnoncePrivate, .ITSMEnoncePublic {
    border-width: 1px;
    border-style: Solid;
    width: 100%;
    display: inline-grid;
    margin-top: 5px;
    margin-left: 0px;
    padding: 5px;
    border-radius: 5px;
    overflow: auto;
}

.ITSMEnonceText {
    padding-top: 5px;
    overflow-x: overlay;
}

.ITSMEnoncePrivate {
    border-left-color: var(--bs-warning) !important;
    border-color: #ccc;
    border-left-width: 5px;
}

.ITSMEnoncePublic {
    border-left-color: var(--bs-success) !important;
    border-color: #ccc;
    border-left-width: 5px;
}

.ITSMAgent, .ITSMAgentTranfer {
    font-size: 42px !important;
    background-color: lightgrey;
    color: white !important;
    border-radius: 25px;
    margin-right: 5px;
    display: inline !important;
    cursor: default !important;
}

.ITSMFromMail {
    font-size: 42px !important;
    color: #D3D3D3 !important;
    margin-right: 5px;
    position: relative;
    top: 14px;
    display: inline !important;
    cursor: default !important;
}

.ITSMLabelUserHistoTitle {
    font-weight: bold;
    white-space: pre-wrap;
}

.ITSMAgent {
    float: left;
}

.ITSMAgentTranfer {
    width: 50px;
    height: 50px;
}

.ITSMMail {
    font-size: 25px !important;
    margin-right: 5px;
}

.ITSMRemoveButton {
    padding-top: 7px;
    text-decoration: none !important;
    float: right;
}

/***************************CSS for ITSM History ************************/
.UserName {
    font-weight: bolder;
    width: 100%;
}

.UserImage, .UserTransferImage {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 25px;
}

.UserImage {
    float: left;
}

.StatusImage {
    width: 16px;
    height: 16px;
    margin: 5px;
}

.AttachmentImage {
    cursor: pointer;
    margin: 5px;
}

.action {
    font-weight: bolder;
    color: #000000;
    width: 100%;
}

.Time {
    font-weight: bold;
    width: 100%;
    white-space: nowrap;
}

.option {
    color: #000000;
    width: 100%;
    white-space: normal;
}

.HistoticFilter {
    font-weight: normal;
    padding: 5px;
}

.style100, .stylecomment, .MainAttachment, .Attachments {
    width: 100%;
}

.buttonshowolder {
    width: 100%;
    border: None;
    font-weight: bolder;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
}

.ITSMHistoTransferLabel {
    color: #7F7F7F;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.EnonceSolution {
    background-color: #F7F7F7;
    border: 1px solid #E4E4E4;
    width: 100%;
}

.AttachmentComment2 {
    color: #000000;
    width: 100%;
    white-space: nowrap;
}

.EnonceProblem, .Suspended {
    border: 1px solid #E4E4E4;
    width: 100%;
}

#topLeft, #topRight {
    position: fixed;
    width: 0%;
    border: solid 1px #e1e1e1;
    vertical-align: middle;
    text-align: center;
    background-color: white;
}

#topRight {
    top: 36px;
    right: 20px;
}

#topLeft {
    top: 28px;
    left: 8px;
}

.style103 {
    height: 6px;
}

.style104 {
    width: 54px;
    height: 6px;
}

.style105 {
    width: 47px;
    height: 6px;
}

.style106 {
    width: 20px;
}

.conditionProperty, .link {
    text-decoration: underline;
}

#ticketframe {
    width: 1138px;
}

/***************************overload for print************************/
@media print {
    #tableMenu {
        display: none;
    }

    html, body, .masterpage_content_div {
        overflow: visible !important;
    }

    .TableMain {
        width: 635px;
    }
}

@media screen and (max-width: 1200px) {
    .linkedListClass {
        width: 1000px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1599px) {
    .linkedListClass {
        width: 1200px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1899px) {
    .linkedListClass {
        width: 1600px;
    }
}

@media screen and (min-width: 1800px) {
    .linkedListClass {
        width: 1800px;
    }
}

/* attachment drag and drop related */

.dropZoneText {
    width: 400px;
    height: 30px;
    color: #fff;
    background-color: #888;
}

#dropZone {
    top: 0;
    padding: 5px 50px;
}

.dropZone_hidden {
    display: none;
}

.dropZoneText {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 12pt;
}

.searchResultsColumn {
    min-width: 100px;
}

.searchResults200Column {
    min-width: 100px;
    width: 200px;
}

.searchResultsDescriptionColumn {
    min-width: 100px;
    width: 300px;
}

/**************************************************************************/
/**************************    RESPONSIVE FORM    *************************/
/**************************************************************************/

div.RPicture {
    border: none;
    margin: 7px 10px 2px 15px;
    float: left;
}

.ITBIParamTable {
    width: 100% !important;
}

.PSTextBoxMulti {
    resize: vertical;
    min-height: 120px !important;
}

@-moz-document url-prefix() {
    select {
        padding-right: 0px !important;
    }
}


select::-ms-expand {
    display: none;
}

/* Popping panel */
.div_poppingpanel_body_close {
    display: none;
    visibility: hidden;
    position: absolute;
}

.div_poppingpanel_body_open {
    padding: 5px;
    border-top: 3px solid currentcolor;
    border-bottom: none;
    border-left: none;
    border-right: none;
    z-index: 500;
    display: block;
    visibility: visible;
    position: static;
    left: 0px;
    margin-bottom: 8px;
    margin-right: 8px;
}

/***************************overload for print***********************/
@media print {
    .div_poppingpanel_body_open {
        border-top: 2px solid #CCCCCC;
        border-bottom: 0px;
        border-right: 0px;
        border-left: 0px;
        z-index: 500;
        background-color: #FAFAFA;
        display: block;
        visibility: visible;
        position: static;
        left: 0px;
        width: 100%;
        margin-bottom: 5px;
    }
}

h1 {
    line-height: 130%;
    font-size: 170%;
    margin: 0 0 0 -10px;
    padding: .8em 0 0;
    border: none;
    background: none;
}

h2 {
    font-size: 130%;
    font-weight: bold;
    margin: 2em 0 0 -10px;
    padding: 1px 3px;
    position: relative;
    border-top: 1px solid #3366CC;
    background-color: #e5ecf9;
}

h3 {
    font-size: 130%;
    font-weight: bold;
    margin: 1.5em 0 0 0;
    top: 0em;
}

h4 {
    font-size: 110%;
    margin: 0 0 10px 0;
    position: relative;
}

h5 {
    font-size: 100%;
    font-weight: normal;
    margin: .6em 0 .4em 0.1em;
}

.activityContainer {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.activityHeaderBottom {
    border-bottom: solid 1px #DADADA;
}

.activityPanels {
    padding: 5px;
}

span.link {
    vertical-align: top;
    color: #406480;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 10px;
    margin-right: 10px;
}

.warning_message {
    background: #EAEACA;
    color: #003366;
    padding: 20px;
    margin: 10px;
    display: none;
}

/*************   URl Viewer Widget    ***************/
.url_popup {
    position: absolute;
    display: none;
}

.url_bubble .c_body {
    padding: 0 19px 4px 0px;
    white-space: nowrap;
    float: left;
}

.url_bubble .c_closebox {
    background: transparent url('../App_Themes/Default/Images/Bpm/bubble_closebox.gif') no-repeat scroll left top;
    cursor: pointer;
    height: 10px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 3px;
    top: 3px;
    width: 10px;
    white-space: nowrap;
}

.url_disabled {
    text-decoration: none;
}

.url_enabled {
    text-decoration: underline;
    cursor: pointer;
}

/*************  Custom Properties  Widget     *******************/
.custom_properties {
    width: 100%;
    border-spacing: 0px;
}

.cell_left {
    vertical-align: top;
    width: 10px;
    padding: 2px;
}

.cell_right {
    padding: 2px;
}

.custom_property_label {
    white-space: nowrap;
}

/************    Approval activity  Detail   ***************/
#approval_detail .left {
    float: left;
    padding: 8px 6px 8px 6px;
}

#approval_detail .right {
    float: right;
    overflow: hidden;
    padding: 8px 6px 8px 6px;
}

.approval_justification {
    clear: both;
}

.approval_choice {
    border: solid 1px #DADADA;
    border-radius: 5px !important;
    padding: 5px !important;
}
/************    Work-order activity  Detail   ***************/
#workorder_detail .left {
    float: left;
    padding: 8px 6px 8px 6px;
}

#workorder_detail .right {
    float: right;
    padding: 8px 6px 8px 6px;
}

.todo_list .b_body {
    float: left;
}

.todo_list_a {
    padding: 5px 15px 5px 15px;
}

.todo_list_selector {
    padding: 5px 0px 5px 15px;
    white-space: nowrap;
    font-size: 100%;
}

    .todo_list_selector span {
        cursor: pointer;
    }

.todo_list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.todo_list li {
    margin: 3px 0 3px 3px;
}

    .todo_list li span {
        color: #000;
        margin: 0 0 0 7px;
    }

/****************   ActivityAdditionalInfo   ***********************/
.gL {
    color: #777777;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

/***************************  Caddy   **************************************/
.gc_button_remove:hover {
    cursor: pointer;
}

table .caddy_quantity_selection {
    margin: 15px 5px 15px 15px !important;
}

td .caddy_quantity_selection_l {
    text-align: left !important;
    padding: 0px 15px 0px 0px !important;
}

td .caddy_quantity_selection_r {
    text-align: right !important;
    padding: 2px 0px 2px 0px !important;
}

.caddy_popup_content {
    padding: 0px 0px 0px 0px;
}

/***************************  Custom Caddy Item  ***************************/
table.custom_caddy_item {
    padding: 10px 20px 25px 20px;
}

td.custom_caddy_item, td.custom_caddy_item_l, td.custom_caddy_item_r {
    padding: 1px 5px 1px 5px;
}

td.custom_caddy_item_l {
    text-align: left;
}

td.custom_caddy_item_r {
    text-align: right;
}

/************    Attachments   ***************/
.atchmt_a a:link {
    color: #406480;
    cursor: pointer;
}

.atchmt_a a:hover {
    color: #406480;
}

.atchmt_a a:visited {
    color: #406480;
}

.atchmt_a {
    background-color: #F2F2F2;
    border: 1px solid #9F9F9F;
    color: Black;
    width: 100%;
}

.atchmt_h {
    color: #406480;
    padding: 7px 4px 8px 6px;
    white-space: nowrap;
}

.atchmt_i {
    width: 98%;
    margin: 5px 8px 5px 8px;
    text-align: left;
}

.atchmt_i_cl {
    height: 34px;
    width: 28px;
}

.atchmt_i_cr {
    text-align: right;
}

.atchmt_i_t {
    font-weight: bold;
    margin: 8px 5px 8px 0;
    text-align: left;
}

.atchmt_i_s {
    font-weight: normal;
    margin: 2px 18px 2px 0;
    text-align: left;
}

.atchmt_i_d {
    color: #5A5A5A;
    font-weight: normal;
    margin: 2px 5px 2px 8px;
    text-align: right;
}

.atchmt_f {
    background-color: #EDEDED;
    border-top: 1px solid #9F9F9F;
    color: #8D8D8D;
    padding: 8px 4px 7px 6px;
    white-space: nowrap;
}

.modal_dialog {
    border: 1px solid #5F5F5F;
    background-color: white;
    display: none;
    position: absolute;
    z-index: 14999;
    padding: 12px;
}

#select_file_dialog .footer {
    margin-top: 25px;
    float: right;
}

.FormLabelPrice, .FormLabelNew, .FormLabelQuantity, .BlockTitle {
    font-size: 12pt;
}

.FormValuePrice {
    font-size: 16pt;
}

/* rev and others */
.FormLabelTextInfo {
    color: #4D4D4D;
}

/* error messages (labels) */
.ButtonAddToCartLabel {
    width: 100%;
    margin-bottom: 5px;
}

.ButtonLabelCart {
    text-align: justify;
    position: relative;
    top: -2px;
}

.FormLabelNewFontIcon, .FormLabelNew {
    color: orangered !important;
}

.FormLabelNew {
    padding-left: 20px;
}

mark {
    background: #ff0;
    color: #000 !important;
    padding: 0px;
}

.DatalistHeaderStyle {
    color: black;
    background-color: white;
}

/* form objects */
.Panel {
    border: 2px solid #CCCCCC;
    padding: 10px 10px 10px 10px;
}

/* Cam detail */
.FormLabelCAMBrowse {
    font-size: 18px;
    vertical-align: super;
}

.FormCAMFavoriteStar {
    float: right;
    font-size: 24px;
}

.camDefinition {
    border-top: 6px solid var(--bs-primary);
    width: 500px;
    height: 220px;
}

.camImageCell {
    padding-left: 5px;
    vertical-align: top;
    max-height: 200px;
    max-width: 260px;
    float: left;
    margin-right: 3px;
    min-width: 260px;
}

.itamCIPicture {
    width: 90%;
    max-width: 150px;
    border-radius: 5px;
    cursor: pointer;
}

.RequestPicture {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3), 0 2px 12px 0 rgba(0, 0, 0, 0.2);
}

.camImage {
    float: left;
    border: none;
    max-height: 200px;
    max-width: 200px;
    cursor: pointer;
}

.RequestPicture, .RequestPictureBlock {
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.RequestPictureBlock {
    width: 10px;
    vertical-align: top;
    text-align: center;
}

.blockDetailImage {
    max-height: 200px;
    max-width: 200px;
}

.camImageRightCell {
    vertical-align: top;
    text-align: left;
    width: 200px;
    float: left;
}

.camPanel {
    min-height: 350px;
    max-height: 350px
}

.camDesc {
    min-height: 1px;
    max-height: 100px;
}

.itssblock {
    border-top-color: rgb(198, 233, 71);
    border-top-width: 6px;
    border-top-style: solid;
    background-color: whitesmoke;
    padding-top: 0px;
    min-height: 250px;
}

.ShoppingCartTitle {
    text-decoration: none !important;
    white-space: nowrap;
    color: transparent;
    background-color: black;
    vertical-align: middle;
    padding-left: 5px;
}

.MainMenuItem {
    text-decoration: none !important;
    white-space: nowrap;
}

.nav-pills .nav-link.active a:link {
    color: white;
}

.lighter-text {
    color: #ABB0BE;
}

.main-color-text {
    color: #6394F8;
}

.badgeCart {
    border-radius: 10px;
    color: white;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    margin-left: 5px;
}

.shopping-cart {
    width: 400px;
    position: relative;
    padding: 10px;
}

    .shopping-cart .shopping-cart-header {
        border-top: 1px solid #E8E8E8;
        padding-top: 15px;
    }

        .shopping-cart .shopping-cart-header .shopping-cart-total {
            float: right;
        }

    .shopping-cart .shopping-cart-items {
        padding-top: 0px;
        padding-left: 1px;
        list-style-type: none;
    }

        .shopping-cart .shopping-cart-items li {
            margin-bottom: 2px;
        }

        .shopping-cart .shopping-cart-items img {
            float: left;
            margin-right: 12px;
        }

        .shopping-cart .shopping-cart-items .item-name {
            display: block;
            padding-top: 10px;
            font-size: 14px;
        }

        .shopping-cart .shopping-cart-items .item-price {
            color: #6394F8;
            margin-right: 8px;
        }

        .shopping-cart .shopping-cart-items .item-quantity {
            color: #ABB0BE;
            margin-right: 8px;
        }

    .shopping-cart:after {
        bottom: 100%;
        left: 89%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: white;
        border-width: 8px;
        margin-left: -8px;
    }

.ShoppingCart-Remove {
    padding-left: 10px;
}

.dxsmControl {
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.item-img {
    min-width: 100px;
    min-height: 100px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

input[type="text"].dxeEditArea {
    height: 14px;
    width: 100%;
    margin-bottom: 0px;
}

/* Material icon*/
@charset "UTF-8";

[data-icon]:before {
    font-family: "MaterialIcons-Regular" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "MaterialIcons-Regular" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.web:before {
    content: "\e051";
}

.subtitles:before {
    content: "\e048";
}

.local_offer:before {
    content: "\e54e";
}

.business:before {
    content: "\e0af";
}

.contacts:before {
    content: "\e0ba";
}

.book:before {
    content: "\e865";
}

.assignment_turned_in:before {
    content: "\e862";
}

.visibility:before {
    content: "\e8f4";
}

.credit_card:before {
    content: "\e870";
}

.device_hub:before {
    content: "\e335";
}

.map:before {
    content: "\e55b";
}

.save:before {
    content: "\e161";
}

.unarchive:before {
    content: "\e169";
}

.build:before {
    content: "\e869";
}

.person:before {
    content: "\e7fd";
}

.chrome_reader_mode:before {
    content: "\e86d";
}

.filter-item {
    position: relative;
    top: 3px;
}

.field_date:before {
    content: "\e8df";
}

.field_org:before {
    content: "\e97a";
}

.entity_csdticket:before {
    content: "\f1bb";
}

.entity_manufacturer:before {
    content: "\ebbc";
}

.entity_operator:before {
    content: "\e7fd";
}

.entity_characteristic:before {
    content: "\e8b8";
}

.entity_productcatalog:before {
    content: "\ea19";
}

.entity_contract:before {
    content: "\e85d";
}

.entity_supplier:before {
    content: "\e563";
}

.entity_stockingcenter:before {
    content: "\ebb8";
}

.entity_workstationtemplate:before {
    content: "\e912";
}

.entity_user:before {
    content: "\e7fd";
}

.entity_license:before {
    content: "\ef76";
}

.entity_applicationobject:before {
    content: "\e9fe";
}

.entity_application:before {
    content: "\e8aa";
}

.entity_workstation:before {
    content: "\e1b1";
}

.entity_software:before {
    content: "\eb8e";
}

.entity_product:before {
    content: "\f028";
}

.entity_service:before {
    content: "\ea75";
}

.entity_component:before {
    content: "\e87b";
}

.entity_configuration:before {
    content: "\e8c1";
}

.entity_project:before {
    content: "\e0f0";
}

.entity_other:before {
    content: "\e5d3";
}
/* Generic Form */

.LinkDelete {
    width: 13px;
    text-align: right;
    margin-left: 5px;
}

.DynamicFieldDiv {
    display: inline-block;
    display: -webkit-inline-box;
    display: -ms-flexbox;
    display: inline-flex;
    width: 100%;
}

.GFLinkUL {
    font-size: 14px !important;
    font-family: Verdana !important;
    cursor: pointer !important;
}

.GFLinkUL {
    text-decoration: underline !important;
    font-weight: normal !important;
}

.AttachZone {
    text-align: center;
}

/* Selector and others component icons */
.material-icons, .component-material-icons {
    font-family: 'MaterialIcons-Regular';
    font-weight: normal;
    font-style: normal;
    font-size: 18px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    cursor: pointer;
    border: solid 1px transparent;
}

/* Process diagram */
.material-icons {
    font-size: 25px; /* Preferred icon size */
}

.div-nodata {
    width: 100%;
    height: 50px;
    text-align: center;
    padding-top: 20px;
}

.DecisionTree {
    text-decoration: none !important;
}

.ModalSelector {
    z-index: 102;
    width: 100%;
    height: 800px;
    border-radius: 5px 5px 0 0;
    border: none;
}

.dxpcLite_Metropolis .dxpc-header {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: bold !important;
}

/* Responsive */
.containerHeader {
    width: 100%;
    padding-bottom: 3px;
}

    .containerHeader .header {
        cursor: pointer;
        margin-top: 3px;
    }

.content {
    margin-top: 2px;
}

/* Massupdate */
.massupdateCheckBox {
    margin-top: 8px;
    margin-right: 8px;
}

/* Popping Panel*/
.panel-heading a:after {
    font-family: 'Glyphicons';
    content: "\e114";
    float: left;
}

.panel-heading a.collapsed:after {
    content: "\e080";
}

.panel-popping {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: bold;
    cursor: pointer;
}

/* Planning */
.label_planning {
    padding-top: 20px;
    padding-bottom: 20px;
}

.blockLeft {
    width: 50%;
    display: inline;
    float: left;
    text-align: left;
    padding-left: 40px;
    padding-right: 50px;
}

.blockRight {
    width: 50%;
    display: inline;
    padding-bottom: 20px;
}

div.Line {
    width: auto;
    height: auto;
    margin-right: 40px;
    margin-bottom: 50px;
    display: flex;
}

.rightText {
    text-align: right;
}

.element {
    width: 150px;
    height: 50px;
    margin-top: 5px;
    margin-right: 20px;
    display: inline-block;
}

.scrollingControlContainer {
    overflow-x: auto;
    overflow-y: auto;
    margin-bottom: 5px;
}

.ticketEditComment {
    font-size: 24px !important;
}

/* d.ab */
.flex, .flex-row, .flex-col, .flex-center-hz {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-center-hz {
    align-items: center;
}
/* horizontal */
.overflow-scroll-y {
    overflow-y: auto;
}

select.form-control:not([size]):not([multiple]) {
    height: auto !important;
}

.PSLinkButton {
    height: 24px !important;
}

mark {
    background-color: #ff0 !important;
}

.dxbs-listbox > ul > li a:link, .dxbs-menu ul.nav > li > a:link, .dxbs-menu ul.dx-dropdown-menu > li > .dropdown-item:not(.disabled) {
    text-decoration: none !important;
    color: inherit !important;
    white-space: nowrap;
}

.dxbs-menu > ul > li ul.dxbs-dm > li > a > span {
    white-space: nowrap;
}

.nav-link {
    padding-top: 0rem;
    padding-right: 0.3rem;
    padding-bottom: 0rem;
    padding-left: 0.3rem;
}

/** Dual Ring - Loading Component **/
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 45%;
    top: 45%
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #929292;
        border-color: #929292 transparent #929292 transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*** CORRECTIFS : ***/

/** Disposition des checkbox dans la checkboxlist : ResearchPage.aspx -> InformationTypeCheckBoxList **/
.checkboxlist-inline-disposition tbody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .checkboxlist-inline-disposition tbody td {
        min-width: 30%;
        padding-right: 15px;
    }

#externalDropZone, #externalDropZone > * {
    z-index: -1;
}

.menuIcon {
    font-size: 1.25em;
    color: gray;
}

.btnChange {
    height: 0px;
    width: 0px;
    visibility: hidden;
    padding: 0px;
}

/** CHECKBOX DESIGN **/
.check-zone {
    --margin-t: 12px;
    position: relative;
    min-height: calc( 62px - var(--margin-t));
    margin-top: var(--margin-t) !important;
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
}

    .check-zone:empty {
        display: none !important;
    }

.btnaction {
}

.btnactionEmbedded {
    border-radius: inherit;
}

.menuTemplateWithoutIcon {
    padding-left: 30px !important;
}

/* To force classic devexpress component to use the boostrap css*/
.dxtlControl_Metropolis {
    font: inherit;
    color: inherit;
}

.dxtlIndent_Metropolis, .dxtlIndentWithButton_Metropolis {
    vertical-align: top;
    background-color: transparent;
}

#NavBar {
    height: 40px !important;
    padding: 0 !important;
}

    #NavBar #MainMidTD {
        width: 100% !important;
        height: 100% !important;
    }

        #NavBar #MainMidTD #TabControl {
            height: 100% !important;
        }

            #NavBar #MainMidTD #TabControl * {
                border: none;
            }

            #NavBar #MainMidTD #TabControl ul.dxtc-wrapper.dxtc-stripContainer {
                padding: 0 !important;
                height: 100%;
            }

            #NavBar #MainMidTD #TabControl #TabControl_TC li.dxtc-psi {
                display: flex;
                align-items: center;
                cursor: pointer;
            }

            /* #NavBar #MainMidTD #TabControl #TabControl_TC li.dxtc-psi:hover {
                    background: #ffffff20 !important;
                }*/

            #NavBar #MainMidTD #TabControl #TabControl_TC .component-material-icons {
                padding: 0;
                margin: 0;
                font-size: 11pt;
                font-weight: lighter;
                position: relative;
                top: 1px;
                height: 100% !important;
                margin-left: 3px;
            }

/*****************   Notification Widget   ********************/

.WaitMessageDiv {
    position: absolute;
    z-index: 15000;
}

.WaitMessageMaskDiv {
    position: absolute;
    z-index: 14999;
    background-color: gray;
    top: 0px;
    left: 0px;
}

#notification_widget {
    position: absolute;
    z-index: 15000;
}

.notification_widget_Loading, .WaitMessageDiv, .modalBackground, #loading_img {
    background-color: black !important;
    padding: 0px !important;
    border-radius: 10px;
    opacity: 0.4 !important;
}

.notification_widget_Error, .notification_widget_Information, .notification_widget_Confirmation {
    padding: 12px 7px 12px 7px;
    border-radius: 5px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.5);
    transition: 0.5s;
}

.notification_widget_Error {
    background-color: #c61d07;
    color: white;
}

    .notification_widget_Error table {
        background-color: #c61d07;
    }

    .notification_widget_Error #closebox_button:hover {
        background-color: #c61d0729;
    }

    .notification_widget_Error #loading_img {
        background-color: #c61d07 !important;
    }

.notification_widget_Information {
    background-color: #1d6207;
    color: white;
}

    .notification_widget_Information table {
        background-color: #1d6207;
    }

    .notification_widget_Information #closebox_button:hover {
        background-color: #1d620770;
    }

    .notification_widget_Information #loading_img {
        background-color: #1d6207 !important;
    }

.notification_widget_Confirmation {
    background-color: #c6a01d;
    color: white;
}

    .notification_widget_Confirmation table {
        background-color: #c6a01d;
    }

    .notification_widget_Confirmation #closebox_button:hover {
        background-color: #c65c1d29;
    }

    .notification_widget_Confirmation #loading_img {
        background-color: #c6a01d !important;
    }

#notification_mes, .WaitMessageDiv {
    color: #FFF;
    font-size: 16px;
}

.dxtlControl_Metropolis a, .dxtlFocusedNode_Metropolis {
    color: inherit;
}

.dxtlFocusedNode_Metropolis {
    font-weight: bold;
}

select.form-control:not([size]):not([multiple]) {
    height: 34px !important;
}

.dxsmLevel0, .dxsmLevel0 a, .dxsmLevel1, .dxsmLevel1 a, .dxsmLevel2, .dxsmLevel2 a {
    white-space: inherit;
}

.dxheViewArea_Metropolis {
    border-bottom: 0px !important;
}

.ITSMLate_09 {
    color: var(--bs-secondary);
}

.ITSMLate_10 {
    color: var(--bs-info);
}

.ITSMLate_11 {
    color: var(--bs-warning);
}

.ITSMLate_12 {
    color: var(--bs-danger);
}

.questionKBIcon {
    content: "\e94c";
    font-family: 'Glyphicons';
    content: "\e114";
}

    .questionKBIcon a:after {
        content: "\e94c";
        font-family: 'Glyphicons';
        content: "\e114";
    }

.ITSMEnonceHeader {
    font-family: MS Sans Serif;
    font-size: 8pt;
    font-weight: bold;
    white-space: pre-wrap;
}

/** Incoming mail light images **/

a.image-enlarge-link {
    width: 100% !important;
    display: block;
    overflow: hidden;
}

    a.image-enlarge-link > img {
        height: auto !important;
        max-width: 100% !important;
    }

.mail-attachment-link {
    margin-right: 10px;
}

/***| CORRECTIFS ITAM-WEB-TREE + CHECKBOX |***/

.TreeViewCheckbox .nav-item a.nav-link {
    display: flex !important;
    align-items: center !important;
}

.TreeViewCheckbox .nav-link.form-check {
    /*margin-left: 28px !important;*/
}

.dxbs-tree ul.nav > li > a > span.image:not(:last-child) {
    padding: 0px !important;
}

.dxbs-tree.checkable .form-check {
    margin-left: 0px !important;
    display: block;
    left: 45px;
    top: 5px;
}

.dxbs-tree.checkable ul.nav > li > a > span:not(.expand-btn):not(.image):not(.badge) {
    margin-left: 3.4em;
}

.ITSMTabFrame {
    height: calc(100vh - 105px);
    width: 100%;
}


/*.btn-primary {
    color: white;
    background-color: rgba(18,45,66,1);
    border-color: transparent;
}*/
