@import url("https://fonts.googleapis.com/css?family=Nunito|Roboto|Source+Sans+Pro");
@import url("https://cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css");
.geosherpa-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 10001;
  overflow: hidden;
  min-width: 300px;
  width: 400px;
  max-width: 50vw;
  max-height: 80vh;
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 51, 93, 0.45);
  padding: 0 0 15px 0;
  font-family: Roboto, Source Sans Pro, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  transition: opacity 0.3s ease-in-out; }
  .geosherpa-panel .header {
    flex: 0;
    display: flex;
    flex-direction: column;
    margin-top: 5px; }
  .geosherpa-panel .content {
    flex: 1;
    display: block;
    overflow: hidden;
    padding-top: 5px; }
    .geosherpa-panel .content .content-container {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0; }
  .geosherpa-panel .resize-region {
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    width: 10px;
    cursor: ew-resize; }
    .geosherpa-panel .resize-region.resize-left {
      left: 0; }
    .geosherpa-panel .resize-region.resize-right {
      right: 0; }

.geosherpa-panel .header .draggable-region {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 24px;
  margin-left: 40px;
  margin-right: 60px;
  cursor: move; }

.geosherpa-panel .header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px; }
  .geosherpa-panel .header .header-container .hamburger-menu {
    width: 17px;
    height: 14px;
    margin-right: 20px;
    cursor: default; }
  .geosherpa-panel .header .header-container .title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    min-width: 100px;
    padding: 0 10px 0 0; }
  .geosherpa-panel .header .header-container .title-icon {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    object-fit: contain; }
  .geosherpa-panel .header .header-container .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: Roboto;
    font-size: 11px;
    font-weight: normal;
    color: #0e375a; }
  .geosherpa-panel .header .header-container .button-container {
    display: flex; }
  .geosherpa-panel .header .header-container .close-button {
    width: 13px;
    margin: 0 0 0 7px;
    padding: 0;
    line-height: 0.5;
    border: none;
    background: transparent;
    opacity: 0.8;
    text-shadow: none;
    cursor: pointer; }
  .geosherpa-panel .header .header-container .close-button:hover {
    opacity: 1.0; }
  .geosherpa-panel .header .header-container .close-button:focus {
    outline: 0; }
  .geosherpa-panel .header .header-container .button-text {
    line-height: 0; }

.geosherpa-toggle-button {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 10000;
  top: 0;
  left: 0;
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 69, 125, 0.45);
  line-height: 0; }
  .geosherpa-toggle-button .drag-region {
    height: 20px;
    width: 100%;
    cursor: move; }
  .geosherpa-toggle-button .icon {
    padding: 0 10px 10px 10px;
    color: #0087bc;
    cursor: pointer; }

.input-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 4px 0px;
  color: rgba(0, 0, 0, 0);
  /*
    .search-input:focus {
        //box-shadow: 0px 1px 5px 0px rgba(70, 70, 70, 0.5);
        //box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    }
    */ }
  .input-container .search-input {
    width: 100%;
    font-size: 12px;
    font-weight: lighter;
    font-family: Roboto;
    padding: 5px 30px 5px 28px;
    height: auto;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    box-sizing: border-box; }
  .input-container .search-input::placeholder {
    color: rgba(127, 127, 127, 0.6); }
  .input-container .magnify-icon {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 5px;
    color: gray;
    cursor: pointer; }
  .input-container .clear-icon-container {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2px 0 0 5px;
    color: black; }
    .input-container .clear-icon-container .clear-icon {
      z-index: 1;
      opacity: 0.7;
      cursor: pointer; }
    .input-container .clear-icon-container .clear-icon:hover {
      opacity: 1.0; }

.geosherpa-tab-container .tabs {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px solid #e7e7e7;
  border-left: none;
  border-right: none; }
  .geosherpa-tab-container .tabs .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #4379a7;
    will-change: left, right; }

.geosherpa-tab-container .content {
  margin: 0;
  padding: 0; }

.geosherpa-tab-container .tabs .tab {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  margin: 0;
  border: none;
  opacity: 1;
  cursor: pointer;
  transition: background .7s ease; }
  .geosherpa-tab-container .tabs .tab.selected {
    background: rgba(67, 121, 167, 0.05); }
  .geosherpa-tab-container .tabs .tab a {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-family: Source Sans Pro;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    transition: color .3s ease, background .3s ease; }
  .geosherpa-tab-container .tabs .tab a:hover {
    text-decoration: none; }

.geosherpa-result-container {
  display: flex;
  flex-direction: column;
  padding: 10px 20px 0px 20px; }
  .geosherpa-result-container .result-title {
    width: 100%;
    padding-bottom: 5px;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: darkslategray;
    border-bottom: solid 1px rgba(0, 55, 86, 0.15); }
  .geosherpa-result-container .vertical-scroll-container {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden; }
    .geosherpa-result-container .vertical-scroll-container .tab-result-container {
      padding: 10px 0 0 0; }

.geosherpa-result-container .vertical-scroll-container .tab-result-container .tab-text {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: lighter; }

.geosherpa-result-container .vertical-scroll-container .tab-result-container ol {
  margin: 0;
  padding: 0; }
  .geosherpa-result-container .vertical-scroll-container .tab-result-container ol li {
    padding: 7px 0px 7px 10px;
    list-style: none;
    transition: background .4s ease-in-out; }
  .geosherpa-result-container .vertical-scroll-container .tab-result-container ol li:hover {
    background: rgba(0, 78, 123, 0.06); }
  .geosherpa-result-container .vertical-scroll-container .tab-result-container ol li .result-container {
    display: flex;
    align-items: center;
    /* Currently the text will wrap the available space - there are no line limits (difficult to do is CSS) */ }
    .geosherpa-result-container .vertical-scroll-container .tab-result-container ol li .result-container .result-text {
      padding-left: 10px;
      font-size: 11px;
      font-weight: lighter; }

.geosherpa-tour-step {
  position: absolute;
  z-index: 20000;
  /*max-width: 30%;*/
  /*min-width: 250px;*/
  box-shadow: 3px 3px 24px -3px #323232;
  border: 2px solid #004b8a;
  background: white;
  font-family: Roboto, "Open Sans", Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none; }
  .geosherpa-tour-step .container {
    padding: 0 10px 10px 10px;
    height: 100%;
    width: auto; }
    .geosherpa-tour-step .container .header {
      display: flex;
      justify-content: flex-end; }
    .geosherpa-tour-step .container .content-container {
      margin: 0;
      padding: 0;
      text-align: left;
      cursor: default; }
    .geosherpa-tour-step .container .action-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding-top: 15px; }
  .geosherpa-tour-step .pointer-container {
    position: absolute; }

.geosherpa-tour-step .container .header {
  /*
    .close-button {
        line-height: .8;
        font-size: 30px;
        font-weight: 300;
        color: rgba(0, 75, 138, 1.0);
        opacity: 1.0;
        text-shadow: none;
        outline: none !important;
        box-shadow: none !important;
        cursor: pointer;
    }
    .close-button:hover {
        opacity: 0.85;
    }    
    .close-button:focus {
        outline:0;
    }
    */ }
  .geosherpa-tour-step .container .header .close-button {
    margin-top: 5px;
    padding: 0;
    line-height: 0.5;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: lighter;
    opacity: 0.8;
    text-shadow: none;
    cursor: pointer; }
  .geosherpa-tour-step .container .header .close-button:hover {
    opacity: 1.0; }
  .geosherpa-tour-step .container .header .close-button:focus {
    outline: 0; }
  .geosherpa-tour-step .container .header .header-padding {
    margin-top: 10px; }

.geosherpa-tour-step .container .content-container .title {
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 13px;
  font-weight: bold;
  text-overflow: ellipsis;
  color: black; }

.geosherpa-tour-step .container .content-container .content {
  font-size: 12px;
  font-weight: normal;
  color: black; }
  .geosherpa-tour-step .container .content-container .content p {
    margin-top: 1em;
    margin-bottom: 1em; }

.geosherpa-tour-step .container .action-container .warning-container {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .geosherpa-tour-step .container .action-container .warning-container .warning-icon {
    color: #fc980f; }
  .geosherpa-tour-step .container .action-container .warning-container .warning-text {
    font-size: 11px;
    font-weight: bold;
    color: #003764;
    padding-left: 8px; }

.geosherpa-tour-step .container .action-container .button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-left: auto; }
  .geosherpa-tour-step .container .action-container .button-container .btn {
    border-radius: 0;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
    font-size: 11px;
    line-height: 1.2;
    padding: 3px 8px;
    cursor: pointer; }
  .geosherpa-tour-step .container .action-container .button-container .back-button {
    border: 1px solid #bee1fa;
    color: black;
    background: linear-gradient(to bottom, #f2f9fe, #d6f0fd); }
  .geosherpa-tour-step .container .action-container .button-container .back-button:hover {
    border: 1px solid #93cdf7;
    color: black;
    background: linear-gradient(to bottom, #c3e3fa, #a5defb); }
  .geosherpa-tour-step .container .action-container .button-container .action-button {
    margin-left: 7px;
    border: 1px solid #999999;
    color: black;
    background: linear-gradient(to bottom, #C1E1FF, #9CCBF9); }
  .geosherpa-tour-step .container .action-container .button-container .action-button:hover {
    border: 1px solid #999999;
    color: black;
    background: linear-gradient(to bottom, #B0D8FF, #78BBFF); }
  .geosherpa-tour-step .container .action-container .button-container .pulse {
    animation: button-pulse 1500ms infinite; }

@keyframes button-pulse {
  0% {
    box-shadow: 0 0 1px 1px orange; }
  50% {
    box-shadow: 0 0 10px 3px orange; }
  100% {
    box-shadow: 0 0 1px 1px orange; } }

.geosherpa-tour-step .pointer-container .pointer-border {
  width: 0;
  height: 0; }

.geosherpa-tour-step .pointer-container.left {
  top: 0;
  left: -14px; }
  .geosherpa-tour-step .pointer-container.left .pointer-border {
    border-right: 14px solid #004b8a;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent; }
  .geosherpa-tour-step .pointer-container.left .pointer-arrow {
    position: absolute;
    left: 3px;
    top: 0;
    border-right: 14px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent; }

.geosherpa-tour-step .pointer-container.right {
  top: 0;
  right: -14px; }
  .geosherpa-tour-step .pointer-container.right .pointer-border {
    border-left: 14px solid #004b8a;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent; }
  .geosherpa-tour-step .pointer-container.right .pointer-arrow {
    position: absolute;
    left: -3px;
    top: 0;
    border-left: 14px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent; }

.geosherpa-tour-step .pointer-container.top {
  top: -14px;
  left: 0; }
  .geosherpa-tour-step .pointer-container.top .pointer-border {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #004b8a; }
  .geosherpa-tour-step .pointer-container.top .pointer-arrow {
    position: absolute;
    left: 0;
    top: 3px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid white; }

.geosherpa-tour-step .pointer-container.bottom {
  bottom: -14px;
  left: 0; }
  .geosherpa-tour-step .pointer-container.bottom .pointer-border {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #004b8a; }
  .geosherpa-tour-step .pointer-container.bottom .pointer-arrow {
    position: absolute;
    left: 0;
    top: -3px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid white; }

.geosherpa-steps-navigator {
  padding: 8px 8px 0 8px;
  text-align: center; }
  .geosherpa-steps-navigator ul {
    clear: both;
    margin: 15px auto 0;
    padding: 0;
    display: inline-block; }
  .geosherpa-steps-navigator ul li {
    list-style: none;
    float: left;
    margin: 0 3px; }
  .geosherpa-steps-navigator ul li a {
    display: block;
    width: 6px;
    height: 6px;
    background: #cccccc;
    border-radius: 10px;
    text-decoration: none;
    /*cursor: pointer;*/ }
  .geosherpa-steps-navigator ul li a:hover {
    background: rgba(26, 114, 196, 0.7); }
  .geosherpa-steps-navigator ul li a.active {
    background: #1a72c4; }

.geosherpa-tour-container {
  padding: 10px 20px 0px 20px; }
  .geosherpa-tour-container .vertical-scroll-container {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden; }
  .geosherpa-tour-container ol {
    margin: 0;
    padding: 0;
    cursor: pointer; }
    .geosherpa-tour-container ol li {
      padding: 7px 0px 7px 10px;
      list-style: none;
      counter-increment: item;
      line-height: normal;
      transition: background .4s ease-in-out; }
    .geosherpa-tour-container ol li:before {
      display: inline-block;
      padding: 2px 5px;
      margin-right: 10px;
      background: #436e90;
      color: white;
      font-size: 9px;
      font-family: Roboto;
      font-weight: lighter;
      text-align: center;
      content: counter(item);
      filter: drop-shadow(1px 2px 2px rgba(50, 50, 50, 0.3)); }
    .geosherpa-tour-container ol li:hover {
      background: rgba(0, 78, 123, 0.06); }
    .geosherpa-tour-container ol li .item-text {
      font-size: 11px;
      font-family: Roboto;
      font-weight: 500;
      color: darkslategray; }

.geosherpa-video-container {
  padding: 0 20px 0px 20px; }
  .geosherpa-video-container .vertical-scroll-container {
    width: 100%;
    max-height: 56vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 20px 0 0px; }
  .geosherpa-video-container .video-row .descriptor-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 0;
    border-bottom: solid 1px rgba(0, 55, 86, 0.15);
    transition: background .4s ease-in-out;
    cursor: pointer; }
    .geosherpa-video-container .video-row .descriptor-container .image {
      /* the width/height should maintain a 16x9 aspect ratio */
      flex: 0 0 60px;
      height: 34px;
      margin-left: 10px;
      margin-right: 10px;
      object-fit: contain;
      filter: drop-shadow(2px 2px 2px rgba(50, 50, 50, 0.4)); }
    .geosherpa-video-container .video-row .descriptor-container .title {
      font-size: 11px; }
  .geosherpa-video-container .video-row .descriptor-container:hover {
    background: rgba(0, 78, 123, 0.06); }
  .geosherpa-video-container .video-row .descriptor-container.bottom {
    border-bottom: none; }
  .geosherpa-video-container .video-row .preview-container {
    display: flex;
    flex-direction: column;
    padding: 0px 20px 20px 20px; }
    .geosherpa-video-container .video-row .preview-container .button-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .geosherpa-video-container .video-row .preview-container .button-container .flat-button {
        margin: 0;
        padding: 5px 10px;
        background: transparent;
        outline: none;
        border: none;
        box-shadow: none;
        cursor: pointer;
        transition: background .4s ease-in-out; }
      .geosherpa-video-container .video-row .preview-container .button-container .flat-button:hover {
        background: rgba(0, 78, 123, 0.06); }
      .geosherpa-video-container .video-row .preview-container .button-container .icon {
        color: #005169; }
    .geosherpa-video-container .video-row .preview-container .video-container {
      width: 100%;
      height: 200px;
      border: 0;
      box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.2); }

.geosherpa-video-player {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 2147483600;
  overflow: hidden;
  min-width: 300px;
  min-height: 300px;
  max-width: 80vw;
  max-height: 80vh;
  background: rgba(250, 250, 250, 0.94);
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 51, 93, 0.45);
  font-family: Source Sans Pro, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /*
    //  Animation
	transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    */ }
  .geosherpa-video-player .header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(125, 176, 206, 0.25);
    cursor: move; }
  .geosherpa-video-player .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    margin: 15px 15px 15px 15px;
    overflow: hidden;
    /*
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            padding-top: 35px;
            height: 0;
            overflow: hidden;            

            .iframe {
                position: absolute;
                top:0;
                left: 0;
                width: 100%;
                height: 100%;                
            }
        }
        */ }
    .geosherpa-video-player .content .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .geosherpa-video-player .resize-region {
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    width: 10px;
    cursor: ew-resize; }
    .geosherpa-video-player .resize-region.resize-left {
      left: 0; }
    .geosherpa-video-player .resize-region.resize-right {
      right: 0; }
    .geosherpa-video-player .resize-region.resize-bottom {
      height: 10px;
      width: 100%;
      top: initial;
      cursor: ns-resize; }
    .geosherpa-video-player .resize-region.resize-bottom-right {
      z-index: 2147483601;
      right: 0;
      top: initial;
      height: 15px;
      width: 15px;
      cursor: se-resize; }

.geosherpa-video-player .header .title {
  width: 100%; }

.geosherpa-video-player .header .title-text {
  padding: 0 10px;
  margin: 0;
  font-size: 13px;
  font-weight: lighter;
  text-align: center;
  color: #0e375a;
  cursor: move; }

.geosherpa-video-player .header .close-button {
  margin: 0 0 0 7px;
  padding: 0;
  line-height: 0.5;
  border: none;
  background: transparent;
  font-size: 28px;
  font-weight: lighter;
  opacity: 0.8;
  text-shadow: none;
  cursor: pointer; }

.geosherpa-video-player .header .close-button:hover {
  opacity: 1.0; }

.geosherpa-video-player .header .close-button:focus {
  outline: 0; }

.geosherpa-video-player .header .button-text {
  line-height: 0; }

.geosherpa-question-container {
  padding: 10px 20px;
  /* Transitions */
  /*
    .list-enter-active, .list-leave-active {
        transition: all .25s;
    }
    .list-enter, .list-leave-to  {
        opacity: 0;
        transform: translateY(-20px);
    }
    */ }
  .geosherpa-question-container .search-box-container {
    position: relative;
    margin-bottom: 10px; }
    .geosherpa-question-container .search-box-container .background {
      width: 100%;
      border: 1px solid #bebebe;
      border-radius: 0;
      box-shadow: inset 1px 0px 3px rgba(0, 67, 255, 0.1);
      padding: 4px 8px; }
    .geosherpa-question-container .search-box-container .search-box {
      position: absolute;
      top: 4px;
      left: 32px;
      width: calc(100% - 32px);
      border: 0;
      outline: none;
      font-size: 1em;
      font-weight: normal;
      color: black; }
    .geosherpa-question-container .search-box-container .right-border {
      position: absolute;
      top: 0px;
      right: 0px;
      width: 40px;
      border: 1px solid #bebebe;
      border-left: 0px;
      border-radius: 0;
      box-shadow: inset -1px 0px 1px rgba(0, 67, 255, 0.1);
      padding: 4px 8px; }
    .geosherpa-question-container .search-box-container .icon-container {
      position: absolute;
      top: 0;
      height: 100%;
      display: flex;
      align-items: center; }
      .geosherpa-question-container .search-box-container .icon-container i {
        line-height: 0; }
      .geosherpa-question-container .search-box-container .icon-container.left {
        left: 0; }
      .geosherpa-question-container .search-box-container .icon-container.right {
        right: 0; }
      .geosherpa-question-container .search-box-container .icon-container .search-icon {
        padding-left: 5px;
        color: #187cc7; }
      .geosherpa-question-container .search-box-container .icon-container .clear-icon {
        padding: 0 5px 2px 0;
        opacity: 0.7;
        cursor: pointer; }
      .geosherpa-question-container .search-box-container .icon-container .clear-icon:hover {
        opacity: 1.0; }
  .geosherpa-question-container .vertical-scroll-container {
    width: 100%;
    /*
        NOTE:  ***
        this cannot be done with fixed height values; need to implement some sort of Flexbox layout
        */
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden; }
  .geosherpa-question-container .faq-list {
    padding: 0;
    margin: 0;
    margin-left: 10px;
    cursor: pointer;
    /*    
        .question:hover {
            color: rgba(0, 145, 175, 1.0);
        }
        */ }
    .geosherpa-question-container .faq-list .list-item {
      list-style: none;
      counter-increment: item;
      padding: 6px 0 6px 5px;
      font-size: 11px;
      color: rgba(0, 0, 0, 0.7);
      transition: background .4s ease-in-out; }
    .geosherpa-question-container .faq-list .list-item:before {
      content: counter(item) " - "; }
    .geosherpa-question-container .faq-list .list-item:hover {
      background: rgba(0, 78, 123, 0.06); }
    .geosherpa-question-container .faq-list .question {
      padding-left: .5em;
      font-size: 11px;
      color: darkslategray; }
      .geosherpa-question-container .faq-list .question .hilite {
        background: #fff694; }
    .geosherpa-question-container .faq-list .answer {
      display: none;
      margin: 10px 20px 0 20px;
      font-size: 11px;
      font-weight: normal; }
      .geosherpa-question-container .faq-list .answer h1, .geosherpa-question-container .faq-list .answer h2, .geosherpa-question-container .faq-list .answer h3, .geosherpa-question-container .faq-list .answer h4, .geosherpa-question-container .faq-list .answer h5, .geosherpa-question-container .faq-list .answer h6, .geosherpa-question-container .faq-list .answer p {
        margin-block-start: 1em;
        margin-block-end: 1em; }

.geosherpa-tooltip {
  position: absolute;
  z-index: 20100;
  max-width: 50vw;
  overflow: hidden;
  box-shadow: 3px 3px 10px 0px rgba(50, 50, 50, 0.35);
  border: 1px solid #006b94;
  background: #fcfcff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none; }
  .geosherpa-tooltip .content-container {
    padding: 5px 10px;
    text-align: center; }
  .geosherpa-tooltip .text-span {
    font-family: Roboto, Source Sans Pro, Arial, sans-serif;
    font-size: 13px;
    color: black;
    cursor: default; }

.geosherpa-ripple-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none; }

.geosherpa-ripple {
  position: relative;
  margin-left: 0px;
  margin-top: 0px;
  width: 1px;
  height: 1px;
  z-index: 9999;
  border-radius: 50%;
  background: rgba(2, 60, 128, 0.35);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.geosherpa-hamburger-menu {
  position: fixed;
  z-index: 20100;
  overflow: hidden;
  box-shadow: 4px 4px 10px 2px rgba(50, 50, 50, 0.45);
  padding: 0;
  border: 1px solid #006b94;
  background: #fafaf9;
  min-width: 70px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none; }
  .geosherpa-hamburger-menu .caret-icon {
    width: 12px;
    height: 9px;
    padding-left: 15px;
    cursor: default; }
  .geosherpa-hamburger-menu .separator {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0;
    padding: 0;
    cursor: default; }
  .geosherpa-hamburger-menu .flat-button {
    margin: 0;
    padding: 10px 10px 10px 15px;
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background .1s ease-in-out;
    font-size: 12px;
    text-align: left; }
  .geosherpa-hamburger-menu .flat-button:hover {
    background: rgba(0, 78, 123, 0.06); }

.geosherpa-about-box {
  position: fixed;
  z-index: 20200;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 4px 4px 10px 2px rgba(50, 50, 50, 0.45);
  padding: 0;
  border: 1px solid #006b94;
  background: #fafaf9;
  width: 450px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none; }
  .geosherpa-about-box .close-button {
    align-self: flex-end;
    width: 13px;
    margin-top: 7px;
    margin-right: 10px;
    padding: 0;
    float: right;
    line-height: 0.5;
    border: none;
    background: transparent;
    opacity: 0.8;
    text-shadow: none;
    cursor: pointer; }
  .geosherpa-about-box .close-button:hover {
    opacity: 1.0; }
  .geosherpa-about-box .close-button:focus {
    outline: 0; }
  .geosherpa-about-box .geosherpa-logo {
    width: 200px;
    height: 40px;
    display: block;
    margin: 0 auto;
    cursor: pointer; }
  .geosherpa-about-box .copyright {
    font-size: 11px;
    padding: 30px 0 25px 0; }

.geosherpa-fx-modal-overlay {
  position: fixed;
  z-index: 5000;
  background: rgba(0, 0, 0, 0);
  cursor: default; }

.geosherpa-fx-ripple-overlay {
  display: block;
  position: fixed;
  z-index: 5001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  cursor: default;
  /*
    @keyframes geosherpa-ripple-shadow {
        0%   {box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);}
        20%  {box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);}
        100% {box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);}
    }
    @-webkit-keyframes geosherpa-ripple-shadow {
        0%   {box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);}
        20%  {box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);}
        100% {box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);}
    }
    */ }
  .geosherpa-fx-ripple-overlay.fade-out {
    opacity: 0;
    transition: opacity .2s linear; }
  .geosherpa-fx-ripple-overlay.ripple {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    border-radius: inherit;
    pointer-events: none;
    /*
        animation: geosherpa-ripple-shadow 0.4s forwards;
        -webkit-animation: geosherpa-ripple-shadow 0.4s forwards;
        */ }
  .geosherpa-fx-ripple-overlay .ripple-wave {
    backface-visibility: hidden;
    position: absolute;
    border-radius: 50%;
    transform: scale(1);
    -webkit-transform: scale(1);
    background: white;
    opacity: 0.45;
    animation: ripple-keyframes .65s forwards;
    -webkit-animation: ripple-keyframes .65s forwards; }

@keyframes ripple-keyframes {
  to {
    transform: scale(24);
    opacity: 0; } }

@-webkit-keyframes ripple-keyframes {
  to {
    -webkit-transform: scale(24);
    opacity: 0; } }

.geosherpa-fx-element-hilite {
  position: absolute;
  display: none;
  z-index: 4000;
  background: rgba(0, 0, 0, 0);
  pointer-events: none; }

.geosherpa-fx-circle {
  position: absolute;
  z-index: 4001;
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
  border: 1px solid white; }

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/*
.bootstrap-material {
    @import './../../node_modules/bootswatch/dist/materia/bootstrap';
}
*/
.fade-enter-active, .fade-leave-active {
  transition: opacity .2s ease-out; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

.btn {
  width: inherit;
  margin: 0; }

.mdi::before {
  font-size: 24px;
  line-height: 14px; }

.btn .mdi::before {
  position: relative;
  top: 4px; }

.mdi-10px.mdi-set, .mdi-10px.mdi:before {
  font-size: 10px !important; }

.mdi-14px.mdi-set, .mdi-14px.mdi:before {
  font-size: 14px !important; }

.mdi-14px.mdi-set, .mdi-15px.mdi:before {
  font-size: 15px !important; }

.mdi-16px.mdi-set, .mdi-16px.mdi:before {
  font-size: 16px !important; }

.mdi-20px.mdi-set, .mdi-20px.mdi:before {
  font-size: 20px !important; }

.mdi-24px.mdi-set, .mdi-24px.mdi:before {
  font-size: 24px !important; }

.btn-xs .mdi::before {
  font-size: 18px;
  top: 3px; }

.btn-sm .mdi::before {
  font-size: 18px;
  top: 3px; }

.vue-scrollbar-transition, .vue-scrollbar__scrollbar-vertical, .vue-scrollbar__scrollbar-horizontal {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease; }

.vue-scrollbar-transition--scrollbar {
  transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear; }

.vue-scrollbar__wrapper {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: white; }

.vue-scrollbar__wrapper:hover .vue-scrollbar__scrollbar-vertical, .vue-scrollbar__wrapper:hover .vue-scrollbar__scrollbar-horizontal {
  opacity: 1; }

.vue-scrollbar__scrollbar-vertical, .vue-scrollbar__scrollbar-horizontal {
  opacity: 0.5;
  position: absolute;
  background: transparent; }

.vue-scrollbar__scrollbar-vertical:hover, .vue-scrollbar__scrollbar-horizontal:hover {
  background: rgba(0, 0, 0, 0.3); }

.vue-scrollbar__scrollbar-vertical .scrollbar, .vue-scrollbar__scrollbar-horizontal .scrollbar {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  cursor: default; }

.vue-scrollbar__scrollbar-vertical {
  width: 10px;
  height: 100%;
  top: 0;
  right: 0; }

.vue-scrollbar__scrollbar-vertical .scrollbar {
  width: 10px; }

.vue-scrollbar__scrollbar-horizontal {
  height: 10px;
  width: 100%;
  bottom: 0;
  right: 0; }

.vue-scrollbar__scrollbar-horizontal .scrollbar {
  height: 10px; }
