@charset "UTF-8";

.blueimp-gallery,
.blueimp-gallery>.slides>.slide>.slide-content,
.blueimp-gallery>.slides>.slide>.slide-content>img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -ms-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.blueimp-gallery>.slides>.slide>.slide-content,
.blueimp-gallery>.slides>.slide>.slide-content>img {
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}

.blueimp-gallery {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  opacity: 0;
  display: none;
  direction: ltr;
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

.blueimp-gallery-carousel {
  position: relative;
  z-index: auto;
  margin: 1em auto;
  padding-bottom: 56.25%;
  box-shadow: 0 0 4px rgba(0,0,0,.1);
  -ms-touch-action: pan-y pinch-zoom;
  touch-action: pan-y pinch-zoom;
  display: block;
}

.blueimp-gallery-display {
  display: block;
  opacity: 1;
}

.blueimp-gallery>.slides {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.blueimp-gallery-carousel>.slides {
  position: absolute;
}

.blueimp-gallery>.slides>.slide {
  visibility: hidden;
  position: relative;
  float: left;
  height: 100%;
  text-align: center;
  -webkit-transition-timing-function: cubic-bezier(.645,.045,.355,1);
  -moz-transition-timing-function: cubic-bezier(.645,.045,.355,1);
  -ms-transition-timing-function: cubic-bezier(.645,.045,.355,1);
  -o-transition-timing-function: cubic-bezier(.645,.045,.355,1);
  transition-timing-function: cubic-bezier(.645,.045,.355,1);
}

.blueimp-gallery>.slides>.slide-active,
.blueimp-gallery>.slides>.slide-next,
.blueimp-gallery>.slides>.slide-prev {
  visibility: visible;
}

.blueimp-gallery>.slides>.slide-loading {
  background: url("../img/loading.gif") center no-repeat;
  background-size: 64px 64px;
}

.blueimp-gallery-smil>.slides>.slide-loading {
  background-image: url("../img/loading.svg");
}

.blueimp-gallery>.slides>.slide-loading>.slide-content {
  opacity: 0;
}

.blueimp-gallery>.slides>.slide-error {
  background: url("../img/error.png") center no-repeat;
}

.blueimp-gallery-svgasimg>.slides>.slide-error {
  background-image: url("../img/error.svg");
}

.blueimp-gallery>.slides>.slide-error>.slide-content {
  display: none;
}

.blueimp-gallery-display>.next,
.blueimp-gallery-display>.prev {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 20px;
  padding: 10px 14px 10px 18px;
  margin-top: -23px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: url("../img/prev.png") center no-repeat #222;
  background-color: rgba(0,0,0,.5);
  border: 3px solid #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  opacity: .5;
  cursor: pointer;
  display: none;
}

.blueimp-gallery-display>.close,
.blueimp-gallery-display>.play-pause {
  width: 30px;
  height: 30px;
  display: none;
  right: 15px;
  position: absolute;
  cursor: pointer;
}

.blueimp-gallery-display>.next {
  right: 15px;
  left: auto;
  background-image: url("../img/next.png");
}

.blueimp-gallery-svgasimg>.prev {
  background-image: url("../img/prev.svg");
}

.blueimp-gallery-svgasimg>.next {
  background-image: url("../img/next.svg");
}

.blueimp-gallery-display>.close {
  top: 15px;
  background: url("../img/close.png") center no-repeat;
  opacity: .8;
}

.blueimp-gallery-svgasimg>.close {
  background-image: url("../img/close.svg");
}

.blueimp-gallery>.title {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0 60px 0 0;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-shadow: 0 0 2px #000;
  opacity: .8;
  display: none;
}

.blueimp-gallery-display>.play-pause {
  bottom: 15px;
  background: url("../img/play-pause.png") no-repeat;
  opacity: .5;
}

.blueimp-gallery-svgasimg>.play-pause {
  background-image: url("../img/play-pause.svg");
}

.blueimp-gallery-playing>.play-pause {
  background-position: -30px 0;
}

.blueimp-gallery-controls>.close,
.blueimp-gallery-controls>.next,
.blueimp-gallery-controls>.play-pause,
.blueimp-gallery-controls>.prev,
.blueimp-gallery-controls>.title {
  display: block;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.blueimp-gallery-left>.prev,
.blueimp-gallery-right>.next,
.blueimp-gallery-single>.next,
.blueimp-gallery-single>.play-pause,
.blueimp-gallery-single>.prev {
  display: none;
}

.blueimp-gallery>.close,
.blueimp-gallery>.next,
.blueimp-gallery>.play-pause,
.blueimp-gallery>.prev,
.blueimp-gallery>.slides>.slide>.slide-content {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.blueimp-gallery>.close:hover,
.blueimp-gallery>.next:hover,
.blueimp-gallery>.play-pause:hover,
.blueimp-gallery>.prev:hover,
.blueimp-gallery>.title:hover {
  color: #fff;
  opacity: 1;
}

@supports (object-fit:contain) {
  .blueimp-gallery-contain>.slides>.slide>.slide-content,
  .blueimp-gallery-contain>.slides>.slide>.slide-content>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (prefers-color-scheme:light) {
  .blueimp-gallery-carousel {
    background: #fff;
  }
}

.blueimp-gallery>.indicator {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: 15px;
  left: 15px;
  margin: 0 40px;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 10px;
  display: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.blueimp-gallery>.indicator>li {
  display: inline-block;
  position: relative;
  width: 9px;
  height: 9px;
  margin: 6px 3px 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid transparent;
  background: #ccc;
  background: center no-repeat rgba(255,255,255,.25);
  border-radius: 5px;
  box-shadow: 0 0 2px #000;
  opacity: .5;
  cursor: pointer;
}

.blueimp-gallery>.indicator>.active,
.blueimp-gallery>.indicator>li:hover {
  background-color: #fff;
  border-color: #fff;
  opacity: 1;
}

.blueimp-gallery>.indicator>li:after {
  opacity: 0;
  display: block;
  position: absolute;
  content: '';
  top: -5em;
  left: 4px;
  width: 75px;
  height: 75px;
  transition: transform .6s ease-out,opacity .4s ease-out;
  transform: translateX(-50%) translateY(0) translateZ(0);
  pointer-events: none;
}

.blueimp-gallery>.indicator>li:hover:after {
  opacity: 1;
  border-radius: 50%;
  background: inherit;
  transform: translateX(-50%) translateY(-5px) translateZ(0);
}

.blueimp-gallery>.indicator>.active:after {
  display: none;
}

.blueimp-gallery-controls>.indicator {
  display: block;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.blueimp-gallery-single>.indicator,
.blueimp-gallery>.slides>.slide>.video-playing>.video-cover,
.blueimp-gallery>.slides>.slide>.video-playing>.video-play {
  display: none;
}

.blueimp-gallery>.slides>.slide>.video-content>.video-cover,
.blueimp-gallery>.slides>.slide>.video-content>iframe,
.blueimp-gallery>.slides>.slide>.video-content>video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.blueimp-gallery>.slides>.slide>.video-content>.video-cover {
  background: center no-repeat;
  background-size: contain;
}

.blueimp-gallery>.slides>.slide>.video-iframe>.video-cover {
  background-color: #000;
  background-color: rgba(0,0,0,.7);
}

.blueimp-gallery>.slides>.slide>.video-content>.video-play {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: -64px auto 0;
  width: 128px;
  height: 128px;
  background: url("../img/video-play.png") center no-repeat;
  opacity: .8;
  cursor: pointer;
}

.blueimp-gallery-svgasimg>.slides>.slide>.video-content>.video-play {
  background-image: url("../img/video-play.svg");
}

.blueimp-gallery>.slides>.slide>.video-loading>.video-play {
  background: url("../img/loading.gif") center no-repeat;
  background-size: 64px 64px;
}

.blueimp-gallery-smil>.slides>.slide>.video-loading>.video-play {
  background-image: url("../img/loading.svg");
}

.blueimp-gallery>.slides>.slide>.video-content>.video-play:hover {
  opacity: 1;
}
@charset "UTF-8";

.blueimp-gallery .modal-body {
  position: relative;
  text-align: center;
  padding: 0 0 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.blueimp-gallery .modal-footer {
  margin: 0;
}

.blueimp-gallery .modal-body .video-content a,
.blueimp-gallery .modal-body .video-content iframe,
.blueimp-gallery .modal-body .video-content video,
.blueimp-gallery .modal-body img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.blueimp-gallery .modal-body .video-content video {
  display: none;
}

.blueimp-gallery .modal-body .video-playing video {
  display: block;
}

.blueimp-gallery .modal-body .video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  left: 100%;
}

.blueimp-gallery .modal-body .video-playing iframe {
  left: 0;
}

.blueimp-gallery .modal-body .video-playing a,
.blueimp-gallery .modal-body .video-playing img {
  display: none;
}

.blueimp-gallery .modal-body .video-content a {
  cursor: pointer;
}

.blueimp-gallery .modal-body .video-content a:after {
  font-family: "Glyphicons Halflings";
  -webkit-font-smoothing: antialiased;
  content: "\e029";
  font-size: 64px;
  line-height: 64px;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  margin: -32px 0 0 -32px;
}

.blueimp-gallery .modal-body .video-loading a {
  background: url("../img/loading.gif") center no-repeat;
  background-size: 64px 64px;
}

.blueimp-gallery .modal-body .video-loading a:after {
  content: none;
}

@media screen and (min-width:768px) {
  .blueimp-gallery .modal-dialog {
    right: auto;
    left: auto;
    width: auto;
    max-width: 900px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.ta-hidden-input {
  width: 1px;
  height: 1px;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -10000px;
  left: -10000px;
  opacity: 0;
  overflow: hidden;
}

.ta-root.focussed>.ta-scroll-window.form-control {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.ta-editor.ta-html,
.ta-scroll-window.form-control {
  min-height: 300px;
  height: auto;
  overflow: auto;
  font-family: inherit;
  font-size: 100%;
}

.ta-scroll-window.form-control {
  position: relative;
  padding: 0;
}

.ta-scroll-window>.ta-bind {
  height: auto;
  min-height: 300px;
  padding: 6px 12px;
}

.ta-editor:focus {
  user-select: text;
}

.ta-resizer-handle-overlay {
  z-index: 100;
  position: absolute;
  display: none;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-info {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border: 1px solid #000;
  background-color: #FFF;
  padding: 0 4px;
  opacity: .7;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-background {
  position: absolute;
  bottom: 5px;
  right: 5px;
  left: 5px;
  top: 5px;
  border: 1px solid #000;
  background-color: rgba(0,0,0,.2);
}

.ta-resizer-handle-overlay>.ta-resizer-handle-corner {
  width: 10px;
  height: 10px;
  position: absolute;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-corner-tl {
  top: 0;
  left: 0;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-corner-tr {
  top: 0;
  right: 0;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-corner-bl {
  bottom: 0;
  left: 0;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

.ta-resizer-handle-overlay>.ta-resizer-handle-corner-br {
  bottom: 0;
  right: 0;
  border: 1px solid #000;
  cursor: se-resize;
  background-color: #fff;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover>.arrow,
.popover>.arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover>.arrow {
  border-width: 11px;
}

.popover>.arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top>.arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0,0,0,.25);
  border-bottom-width: 0;
}

.popover.top>.arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.bottom>.arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0,0,0,.25);
}

.popover.bottom>.arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.ngsb-wrap {
  -ms-touch-action: none;
}

.ngsb-wrap .ngsb-container {
  width: auto;
  overflow: hidden;
  transition: .5s all;
}

.ngsb-wrap:hover .ngsb-scrollbar {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.ngsb-wrap .ngsb-scrollbar {
  width: 16px;
  height: 100%;
  top: 0;
  right: 0;
  opacity: .75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.ngsb-wrap .ngsb-scrollbar a.ngsb-thumb-container {
  margin: 20px 0;
}

.ngsb-wrap .ngsb-scrollbar .ngsb-track {
  height: 100%;
  margin: 0 auto;
  width: 6px;
  background: #000;
  background: rgba(0,0,0,.4);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  box-shadow: 1px 1px 1px rgba(255,255,255,.1);
}

.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos {
  cursor: pointer;
  width: 100%;
  height: 30px;
}

.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos .ngsb-thumb {
  transition: .5s all;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  background: rgba(255,255,255,.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos:hover .ngsb-thumb {
  background: rgba(255,255,255,.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.ngsb-wrap .ngsb-scrollbar .ngsb-thumb-pos:active {
  background: rgba(255,255,255,.6);
  filter: "alpha(opacity=60)";
  -ms-filter: "alpha(opacity=60)";
}