
/* Global */

.jBox-wrapper {
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.jBox-container {
  background: #fff;
}

.jBox-content {
  padding: 8px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

/* jBox Tooltip */

.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .25);
          box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}

.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}

.jBox-hasTitle.jBox-Tooltip .jBox-content,
.jBox-hasTitle.jBox-Mouse .jBox-content {
  padding-top: 5px;
}

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

/* Pointer */

.jBox-pointer {
  position: absolute;
  overflow: hidden;
}

.jBox-pointer-top { top: 0; }
.jBox-pointer-bottom { bottom: 0; }
.jBox-pointer-left { left: 0; }
.jBox-pointer-right { right: 0; }

.jBox-pointer-top,
.jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}

.jBox-pointer-left,
.jBox-pointer-right {
  width: 12px;
  height: 30px;
}

.jBox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  -webkit-box-shadow: -1px -1px 2px rgba(0, 0, 0, .15);
          box-shadow: -1px -1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  -webkit-box-shadow: 1px -1px 2px rgba(0, 0, 0, .15);
          box-shadow: 1px -1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
}

.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  -webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, .15);
          box-shadow: -1px 1px 2px rgba(0, 0, 0, .15);
}

/* jBox Modal */

.jBox-Modal .jBox-container {
  border-radius: 4px;
}

.jBox-Modal .jBox-content {
  padding: 15px 20px;
}

.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}

.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 55px;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
          box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
}

/* Close button */

.jBox-closeButton {
  cursor: pointer;
  position: absolute;
}

.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}

.jBox-closeButton path {
  -webkit-transition: fill .2s;
  transition: fill .2s;
}

.jBox-closeButton path {
  fill: #aaa;
}

.jBox-closeButton:hover path {
  fill: #888;
}

.jBox-closeButton:active path {
  fill: #666;
}

/* Close button in overlay */

.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}

.jBox-overlay .jBox-closeButton path,
.jBox-overlay .jBox-closeButton:active path {
  fill: #ddd;
}

.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

/* Close button in title */

.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}

.jBox-closeButton-title .jBox-closeButton svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}

/* Close button in box */

.jBox-closeButton-box .jBox-closeButton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}

.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}

.jBox-hasTitle.jBox-Modal.jBox-closeButton-box .jBox-closeButton {
  background: #fafafa;
}

.jBox-closeButton-box:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
          box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.jBox-pointerPosition-top.jBox-closeButton-box:before {
  top: 5px;
}

.jBox-pointerPosition-right.jBox-closeButton-box:before {
  right: 2px;
}

/* Overlay */

.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .82);
}

/* Footer */

.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

/* Block scrolling */

body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

/* Draggable */

.jBox-draggable {
  cursor: move;
}

/* Spinner */

@-webkit-keyframes jBoxLoading {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes jBoxLoading {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.jBox-loading .jBox-content {
  opacity: .2;
}

.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

.jBox-spinner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.jBox-spinner:before {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .2);
  border-top-color: rgba(0, 0, 0, .8);
  -webkit-animation: jBoxLoading .6s linear infinite;
          animation: jBoxLoading .6s linear infinite;
}

/* Animations */

[class^="jBox-animated-"],
[class*=" jBox-animated-"] {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes jBox-tada {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.8) rotate(-4deg);transform: scale(0.8) rotate(-4deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.2) rotate(4deg);transform: scale(1.2) rotate(4deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.2) rotate(-4deg);transform: scale(1.2) rotate(-4deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

@keyframes jBox-tada {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.8) rotate(-4deg);transform: scale(0.8) rotate(-4deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.2) rotate(4deg);transform: scale(1.2) rotate(4deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.2) rotate(-4deg);transform: scale(1.2) rotate(-4deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

.jBox-animated-tada {
  -webkit-animation: jBox-tada 1s;
          animation: jBox-tada 1s;
}

@-webkit-keyframes jBox-tadaSmall {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-2deg);transform: scale(0.9) rotate(-2deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(2deg);transform: scale(1.1) rotate(2deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-2deg);transform: scale(1.1) rotate(-2deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

@keyframes jBox-tadaSmall {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  10%, 20% {-webkit-transform: scale(0.9) rotate(-2deg);transform: scale(0.9) rotate(-2deg);}
  30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(2deg);transform: scale(1.1) rotate(2deg);}
  40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-2deg);transform: scale(1.1) rotate(-2deg);}
  100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}
}

.jBox-animated-tadaSmall {
  -webkit-animation: jBox-tadaSmall 1s;
          animation: jBox-tadaSmall 1s;
}

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

@keyframes jBox-flash {
  0%, 50%, 100% {opacity: 1;}  
  25%, 75% {opacity: 0;}
}

.jBox-animated-flash {
  -webkit-animation: jBox-flash .5s;
          animation: jBox-flash .5s;
}

@-webkit-keyframes jBox-shake {
  0%, 100% {-webkit-transform: translateX(0);transform: translateX(0);}
  20%, 60% {-webkit-transform: translateX(-6px);transform: translateX(-6px);}
  40%, 80% {-webkit-transform: translateX(6px);transform: translateX(6px);}
}

@keyframes jBox-shake {
  0%, 100% {-webkit-transform: translateX(0);transform: translateX(0);}
  20%, 60% {-webkit-transform: translateX(-6px);transform: translateX(-6px);}
  40%, 80% {-webkit-transform: translateX(6px);transform: translateX(6px);}
}

.jBox-animated-shake {
  -webkit-animation: jBox-shake .4s;
          animation: jBox-shake .4s;
}

@-webkit-keyframes jBox-pulseUp {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.15);transform: scale(1.15);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-pulseUp {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.15);transform: scale(1.15);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-pulseUp {
  -webkit-animation: jBox-pulseUp .25s;
          animation: jBox-pulseUp .25s;
}

@-webkit-keyframes jBox-pulseDown {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(0.85);transform: scale(0.85);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-pulseDown {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(0.85);transform: scale(0.85);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-pulseDown {
  -webkit-animation: jBox-pulseDown .25s;
          animation: jBox-pulseDown .25s;
}

@-webkit-keyframes jBox-popIn {
  0% {-webkit-transform: scale(0);transform: scale(0);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

@keyframes jBox-popIn {
  0% {-webkit-transform: scale(0);transform: scale(0);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(1);transform: scale(1);}
}

.jBox-animated-popIn {
  -webkit-animation: jBox-popIn .25s;
          animation: jBox-popIn .25s;
}

@-webkit-keyframes jBox-popOut {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(0);transform: scale(0);}
}

@keyframes jBox-popOut {
  0% {-webkit-transform: scale(1);transform: scale(1);}
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}
  100% {-webkit-transform: scale(0);transform: scale(0);}
}

.jBox-animated-popOut {
  -webkit-animation: jBox-popOut .25s;
          animation: jBox-popOut .25s;
}

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

@keyframes jBox-fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.jBox-animated-fadeIn {
  -webkit-animation: jBox-fadeIn .2s;
          animation: jBox-fadeIn .2s;
}

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

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

.jBox-animated-fadeOut {
  -webkit-animation: jBox-fadeOut .2s;
          animation: jBox-fadeOut .2s;
}

@-webkit-keyframes jBox-slideUp {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(-300px);transform: translateY(-300px); opacity: 0;}
}

@keyframes jBox-slideUp {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(-300px);transform: translateY(-300px); opacity: 0;}
}

.jBox-animated-slideUp {
  -webkit-animation: jBox-slideUp .4s;
          animation: jBox-slideUp .4s;
}

@-webkit-keyframes jBox-slideRight {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(300px);transform: translateX(300px); opacity: 0;}
}

@keyframes jBox-slideRight {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(300px);transform: translateX(300px); opacity: 0;}
}

.jBox-animated-slideRight {
  -webkit-animation: jBox-slideRight .4s;
          animation: jBox-slideRight .4s;
}

@-webkit-keyframes jBox-slideDown {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(300px);transform: translateY(300px); opacity: 0;}
}

@keyframes jBox-slideDown {
  0% {-webkit-transform: translateY(0);transform: translateY(0);}
  100% {-webkit-transform: translateY(300px);transform: translateY(300px); opacity: 0;}
}

.jBox-animated-slideDown {
  -webkit-animation: jBox-slideDown .4s;
          animation: jBox-slideDown .4s;
}

@-webkit-keyframes jBox-slideLeft {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(-300px);transform: translateX(-300px); opacity: 0;}
}

@keyframes jBox-slideLeft {
  0% {-webkit-transform: translateX(0);transform: translateX(0);}
  100% {-webkit-transform: translateX(-300px);transform: translateX(-300px); opacity: 0;}
}

.jBox-animated-slideLeft {
  -webkit-animation: jBox-slideLeft .4s;
          animation: jBox-slideLeft .4s;
}
.select2-container{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{-webkit-box-sizing:border-box;box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;-webkit-box-shadow:none;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
.spd .spd-carousel-content:after {
  content: '';
  display: block;
  clear: both; }

.spd .spd-carousel-content-wr {
  overflow: hidden; }

.spd .spd-carousel-slide {
  width: 100%;
  position: absolute;
  float: left;
  -webkit-transition: left 0.7s ease, right 0.7s ease, top 0.7s ease, bottom 0.7s ease;
  transition: left 0.7s ease, right 0.7s ease, top 0.7s ease, bottom 0.7s ease;
  height: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%; }

.spd .slide-container {
  height: inherit;
  padding: 8% 12% 6%; }
  .spd .slide-container > .slide-col {
    width: 33.3%;
    height: inherit;
    float: left; }
  .spd .slide-container > .slide-col-1 > .slide-row {
    height: 100%; }
  .spd .slide-container > .slide-col-3 > .slide-row {
    height: 33.3%; }

.spd .slide-content {
  height: 100%;
  position: relative;
  -webkit-transition: left 0.7s ease, right 0.7s ease, top 0.7s ease, bottom 0.7s ease;
  transition: left 0.7s ease, right 0.7s ease, top 0.7s ease, bottom 0.7s ease;
  padding: 10px; }
  .spd .slide-content__inner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    -webkit-box-shadow: 18.4px 19.7px 44.8px 9.2px rgba(0, 0, 0, 0.81);
            box-shadow: 18.4px 19.7px 44.8px 9.2px rgba(0, 0, 0, 0.81); }
  .spd .slide-content.line .slide-content__inner {
    -webkit-box-shadow: 38.9px 41.7px 44.8px 9.2px rgba(0, 0, 0, 0.81);
            box-shadow: 38.9px 41.7px 44.8px 9.2px rgba(0, 0, 0, 0.81); }

.spd .slide-row .slide-col {
  float: left;
  height: 100%; }

.spd .spd-carousel-direction {
  position: absolute;
  top: 50%;
  padding: 5px;
  border: 2px solid #fff;
  margin-top: -28px;
  width: 110px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8); }
  .spd .spd-carousel-direction__icon {
    font-size: 40px; }
  .spd .spd-carousel-direction__icon, .spd .spd-carousel-direction__title {
    color: #007EE1;
    vertical-align: middle; }
  .spd .spd-carousel-direction__title {
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    line-height: 1;
    margin-top: -6.5px; }
  .spd .spd-carousel-direction:focus {
    outline: none; }
  .spd .spd-carousel-direction.prev {
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
    left: -75px;
    text-align: right; }
  .spd .spd-carousel-direction.prev:hover {
    left: 5px; }
  .spd .spd-carousel-direction.next {
    right: -75px;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    text-align: left; }
  .spd .spd-carousel-direction.next:hover {
    right: 5px; }
  .spd .spd-carousel-direction.next .spd-carousel-direction__title {
    right: 5px; }
  .spd .spd-carousel-direction.next .spd-carousel-direction__icon {
    margin-left: 5px; }
  .spd .spd-carousel-direction.prev .spd-carousel-direction__title {
    left: 5px; }
  .spd .spd-carousel-direction.prev .spd-carousel-direction__icon {
    margin-right: 5px; }

.spd * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.spd .spd-carousel {
  position: relative;
  overflow: hidden; }

.spd .slide-content__inner-title {
  padding: 20px 20px 0 20px;
  text-transform: uppercase;
  color: #f2f2fd;
  font-size: 1.5em;
}

.spd .slide-content__inner-description {
  padding: 10px 20px 20px 20px;
  color: #f2f2fd;
}

@media (max-width: 480px) {
  .spd .slide-content__inner-description {
    display: none;
  }
}

.spd .slide-content__inner-link {
  padding: 10px 20px;
  color: #f2f2fd;
  position: absolute;
  right: 15px;
  bottom: -15px;
}.spd-monitor .scrollable-block {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto; }
  .spd-monitor .scrollable-block_monitor {
    width: inherit;
    height: inherit; }
  .spd-monitor .scrollable-block__img {
    width: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-property: margin-top;
    transition-property: margin-top;
    -webkit-transition-duration: 4000ms;
            transition-duration: 4000ms; }

.spd-monitor .monitor-container {
  display: inline-block;
  position: relative;
  width: 100%; }
  .spd-monitor .monitor-container:after {
    content: '';
    display: block;
    padding-bottom: 81%; }

.spd-monitor .screen {
  width: 100%;
  height: 100%;
  background: url(../themes/spandd/assets/img/monitor.svg) no-repeat 50%;
  position: absolute;
  background-size: contain; }
  .spd-monitor .screen__content {
    width: 92%;
    height: 64%;
    top: 4.2%;
    left: 3.8%;
    position: absolute;
    overflow: hidden; }

.spd-monitor {
  text-align: center; }
  .spd-monitor * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
@charset "UTF-8";
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container:before, .container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-vl-1, .col-fh-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-vl-2, .col-fh-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-vl-3, .col-fh-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-vl-4, .col-fh-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-vl-5, .col-fh-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-vl-6, .col-fh-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-vl-7, .col-fh-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-vl-8, .col-fh-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-vl-9, .col-fh-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-vl-10, .col-fh-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-vl-11, .col-fh-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-vl-12, .col-fh-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1330px) {
  .col-vl-1, .col-vl-2, .col-vl-3, .col-vl-4, .col-vl-5, .col-vl-6, .col-vl-7, .col-vl-8, .col-vl-9, .col-vl-10, .col-vl-11, .col-vl-12 {
    float: left;
  }
  .col-vl-1 {
    width: 8.33333333%;
  }
  .col-vl-2 {
    width: 16.66666667%;
  }
  .col-vl-3 {
    width: 25%;
  }
  .col-vl-4 {
    width: 33.33333333%;
  }
  .col-vl-5 {
    width: 41.66666667%;
  }
  .col-vl-6 {
    width: 50%;
  }
  .col-vl-7 {
    width: 58.33333333%;
  }
  .col-vl-8 {
    width: 66.66666667%;
  }
  .col-vl-9 {
    width: 75%;
  }
  .col-vl-10 {
    width: 83.33333333%;
  }
  .col-vl-11 {
    width: 91.66666667%;
  }
  .col-vl-12 {
    width: 100%;
  }
  .col-vl-pull-0 {
    right: auto;
  }
  .col-vl-pull-1 {
    right: 8.33333333%;
  }
  .col-vl-pull-2 {
    right: 16.66666667%;
  }
  .col-vl-pull-3 {
    right: 25%;
  }
  .col-vl-pull-4 {
    right: 33.33333333%;
  }
  .col-vl-pull-5 {
    right: 41.66666667%;
  }
  .col-vl-pull-6 {
    right: 50%;
  }
  .col-vl-pull-7 {
    right: 58.33333333%;
  }
  .col-vl-pull-8 {
    right: 66.66666667%;
  }
  .col-vl-pull-9 {
    right: 75%;
  }
  .col-vl-pull-10 {
    right: 83.33333333%;
  }
  .col-vl-pull-11 {
    right: 91.66666667%;
  }
  .col-vl-pull-12 {
    right: 100%;
  }
  .col-vl-push-0 {
    left: auto;
  }
  .col-vl-push-1 {
    left: 8.33333333%;
  }
  .col-vl-push-2 {
    left: 16.66666667%;
  }
  .col-vl-push-3 {
    left: 25%;
  }
  .col-vl-push-4 {
    left: 33.33333333%;
  }
  .col-vl-push-5 {
    left: 41.66666667%;
  }
  .col-vl-push-6 {
    left: 50%;
  }
  .col-vl-push-7 {
    left: 58.33333333%;
  }
  .col-vl-push-8 {
    left: 66.66666667%;
  }
  .col-vl-push-9 {
    left: 75%;
  }
  .col-vl-push-10 {
    left: 83.33333333%;
  }
  .col-vl-push-11 {
    left: 91.66666667%;
  }
  .col-vl-push-12 {
    left: 100%;
  }
  .col-vl-offset-0 {
    margin-left: 0%;
  }
  .col-vl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-vl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-vl-offset-3 {
    margin-left: 25%;
  }
  .col-vl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-vl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-vl-offset-6 {
    margin-left: 50%;
  }
  .col-vl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-vl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-vl-offset-9 {
    margin-left: 75%;
  }
  .col-vl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-vl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-vl-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1890px) {
  .col-fh-1, .col-fh-2, .col-fh-3, .col-fh-4, .col-fh-5, .col-fh-6, .col-fh-7, .col-fh-8, .col-fh-9, .col-fh-10, .col-fh-11, .col-fh-12 {
    float: left;
  }
  .col-fh-1 {
    width: 8.33333333%;
  }
  .col-fh-2 {
    width: 16.66666667%;
  }
  .col-fh-3 {
    width: 25%;
  }
  .col-fh-4 {
    width: 33.33333333%;
  }
  .col-fh-5 {
    width: 41.66666667%;
  }
  .col-fh-6 {
    width: 50%;
  }
  .col-fh-7 {
    width: 58.33333333%;
  }
  .col-fh-8 {
    width: 66.66666667%;
  }
  .col-fh-9 {
    width: 75%;
  }
  .col-fh-10 {
    width: 83.33333333%;
  }
  .col-fh-11 {
    width: 91.66666667%;
  }
  .col-fh-12 {
    width: 100%;
  }
  .col-fh-pull-0 {
    right: auto;
  }
  .col-fh-pull-1 {
    right: 8.33333333%;
  }
  .col-fh-pull-2 {
    right: 16.66666667%;
  }
  .col-fh-pull-3 {
    right: 25%;
  }
  .col-fh-pull-4 {
    right: 33.33333333%;
  }
  .col-fh-pull-5 {
    right: 41.66666667%;
  }
  .col-fh-pull-6 {
    right: 50%;
  }
  .col-fh-pull-7 {
    right: 58.33333333%;
  }
  .col-fh-pull-8 {
    right: 66.66666667%;
  }
  .col-fh-pull-9 {
    right: 75%;
  }
  .col-fh-pull-10 {
    right: 83.33333333%;
  }
  .col-fh-pull-11 {
    right: 91.66666667%;
  }
  .col-fh-pull-12 {
    right: 100%;
  }
  .col-fh-push-0 {
    left: auto;
  }
  .col-fh-push-1 {
    left: 8.33333333%;
  }
  .col-fh-push-2 {
    left: 16.66666667%;
  }
  .col-fh-push-3 {
    left: 25%;
  }
  .col-fh-push-4 {
    left: 33.33333333%;
  }
  .col-fh-push-5 {
    left: 41.66666667%;
  }
  .col-fh-push-6 {
    left: 50%;
  }
  .col-fh-push-7 {
    left: 58.33333333%;
  }
  .col-fh-push-8 {
    left: 66.66666667%;
  }
  .col-fh-push-9 {
    left: 75%;
  }
  .col-fh-push-10 {
    left: 83.33333333%;
  }
  .col-fh-push-11 {
    left: 91.66666667%;
  }
  .col-fh-push-12 {
    left: 100%;
  }
  .col-fh-offset-0 {
    margin-left: 0%;
  }
  .col-fh-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-fh-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-fh-offset-3 {
    margin-left: 25%;
  }
  .col-fh-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-fh-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-fh-offset-6 {
    margin-left: 50%;
  }
  .col-fh-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-fh-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-fh-offset-9 {
    margin-left: 75%;
  }
  .col-fh-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-fh-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-fh-offset-12 {
    margin-left: 100%;
  }
}

@-ms-viewport {
  width: device-width;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-vl {
  display: none !important;
}

.visible-fh {
  display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block,
.visible-sm-block, .visible-sm-inline, .visible-sm-inline-block,
.visible-md-block, .visible-md-inline, .visible-md-inline-block,
.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block,
.visible-vl-block, .visible-vl-inline, .visible-vl-inline-block,
.visible-fh-block, .visible-fh-inline, .visible-fh-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl {
    display: block !important;
  }
  table.visible-vl {
    display: table !important;
  }
  tr.visible-vl {
    display: table-row !important;
  }
  th.visible-vl,
  td.visible-vl {
    display: table-cell !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-block {
    display: block !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-inline {
    display: inline !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .visible-vl-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh {
    display: block !important;
  }
  table.visible-fh {
    display: table !important;
  }
  tr.visible-fh {
    display: table-row !important;
  }
  th.visible-fh,
  td.visible-fh {
    display: table-cell !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-block {
    display: block !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-inline {
    display: inline !important;
  }
}

@media (min-width: 1890px) {
  .visible-fh-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1329px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1330px) and (max-width: 1889px) {
  .hidden-vl {
    display: none !important;
  }
}

@media (min-width: 1890px) {
  .hidden-fh {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.eot?v=4.7.0");
  src: url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../themes/spandd/assets/fonts/font-awesome//fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

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

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

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

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

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

.pull-left {
  float: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../themes/spandd/assets/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@font-face {
  font-family: "Lato Regular";
  src: url("../themes/spandd/assets/fonts/Lato/Lato-Regular.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Lato Bold";
  src: url("../themes/spandd/assets/fonts/Lato/Lato-Bold.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Lato Light";
  src: url("../themes/spandd/assets/fonts/Lato/Lato-Light.ttf");
  font-style: normal;
  font-weight: normal;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ---------------------------------Typography------------------------------------ */
html,
body {
  font-family: "Lato regular", Arial, sans-serif;
  line-height: 23px;
  font-size: 13px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

strong {
  font-family: "Lato Bold";
}

/* ---------------------------------Links------------------------------------ */
a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* ---------------------------------Button------------------------------------ */
button {
  background-color: transparent;
  border: none;
  padding: 0;
}

button:focus {
  outline: none;
}

/* ---------------------------------html body------------------------------------ */
html,
body {
  height: 100%;
}

body {
  position: relative;
}

/* ---------------------------------Img------------------------------------ */
img {
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

/* ---------------------------------Input------------------------------------ */
input:focus {
  outline: none;
}

/* ---------------------------------Textarea------------------------------------ */
textarea:focus {
  outline: none;
}

/* ---------------------------------P------------------------------------ */
p {
  margin: 10px 0;
}

/* ---------------------------------List------------------------------------ */
ul,
ol {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

/* ---------------------------------Disable video controls on ios------------------------------------ */
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ---------------------------------Colors------------------------------------ */
.white-c {
  color: #ffffff;
}

.blue-bg {
  background-color: #007EE1;
}

/* ---------------------------------mixins------------------------------------ */
/* ---------------------------------no-gutters------------------------------------ */
.no-gutters > * {
  padding-left: 0;
  padding-right: 0;
}

/* ---------------------------------no-float------------------------------------ */
.no-float > [class*='col-'] {
  float: none;
}

.ttu {
  text-transform: uppercase;
}

/* ---------------------------------Responsive vertical align------------------------------------ */
[class*='top-xs'] {
  vertical-align: top;
}

[class*='bottom-xs'] {
  vertical-align: bottom;
}

[class*='middle-xs'] {
  vertical-align: middle;
}

@media (min-width: 480px) {
  [class*='top-xs'] {
    vertical-align: top;
  }
  [class*='bottom-xs'] {
    vertical-align: bottom;
  }
  [class*='middle-xs'] {
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  [class*='top-sm'] {
    vertical-align: top;
  }
  [class*='bottom-sm'] {
    vertical-align: bottom;
  }
  [class*='middle-sm'] {
    vertical-align: middle;
  }
}

@media (min-width: 992px) {
  [class*='top-md'] {
    vertical-align: top;
  }
  [class*='bottom-md'] {
    vertical-align: bottom;
  }
  [class*='middle-md'] {
    vertical-align: middle;
  }
}

@media (min-width: 1200px) {
  [class*='top-lg'] {
    vertical-align: top;
  }
  [class*='bottom-lg'] {
    vertical-align: bottom;
  }
  [class*='middle-lg'] {
    vertical-align: middle;
  }
}

@media (min-width: 1330px) {
  [class*='top-vl'] {
    vertical-align: top;
  }
  [class*='bottom-vl'] {
    vertical-align: bottom;
  }
  [class*='middle-vl'] {
    vertical-align: middle;
  }
}

@media (min-width: 1890px) {
  [class*='top-fh'] {
    vertical-align: top;
  }
  [class*='bottom-fh'] {
    vertical-align: bottom;
  }
  [class*='middle-fh'] {
    vertical-align: middle;
  }
}

/* ---------------------------------Responsive table------------------------------------ */
.table-xs {
  display: table;
  width: 100%;
}

.table-xs > * {
  display: table-cell;
  float: none;
}

@media (min-width: 480px) {
  .table-xs {
    display: table;
    width: 100%;
  }
  .table-xs > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 768px) {
  .table-sm {
    display: table;
    width: 100%;
  }
  .table-sm > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 992px) {
  .table-md {
    display: table;
    width: 100%;
  }
  .table-md > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1200px) {
  .table-lg {
    display: table;
    width: 100%;
  }
  .table-lg > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1330px) {
  .table-vl {
    display: table;
    width: 100%;
  }
  .table-vl > * {
    display: table-cell;
    float: none;
  }
}

@media (min-width: 1890px) {
  .table-fh {
    display: table;
    width: 100%;
  }
  .table-fh > * {
    display: table-cell;
    float: none;
  }
}

/* ---------------------------------Responsive horizontal align------------------------------------ */
[class*='left-xs'] {
  text-align: left;
}

[class*='center-xs'] {
  text-align: center;
}

[class*='right-xs'] {
  text-align: right;
}

@media (min-width: 480px) {
  [class*='left-xs'] {
    text-align: left;
  }
  [class*='center-xs'] {
    text-align: center;
  }
  [class*='right-xs'] {
    text-align: right;
  }
}

@media (min-width: 768px) {
  [class*='left-sm'] {
    text-align: left;
  }
  [class*='center-sm'] {
    text-align: center;
  }
  [class*='right-sm'] {
    text-align: right;
  }
}

@media (min-width: 992px) {
  [class*='left-md'] {
    text-align: left;
  }
  [class*='center-md'] {
    text-align: center;
  }
  [class*='right-md'] {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  [class*='left-lg'] {
    text-align: left;
  }
  [class*='center-lg'] {
    text-align: center;
  }
  [class*='right-lg'] {
    text-align: right;
  }
}

@media (min-width: 1330px) {
  [class*='left-vl'] {
    text-align: left;
  }
  [class*='center-vl'] {
    text-align: center;
  }
  [class*='right-vl'] {
    text-align: right;
  }
}

@media (min-width: 1890px) {
  [class*='left-fh'] {
    text-align: left;
  }
  [class*='center-fh'] {
    text-align: center;
  }
  [class*='right-fh'] {
    text-align: right;
  }
}

/* ---------------------------------Responsive Gutters------------------------------------ */
[class*='gutters-5'] {
  margin-left: -5px;
  margin-right: -5px;
}

[class*='gutters-5'] > * {
  padding-left: 5px;
  padding-right: 5px;
}

[class*='gutters-10'] {
  margin-left: -10px;
  margin-right: -10px;
}

[class*='gutters-10'] > * {
  padding-left: 10px;
  padding-right: 10px;
}

[class*='gutters-30'] {
  margin-left: -30px;
  margin-right: -30px;
}

[class*='gutters-30'] > * {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 480px) {
  [class*='gutters-xs-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-xs-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 480px) {
  [class*='gutters-xs-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-xs-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 480px) {
  [class*='gutters-xs-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-xs-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  [class*='gutters-sm-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-sm-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 768px) {
  [class*='gutters-sm-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-sm-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  [class*='gutters-sm-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-sm-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  [class*='gutters-md-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-md-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 992px) {
  [class*='gutters-md-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-md-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  [class*='gutters-md-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-md-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  [class*='gutters-lg-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-lg-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1200px) {
  [class*='gutters-lg-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-lg-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  [class*='gutters-lg-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-lg-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1330px) {
  [class*='gutters-vl-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-vl-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1330px) {
  [class*='gutters-vl-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-vl-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1330px) {
  [class*='gutters-vl-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-vl-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1890px) {
  [class*='gutters-fh-5'] {
    margin-left: -5px;
    margin-right: -5px;
  }
  [class*='gutters-fh-5'] > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 1890px) {
  [class*='gutters-fh-10'] {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*='gutters-fh-10'] > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1890px) {
  [class*='gutters-fh-30'] {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*='gutters-fh-30'] > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ---------------------------------Hide------------------------------------ */
.hidden {
  display: none !important;
}

/* ---------------------------------Page wrapper------------------------------------ */
.page-wrapper {
  overflow-x: hidden;
}

/* ---------------------------------Page-helper------------------------------------ */
.page-helper {
  min-height: 0.1px;
}

/* ---------------------------------Page footer------------------------------------ */
/* ---------------------------------Static Footer------------------------------------ */
@media (min-width: 768px) {
  .page-wrapper {
    min-height: 100%;
  }
}

.navbar {
  display: table;
  width: 100%;
  /* ---------------------------------Logo------------------------------------ */
  /* ---------------------------------Nav------------------------------------ */
  /* ---------------------------------Toggle------------------------------------ */
  /* ---------------------------------Btn------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------Reached (plugin fixed)------------------------------------ */
  /* ---------------------------------Menu------------------------------------ */
  /* ---------------------------------Reached (plugin fixed)------------------------------------ */
  /* ---------------------------------Menu-wr------------------------------------ */
}

.navbar__logo {
  display: table-cell;
  width: 70px;
  height: inherit;
  vertical-align: middle;
}

.navbar__logo-img {
  display: block;
}

@media (min-width: 768px) {
  .navbar__logo {
    width: 100px;
  }
}

.navbar__nav {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.navbar__toggle {
  display: block;
  width: 50px;
  padding: 10px;
  margin-left: auto;
}

@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }
}

.navbar__toggle-separate:first-child {
  margin-top: 0;
}

.navbar__toggle-separate {
  display: block;
  width: 100%;
  background-color: #007EE1;
  height: 2px;
  margin-top: 5px;
}

.navbar__btn {
  color: #007EE1;
  border-width: 1px;
  border-style: solid;
  border-color: #007EE1;
  padding: 10px;
  text-transform: uppercase;
}

.navbar__btn:hover {
  border-color: transparent;
}

.navbar__link {
  display: inline-block;
  padding: 15px 15px 13px 15px;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  text-shadow: 1px 0 4px #000000;
}

.navbar__link:hover {
  background: url(../themes/spandd/assets/img/background/hatch.png) repeat 0;
  border-bottom: 2px solid #ffffff;
}

.s-navbar_reached .navbar__link {
  color: #007EE1;
  text-shadow: none;
}

.s-navbar_reached .navbar__link:hover {
  border-bottom: 2px solid #007EE1;
}

.navbar__menu {
  -webkit-transition: height ease 0.5s;
  transition: height ease 0.5s;
  background-color: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .s-navbar_reached .navbar__menu {
    background-color: rgba(255, 255, 255, 0.95);
  }
}

.navbar__menu-item {
  margin: 5px 0 5px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .navbar__menu {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar__menu-item {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .navbar__menu-wr {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    -webkit-transition: height ease 0.5s;
    transition: height ease 0.5s;
  }
}

@media (min-width: 768px) {
  .navbar__menu-wr {
    height: auto !important;
  }
}

.footer {
  background-color: #202427;
  /* ---------------------------------List------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------Contacts------------------------------------ */
  /* ---------------------------------Contact------------------------------------ */
}

.footer > .container {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../themes/spandd/assets/img/background/world-map-dark.png) no-repeat center 15px;
}

.footer__block {
  text-align: left;
}

.footer__content {
  margin-top: 20px;
}

.footer__title {
  position: relative;
  color: #A3B5C2;
  font-size: 16px;
  line-height: 29px;
  border-bottom: 1px dotted #A3B5C2;
  margin-bottom: 20px;
}

.footer__title:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  background-color: #007EE1;
  right: 0;
  bottom: 0;
  margin-bottom: -5.5px;
}

.footer__list-item {
  padding-left: 40px;
  position: relative;
}

.footer__list-item:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #747474;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -2.5px;
}

.footer__link {
  color: #747474;
}

.footer__link:hover {
  color: #A3B5C2;
}

.footer__contacts-item:first-child {
  margin-top: 0;
}

.footer__contacts-item {
  margin-top: 10px;
}

.footer__contact {
  display: inline-block;
  line-height: 30px;
}

.footer__contact_phone:hover .footer__contact-text {
  color: #A3B5C2;
}

.footer__contact_mail .footer__contact-text {
  color: #007EE1;
}

.footer__contact_mail:hover .footer__contact-text {
  color: #A3B5C2;
}

.footer__contact-text {
  color: #69767f;
}

.footer__contact-icon {
  width: 30px;
  text-align: center;
  color: #999999;
}

.footer__contact-text, .footer__contact-icon {
  display: inline-block;
  vertical-align: middle;
}

.b-main {
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Subtitle------------------------------------ */
  /* ---------------------------------Separate------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
}

.b-main__title {
  font-size: 33px;
  line-height: 42px;
  color: #007EE1;
  text-transform: capitalize;
  text-align: center;
}

.b-main__title_dotted {
  padding-bottom: 10px;
  border-bottom: 1px dotted #E1E1E1;
}

.b-main__description {
  color: #747474;
  text-align: center;
  margin-top: 20px;
}

.b-main__subtitle {
  margin-top: 20px;
  text-align: center;
  font-size: 21px;
  line-height: 29px;
  color: #747474;
}

.b-main__separate {
  margin-top: 20px;
  position: relative;
  width: 50%;
  height: 1px;
  background-color: #e1e1e1;
  margin-left: auto;
  margin-right: auto;
}

.b-main__separate:after {
  content: '';
  display: block;
  position: absolute;
  background-color: #FCFCFC;
  border-radius: 20px;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 2px;
  height: 9px;
  left: 50%;
  margin-left: -5px;
  margin-top: -4px;
  width: 9px;
}

.b-main__content {
  margin-top: 20px;
}

.b-service {
  /* ---------------------------------Links------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------LIST------------------------------------ */
}

.b-service__title {
  color: #007EE1;
  font-size: 33px;
  line-height: 42px;
}

.b-service__description {
  color: #747474;
  margin-top: 20px;
  font-size: 16px;
}

.b-service__links {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .b-service__links:before, .b-service__links:after {
    content: " ";
    display: table;
  }
  .b-service__links:after {
    clear: both;
  }
}

.b-service__link {
  display: block;
  color: #007EE1;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 10px;
}

.b-service__link:hover {
  color: #747474;
  text-decoration: none;
}

@media (min-width: 992px) {
  .b-service__link {
    width: 50%;
    float: left;
  }
}

.b-service__list {
  margin-top: 20px;
}

.b-service__list-title, .b-service__list-item {
  font-size: 16px;
  color: #747474;
}

.b-service__list-item {
  position: relative;
  padding-left: 40px;
}

.b-service__list-item:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 10px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: #747474;
}

.b-service-description {
  font-size: 20px;
  line-height: 34px;
  color: #747474;
  text-align: center;
  padding: 50px 0;
}

.b-project {
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Subtitle------------------------------------ */
  /* ---------------------------------btn------------------------------------ */
  /* ---------------------------------Skill------------------------------------ */
  /* ---------------------------------Info------------------------------------ */
  /* ---------------------------------Like------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
  /* ---------------------------------Divider------------------------------------ */
  /* ---------------------------------Tags------------------------------------ */
  /* ---------------------------------Tag------------------------------------ */
  /* ---------------------------------Review------------------------------------ */
}

.b-project__title {
  font-size: 16px;
  line-height: 27px;
  color: #007EE1;
}

.b-project__description {
  margin-bottom: 20px;
  color: #747474;
}

.b-project__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 27px;
  margin-top: 20px;
  color: #007EE1;
}

.b-project__btn {
  background: #88c149;
  padding: 6px 12px;
  margin-bottom: 20px;
}

.b-project__btn:hover {
  background: #222222;
}

.b-project__btn-text, .b-project__btn-icon {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.b-project__skill {
  margin-right: 10px;
  font-size: 12px;
  color: #747474;
  display: inline-block;
}

.b-project__skill-icon {
  margin-right: 5px;
}

.b-project__info {
  text-align: right;
}

.b-project__like, .b-project__divider-line, .b-project__tags {
  display: inline-block;
  vertical-align: middle;
}

.b-project__like {
  color: #007EE1;
}

.b-project__like:hover {
  color: #2A6496;
}

.b-project__link {
  color: #007EE1;
}

.b-project__link:hover {
  color: #2A6496;
}

.b-project__divider-line {
  width: 1px;
  height: 23px;
  background-color: #e6e6e6;
  margin-left: 5px;
  margin-right: 5px;
}

.b-project__tags-icon {
  color: #747474;
}

.b-project__tag {
  color: #007EE1;
}

.b-project__tag:hover {
  color: #2A6496;
}

.b-project__tag:after {
  content: ',';
}

.b-project__tag:last-child:after {
  content: '';
}

.h-main {
  padding-top: 36px;
  background-color: #007EE1;
  height: 255px;
  overflow: hidden;
  /* ---------------------------------Row------------------------------------ */
  /* ---------------------------------Bg------------------------------------ */
  /* ---------------------------------brs------------------------------------ */
}

@media (min-width: 992px) {
  .h-main {
    height: 270px;
    padding-top: 50px;
  }
}

.h-main__title {
  font-size: 55px;
  line-height: 65px;
  color: #ffffff;
}

@media (min-width: 992px) {
  .h-main__title {
    position: relative;
    float: left;
    width: 50%;
    left: 25%;
    text-align: center;
  }
}

.h-main__row {
  position: relative;
  padding-top: 55px;
}

.h-main__row:before, .h-main__row:after {
  content: " ";
  display: table;
}

.h-main__row:after {
  clear: both;
}

@media (min-width: 992px) {
  .h-main__row {
    padding-top: 80px;
  }
}

.h-main__bg {
  position: relative;
  width: 50%;
  float: right;
  height: inherit;
}

.h-main__bg-img {
  position: absolute;
  height: 220px;
  left: 0;
  max-width: none;
}

@media (min-width: 992px) {
  .h-main__bg-img_services {
    left: auto;
    right: -145px;
  }
}

@media (min-width: 992px) {
  .h-main__bg-img_works {
    left: auto;
    right: -100px;
  }
}

@media (min-width: 480px) {
  .h-main__bg-img_team {
    left: auto;
    right: 0;
  }
}

@media (max-width: 991px) {
  .h-main__brs {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .h-main__brs {
    position: relative;
    float: left;
    width: 25%;
    right: 50%;
    line-height: 44px;
  }
}

.h-main__brs-link {
  font-size: 12px;
  position: relative;
  display: inline-block;
  color: #B8DDF9;
}

.h-main__brs-link:hover {
  color: #cccccc;
}

.h-main__brs-link + .h-main__brs-link:before {
  content: "/\A0";
  padding: 0 5px;
  color: #ccc;
}

.s-main {
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 20px 0;
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Content------------------------------------ */
}

@media (min-width: 992px) {
  .s-main {
    padding: 40px 0;
  }
}

.s-main__title {
  font-size: 33px;
  line-height: 42px;
  color: #007EE1;
  text-transform: capitalize;
}

.s-main__content {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .s-main__content {
    margin-top: 40px;
  }
}

.s-navbar {
  position: relative;
  display: block;
  background-color: transparent;
  -webkit-transition: background-color ease 0.5s, top 0.5s ease;
  transition: background-color ease 0.5s, top 0.5s ease;
  /* ---------------------------------Fixed------------------------------------ */
  /* ---------------------------------Reached------------------------------------ */
}

.s-navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 3;
}

.s-navbar_reached {
  background-color: rgba(255, 255, 255, 0.95);
}

.s-service {
  padding: 50px 0;
}

.s-service:nth-child(even) {
  background-color: #f5f5f5;
}

.s-project {
  padding: 20px 0;
}

@media (min-width: 992px) {
  .s-project {
    padding: 40px 0;
  }
}

.s-project__title {
  font-size: 26px;
  line-height: 42px;
  padding-bottom: 10px;
  font-family: "Lato Light";
  color: #007EE1;
  text-align: center;
  border-bottom: 1px dotted #E1E1E1;
}

.s-project__body {
  margin-top: 40px;
}

.s-project__nav-link {
  padding: 10px 5px;
  font-size: 20px;
  color: #007EE1;
  display: inline-block;
}

.s-project__nav-link:hover {
  color: #2A6496;
}

@media (max-width: 991px) {
  .s-project__nav_direction {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .s-project__header:before, .s-project__header:after {
    content: " ";
    display: table;
  }
  .s-project__header:after {
    clear: both;
  }
  .s-project__title {
    float: left;
    position: relative;
    width: 80%;
  }
  .s-project__nav {
    width: 10%;
  }
  .s-project__nav_back {
    float: left;
  }
  .s-project__nav_direction {
    float: right;
    text-align: right;
  }
}

.f-main {
  background-color: #ECF0F1;
  padding: 20px 15px;
  text-align: left;
}

.f-main__group {
  margin-bottom: 15px;
}

.f-main__group_last {
  margin-top: 30px;
}

.f-main__label {
  display: block;
  color: #747474;
  margin-bottom: 5px;
}

.f-main__input-field {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  width: 100%;
  display: block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}

.f-main__textarea-field {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  width: 100%;
  display: block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}

.f-main__submit {
  background-color: #007EE1;
  padding: 6px 12px;
  line-height: 20px;
  font-size: 14px;
  color: #ffffff;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.f-main__submit:hover {
  background-color: #000000;
}

@media (min-width: 768px) {
  .form-error {
    color: #ffffff;
  }
}

.form-error.alert {
  background-color: #007EE1;
  border-radius: 10px;
  padding: 20px;
}

.form-error.alert ul li {
  line-height: 16px;
}

.carousel-projects {
  padding-top: 30px;
  position: relative;
}

.carousel-projects .owl-prev,
.carousel-projects .owl-next,
.carousel-projects .owl-play {
  position: absolute;
  color: #007EE1;
  width: 20px;
  text-align: center;
  top: 0;
  left: 50%;
}

.carousel-projects .owl-prev:hover,
.carousel-projects .owl-next:hover,
.carousel-projects .owl-play:hover {
  opacity: 0.5;
}

.carousel-projects .owl-prev,
.carousel-projects .owl-next {
  font-size: 20px;
}

.carousel-projects .owl-prev {
  margin-left: -30px;
}

.carousel-projects .owl-next {
  margin-left: 10px;
}

.carousel-projects .owl-play {
  font-size: 14px;
  margin-left: -9px;
}

.carousel-projects .owl-play.active .fa-pause:before,
.carousel-projects .owl-play.active .fa-pause:after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #007EE1;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7.5px;
}

.carousel-projects .owl-play.active .fa-pause:before {
  margin-left: 5px;
}

.carousel-projects .owl-play.active .fa-pause:after {
  margin-left: 11px;
}

.carousel-projects .owl-play:hover {
  cursor: pointer;
}

.carousel-reviews {
  position: relative;
}

.carousel-reviews .owl-prev,
.carousel-reviews .owl-next {
  position: absolute;
  font-size: 50px;
  top: 50%;
  margin-top: -25px;
  color: #BDC3C7;
}

.carousel-reviews .owl-prev:hover,
.carousel-reviews .owl-next:hover {
  color: #869198;
}

.carousel-reviews .owl-prev.disabled,
.carousel-reviews .owl-next.disabled {
  color: #f4f5f6;
}

.carousel-reviews .owl-prev {
  left: 5px;
}

.carousel-reviews .owl-next {
  right: 5px;
}

.carousel-reviews .owl-dots {
  line-height: 1;
  margin: 10px 0;
  text-align: center;
}

.carousel-reviews .owl-dot {
  display: inline-block;
  border-radius: 50%;
  margin: 2.5px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  -webkit-transition: border-color ease 0.25s;
  transition: border-color ease 0.25s;
}

.carousel-reviews .owl-dot:hover {
  border-color: #007EE1;
}

.carousel-reviews .owl-dot__img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  margin: 5px;
}

.carousel-technologies .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-technologies .owl-dot {
  display: inline-block;
}

.carousel-technologies .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 5px;
  margin: 5px;
  border-radius: 50%;
  background-color: #D6D6D6;
}

.carousel-technologies .owl-dot.active span,
.carousel-technologies .owl-dot:hover span {
  background-color: #869791;
}

.collapse-main {
  border: 1px solid #cccccc;
  /* ---------------------------------Btn------------------------------------ */
  /* ---------------------------------Body------------------------------------ */
}

.collapse-main + .collapse-main {
  border-top: none;
}

.collapse-main__header {
  background-color: #f5f5f5;
  padding: 15px;
}

.collapse-main__btn {
  position: relative;
  color: #007EE1;
  text-align: left;
  width: 100%;
  padding-right: 30px;
}

.collapse-main__btn-text {
  font-size: 15px;
  text-transform: uppercase;
}

.collapse-main__btn:hover .collapse-main__btn-text {
  color: #cccccc;
}

.collapse-main__btn-icon {
  font-size: 16px;
  right: 0;
  top: 50%;
  margin-top: -8px;
  position: absolute;
}

.collapse-main__btn-icon:before {
  content: "\F067";
}

.collapse-main__btn:hover .collapse-main__btn-icon {
  color: #cccccc;
}

.collapse-main__btn.active .collapse-main__btn-icon:before {
  content: "\F068";
}

.collapse-main__body {
  -webkit-transition: height ease 0.3s;
  transition: height ease 0.3s;
}

.collapse-main__body-text {
  border-top: 1px solid #cccccc;
  padding: 15px;
  color: #747474;
  text-align: left;
}

.contacts:before, .contacts:after {
  content: " ";
  display: table;
}

.contacts:after {
  clear: both;
}

.contacts__item {
  padding: 20px 15px;
}

.contacts__item:before, .contacts__item:after {
  content: " ";
  display: table;
}

.contacts__item:after {
  clear: both;
}

.contacts__item_blue {
  background-color: #007EE1;
}

.contacts__item_grey {
  background-color: #193441;
}

.contacts__item_orange {
  background-color: #F39C12;
}

.contacts__icon {
  color: #f1c40f;
}

.contacts__address {
  color: #F39C12;
}

.contacts__schedule {
  color: #ffffff;
}

.contacts__time {
  color: #193441;
}

.contacts__phone {
  color: #ffffff;
}

.contacts__mail {
  color: #F39C12;
}

.tooltip-main .jBox-container {
  background-color: #000000;
  color: #ffffff;
  line-height: 1;
  font-size: 12px;
  border-radius: 5px;
}

.tooltip-main .jBox-pointer:after {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  left: 50%;
  background-color: #000000;
  bottom: 7px;
}

.jBox-Modal .jBox-title {
  display: none;
}

.jBox-Modal .jBox-content {
  padding: 0;
}

.jBox-Modal .jBox-container {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.card-product .card__title {
  color: #FFFFFF;
}

.animated-devices {
  position: relative;
  text-align: center;
}

.animated-devices__img {
  position: absolute;
  bottom: 0;
  -webkit-transition: left ease 1s, right ease 1s;
  transition: left ease 1s, right ease 1s;
  z-index: 1;
}

.animated-devices__img_tablet {
  width: 17%;
  right: -100%;
}

.animated-devices__img_tablet.animated {
  right: 61%;
}

.animated-devices__img_monitor {
  width: 40%;
  position: relative;
  z-index: 0;
  left: -100vw;
}

.animated-devices__img_monitor.animated {
  left: 0;
}

.animated-devices__img_notebook {
  right: -100%;
  width: 35%;
}

.animated-devices__img_notebook.animated {
  right: 7%;
}

.animated-devices__img_phone {
  width: 7%;
  left: -100vw;
}

.animated-devices__img_phone.animated {
  left: 20%;
}

.project {
  display: block;
  background-color: #f5f5f5;
  border-radius: 6px 6px 0 0;
}

.project__header {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.project__header:before {
  content: '';
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  -webkit-transition: background-color ease 0.5s;
  transition: background-color ease 0.5s;
}

.project:hover .project__header:before {
  background-color: rgba(0, 126, 225, 0.6);
}

.project__header:after {
  width: 100%;
  z-index: 2;
  left: 0;
  text-align: center;
  position: absolute;
  display: inline-block;
  content: 'LEARN MORE';
  opacity: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  top: 50%;
  margin-top: -10px;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}

.project:hover .project__header:after {
  opacity: 1;
}

.project__body {
  border-bottom: 2px solid #007EE1;
  padding: 10px 10px 20px 10px;
}

.project__img {
  display: block;
}

.project__title {
  text-transform: capitalize;
  color: #007EE1;
  line-height: 22px;
  overflow: hidden;
  height: 44px;
  font-size: 16px;
}

.project__description {
  margin-top: 5px;
  line-height: 23px;
  overflow: hidden;
  height: 69px;
  font-size: 13px;
  color: #747474;
}

.project-simple {
  display: block;
  margin-bottom: 10px;
}

.project-simple__header {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.project-simple__header:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  -webkit-transition: background-color ease 0.5s;
  transition: background-color ease 0.5s;
}

.project-simple:hover .project-simple__header:before {
  background-color: rgba(0, 126, 225, 0.6);
}

.project-simple__header:after {
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
  display: inline-block;
  content: 'LEARN MORE';
  opacity: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  top: 50%;
  margin-top: -10px;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}

.project-simple:hover .project-simple__header:after {
  opacity: 1;
}

.project-simple__body {
  padding: 10px 0 10px 0;
}

.project-simple__img {
  display: block;
}

.project-simple__title {
  text-transform: capitalize;
  color: #007EE1;
  line-height: 22px;
  overflow: hidden;
  height: 44px;
  font-size: 16px;
}

.project-simple__description {
  margin-top: 5px;
  line-height: 23px;
  overflow: hidden;
  height: 69px;
  font-size: 13px;
  color: #747474;
}

.service {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  /* ---------------------------------Content------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Description------------------------------------ */
  /* ---------------------------------Figure------------------------------------ */
  /* ---------------------------------Preview------------------------------------ */
  /* ---------------------------------Link------------------------------------ */
}

.service__content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 20px 20px 20px;
}

.service:hover .service__content {
  background-color: #000000;
}

.service__title {
  font-size: 16px;
  letter-spacing: normal;
  line-height: 27px;
}

.service__description {
  margin-top: 10px;
  color: #ccc;
}

.service__figure {
  position: relative;
  z-index: 1;
  background-color: #007EE1;
  font-size: 22px;
  width: 60px;
  height: 60px;
  border: 2px solid white;
  line-height: 56px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
}

.service:hover .service__figure {
  background-color: #000000;
}

.service__preview {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.service__preview:before {
  content: '';
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 50%;
  position: absolute;
  top: 50%;
}

.service:hover .service__preview:before {
  background-color: #000000;
}

.service__link {
  display: inline-block;
  margin-top: 20px;
  background-color: #007EE1;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.service:hover .service__link {
  background-color: #ffffff;
  color: #000000;
}

.service__link-text, .service__link-icon {
  vertical-align: middle;
}

.service-detail {
  color: #747474;
  text-align: center;
  margin-top: 20px;
  font-size: 1.2em;
  text-align: left;
}

.service-detail ul {
  list-style: disc outside none;
  padding-left: 40px;
}

.review {
  padding: 10px 35px;
  text-align: center;
}

.review__figure {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.review__description {
  margin-bottom: 10px;
  color: #95a5a6;
  text-transform: uppercase;
  -webkit-transition: height ease 0.3s;
  transition: height ease 0.3s;
}

.review__description-icon {
  margin-right: 10px;
}

.review__description-icon:before {
  content: "\F10D";
}

.review__author {
  font-size: 10px;
  line-height: 15px;
  color: #777777;
}

.review__author-text:before {
  content: '\2014   \A0';
}

.review__btn {
  color: #747474;
}

.review__btn-text {
  text-decoration: underline;
}

.review__btn:hover .review__btn-text {
  text-decoration: none;
}

.review-simple {
  padding: 10px 35px;
  border-left: 5px solid #333;
  text-align: center;
}

.review-simple__figure {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.review-simple__description {
  color: #95a5a6;
}

.review-simple__author {
  font-size: 10px;
  line-height: 15px;
  color: #777777;
}

.review-simple__author-text:before {
  content: '\2014   \A0';
}

.worker {
  text-align: left;
  margin-top: 25px;
  min-height: 400px;
  /* ---------------------------------Photo------------------------------------ */
  /* ---------------------------------Title------------------------------------ */
  /* ---------------------------------Position------------------------------------ */
  /* ---------------------------------Separate------------------------------------ */
}

.worker__photo {
  margin-left: auto;
  margin-right: auto;
}

.worker__title {
  color: #007EE1;
  font-family: "Lato Light";
  font-size: 21px;
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.worker__position {
  font-family: "Lato Light";
  text-transform: uppercase;
}

.worker__separate {
  border-bottom: 1px dotted #E1E1E1;
  margin: 10px 0;
}

@media (max-width: 992px) {
  .worker__title {
    text-align: center;
  }
  .worker__position {
    text-align: center;
  }
  .worker__description {
    text-align: center;
  }
}
