
// ------------------------------------------------------------------------------------------------
// 360degree
// ------------------------------------------------------------------------------------------------

.basel-threed-view {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  cursor:ew-resize;
  cursor: -webkit-grab;

  &:active {
    cursor:ew-resize;
    cursor: -webkit-grabbing;
  }

  &:after {
      content: '';
      position: absolute;
      bottom: 15px;
      left: 15px;
      right:15px;
      height: 50%;
      z-index: 5;
      border-bottom: 5px solid rgba(175, 175, 175, 0.15);
      border-top: 2px solid rgba(175, 175, 175, 0.05);
      border-right: 2px solid rgba(175, 175, 175, 0.1);
      border-left: 2px solid rgba(175, 175, 175, 0.1);
      border-radius: 50%;
  }

  .threed-title {
    position: relative;
    padding-top: 20px;
    z-index: 40;
    text-align: center;
  }

  .threed-view-images {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    img {
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      &.previous-image{
        visibility: hidden;
       
        //  Do not put here any other styles.
        //  It causes massive recalc / repaints and image flickering,
        //  especially on Firefox.
       
      }
      &.current-image{
        visibility: visible;
        
        // Do not put here any other styles.
        // It causes massive recalc / repaints and image flickering,
        // especially on Firefox.
        
      }
    }
  }
  .spinner {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: black;
    font-weight: bolder;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    span {
      line-height: 60px;
    }
  }

  .nav_bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -67.5px;
    z-index: 11;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);

    a {
      display: inline-block;
      width: 45px;
      height: 45px;
      line-height: 45px;
      font-size: 0;
      text-align: center;
      text-decoration: none;

      &:hover {
        background-color: #f9f9f9;
      }

      &:after {
        font-size: 18px;
        font-family: 'simple-line-icons';
      }

    }
    a.nav_bar_play {
      &:after {
        content: "\e071";
      }
    }
    a.nav_bar_previous {
      &:after {
        content: "\e605";
      }
    }
    a.nav_bar_stop {
      &:after {
        content: "\e072";
      }
    }
    a.nav_bar_next {

      &:after {
            content: "\e606";
      }
    }
  }
}

// html
.basel-threed-view:-webkit-full-screen {
    background:#ffffff;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding-top: 200px;
}

.basel-threed-view:-moz-full-screen {
    background:#ffffff;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding-top: 200px;
}
