.bikeBlock {
  position: relative;
  margin-top: -1px;
  padding: 150px 0;
  overflow: hidden;
}
.bikeBlock .background {
  height: 20%;
  left: 0;
  position: absolute;
  top: auto;
  width: 50%;
  bottom: 0;
  z-index: 1;
}
.bikeBlock .background .iconBackground {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bikeBlock .background .iconBackground svg {
  width: 2146px;
  height: auto;
  opacity: 0.1;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
.bikeBlock .background .iconBackground svg polygon {
  fill: #000;
}
.bikeBlock .innerContent {
  max-width: 800px;
  padding-bottom: 750px;
  position: relative;
  z-index: 1;
}
.bikeBlock .innerContent .bigTitle {
  margin-bottom: 30px;
  display: block;
}
.bikeBlock .contentWrapper {
  height: 100%;
  position: relative;
}
.bikeBlock .imageWrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.bikeBlock .imageWrapper .icon {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 680px;
  max-width: calc(100% - 100px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bikeBlock .imageWrapper .icon.open {
  opacity: 0.02;
}
.bikeBlock .imageWrapper .icon svg path {
  fill: #000;
}
.bikeBlock .imageWrapper .image {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bikeBlock .imageWrapper .image.open {
  opacity: 0.2;
}
.bikeBlock .imageWrapper .dotWrapper {
  height: 32px;
  left: 0;
  position: absolute;
  top: 0;
  width: 32px;
  z-index: 1;
}
.bikeBlock .imageWrapper .dotWrapper.motorPosition {
  right: calc(50% + 244px);
  left: auto;
  top: calc(50% + 100px);
}
.bikeBlock .imageWrapper .dotWrapper.batteryPosition {
  right: calc(50% + 200px);
  left: auto;
  top: calc(50% - 95px);
}
.bikeBlock .imageWrapper .dotWrapper.chainPosition {
  right: calc(50% + 68px);
  left: auto;
  top: calc(50% + 140px);
}
.bikeBlock .imageWrapper .dotWrapper.brakesPosition {
  right: calc(50% - 268px);
  left: auto;
  top: calc(50% + 115px);
}
.bikeBlock .imageWrapper .dotWrapper.lockPosition {
  right: calc(50% - 70px);
  left: auto;
  top: calc(50% - 10px);
}
.bikeBlock .imageWrapper .dotWrapper.tiresPosition {
  right: calc(50% - 288px);
  left: auto;
  top: calc(50% + 10px);
}
.bikeBlock .imageWrapper .dotWrapper.displayPosition {
  right: calc(50% - 185px);
  left: auto;
  top: calc(50% - 260px);
}
.bikeBlock .imageWrapper .dotWrapper.seatPosition {
  right: calc(50% + 175px);
  left: auto;
  top: calc(50% - 150px);
}
.bikeBlock .imageWrapper .dotWrapper.lightPosition {
  right: calc(50% - 230px);
  left: auto;
  top: calc(50% - 88px);
}
.bikeBlock .imageWrapper .dotWrapper.gpsPosition {
  right: calc(50% - 185px);
  left: auto;
  top: calc(50% - 220px);
}
.bikeBlock .imageWrapper .dotWrapper.frontPosition {
  right: calc(50% - 240px);
  left: auto;
  top: calc(50% - 30px);
}
.bikeBlock .imageWrapper .dotWrapper.open .info {
  opacity: 1;
}
.bikeBlock .imageWrapper .dotWrapper.right .info {
  left: 32px;
  right: auto;
  text-align: right;
  padding-left: 20px;
  padding-right: 0;
}
.bikeBlock .imageWrapper .dotWrapper.right .info:after {
  left: auto;
  right: 0;
}
.bikeBlock .imageWrapper .dotWrapper .dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.bikeBlock .imageWrapper .dotWrapper .dot:hover:before {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.bikeBlock .imageWrapper .dotWrapper .dot:hover:after {
  height: 85%;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 85%;
}
.bikeBlock .imageWrapper .dotWrapper .dot:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #ff6500;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bikeBlock .imageWrapper .dotWrapper .dot:after {
  content: "";
  height: 70%;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 70%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bikeBlock .imageWrapper .dotWrapper .dot .plus {
  position: relative;
}
.bikeBlock .imageWrapper .dotWrapper .info {
  opacity: 0;
  height: auto;
  left: auto;
  position: absolute;
  top: auto;
  width: 340px;
  right: 32px;
  bottom: 16px;
  pointer-events: none;
  padding: 10px 0;
  padding-right: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bikeBlock .imageWrapper .dotWrapper .info:before {
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: auto;
  width: 100%;
  bottom: 0;
  background: #ff6500;
}
.bikeBlock .imageWrapper .dotWrapper .info:after {
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: auto;
  width: 6px;
  bottom: -3px;
  border-radius: 50%;
  background: #ff6500;
}
.bikeBlock .extraInfo {
  display: none;
}
@media all and (max-width: 1700px) {
  .bikeBlock .imageWrapper {
    margin-top: 100px;
  }
}
@media all and (max-width: 1500px) {
  .bikeBlock .imageWrapper {
    margin-top: 150px;
  }
}
@media all and (max-width: 1250px) {
  .bikeBlock .imageWrapper .dotWrapper .info {
    width: 220px;
  }
}
@media all and (max-width: 1024px) {
  .bikeBlock {
    padding: 50px 0;
  }
  .bikeBlock .innerContent {
    padding-bottom: 0;
    text-align: center;
    margin: 0 auto;
    margin-bottom: -80px;
    position: relative;
    z-index: 2;
  }
  .bikeBlock .innerContent .text {
    display: none;
  }
  .bikeBlock .imageWrapper {
    position: relative;
    width: 500px;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    margin: 0 auto;
  }
  .bikeBlock .imageWrapper .dotWrapper {
    display: none;
  }
  .bikeBlock .imageWrapper .image {
    position: relative;
    top: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
  }
  .bikeBlock .extraInfo {
    display: block;
    position: relative;
    max-width: 600px;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 150px;
  }
  .bikeBlock .extraInfo .extraTitle {
    margin-bottom: 20px;
  }
  .bikeBlock .extraInfo .item {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    display: none;
  }
  .bikeBlock .extraInfo .item:first-child,
  .bikeBlock .extraInfo .item:nth-child(2),
  .bikeBlock .extraInfo .item:nth-child(3),
  .bikeBlock .extraInfo .item:nth-child(4),
  .bikeBlock .extraInfo .item:nth-child(5) {
    display: inline-block;
  }
  .bikeBlock .extraInfo .buttons {
    margin-top: 40px;
  }
}
@media all and (max-width: 890px) {
  .bikeBlock .extraInfo {
    margin-bottom: 0;
  }
}
@media all and (max-width: 480px) {
  .bikeBlock .extraInfo {
    margin-bottom: 0;
  }
  .bikeBlock .extraInfo .item {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
  }
}
/*# sourceMappingURL=bike_block.css.map */