@import url('https://fonts.googleapis.com/css?family=Catamaran:400,500,600,700');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Catamaran", Helvetica, Arial, sans-serif;
  font-size: 12pt;
  background-color: #000;
  color: #fff;
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
  color: inherit;
}

.header {
  position: relative;
  width: 100%;
  height: 96px;
  background: #fff;
  z-index: 4;
}

.header .container {
  width: 1300px;
  height: 100%;
  margin: 0 auto;
}

.header .left {
  position: relative;
  float: left;
  height: 100%;
}

.header .center {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  text-align: center;
}

.header .right {
  position: absolute;
  float: right;
  height: 100%;
  width: 100px;
  right: 0;
}

.header .logo {
  font-size: 24pt;
  line-height: 72pt;
  font-weight: 800;
  letter-spacing: 4px;
  color: #522E91;
}

.header ul.menu {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header ul.menu li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0;
  margin: 0;
  height: 100%;
}

.header ul.menu li a {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  padding: 0 22px;
  color: #000;
  font-size: 10pt;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 72pt;
  letter-spacing: 1.1px;
}

.header ul.menu li a:hover {
  color: #5f5f5f;
}

.header .cart {
  font-size: 10pt;
  line-height: 72pt;
  color: #000;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


#fullscreenToggle {
  display: block;
  position: absolute;
}

#overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 44, 84, 0.39);

}
#overlay.active {
  z-index: 1;
}

.card {

}
.card .content {
  opacity: 0;
  pointer-events: none;
  width: 260px;
  left: 30px;
  position: absolute;
  transform: translateY(0px);
  top: 0;
  padding: 0px;
  background: #fff;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-box-shadow: 5px 5px 20px -2px rgba(0,0,0,.1);
  -moz-box-shadow: 5px 5px 20px -2px rgba(0,0,0,.1);
  box-shadow: 5px 5px 20px -2px rgba(0,0,0,.1);
}
.card.bottom .content {
  top: auto;
  bottom: 0;
}
.card.open {
  width: 320px;
  height: 445px;
}
.card.bottom {
  top: auto;
  bottom: 0;
  margin-top: -445px;
}
.card.horizontal .content {
  width: 420px;
  height: 240px;
}
.card.horizontal.large .content {
  height: 340px;
}
.card.horizontal.open {
  width: 480px;
  height: 280px;
}
.card.horizontal.large.open {
  height: 380px;
}
.card.horizontal.bottom {
  margin-top: -280px;
}
.card.horizontal.large.bottom {
  margin-top: -380px;
}
.modalbox .content > .left,
.card .content > .left {
  width: 50%;
  height: 100%;
  display: inline-block;
  float: left;
}
.modalbox .content > .right,
.card .content > .right {
  width: 50%;
  display: inline-block;
}

.card.open .content {
  opacity: 1;
  transform: translateY(30px);
  pointer-events: all;
}
.card.bottom.open .content {
  transform: translateY(-30px);
}
.card .image  {
  display: inline-block;
  width: 100%;
  height: 200px;
  background-size: cover;
}
.card .content > .left .image {
  height: 100%;
}
.card .name {
  margin: 10px 15px 5px 15px;
  font-weight: 800;
  display: block;
  font-size: 13pt;
  text-transform: uppercase;
  color: #000;
}
.card .price {
  margin: 0px 15px 20px 15px;
  display: block;
  font-size: 12pt;
  line-height: 1;
  font-weight: 300;
  color: #5f5f5f;
}
.card .description {
  margin: 10px 15px;
  display: block;
  font-size: 10pt;
  text-align: left;
  line-height: 12pt;
  color: #909090;
}
.modalbox .btn,
.card .btn {
  cursor: pointer;
  margin: 15px 15px;
  outline: none;
  border: none;
  padding: 15px 30px;
  color: #fff;
  background: #000;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  letter-spacing: 2px;
  font-size: 8pt;
  display: inline-block;;
}
.modalbox .btn:hover,
.card .btn:hover {
  background: #2c2c2c;
}

.modalbox {
  opacity: 0;
  pointer-events: none;
  width: 960px;
  height: 480px;
  top: 30%;
  left: 25%;
  position: absolute;
  display: block;
  padding: 0px;
  background: #fff;
  z-index: 4;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.modalbox.open {
  opacity: 1;
  top: 25%;
  pointer-events: all;
}

.modalbox ~ .overlay {
  opacity: 0;
}
.modalbox.open ~ .overlay {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.modalbox a.close {
  position: absolute;
  opacity: 1;
  top: -27px;
  right: -27px;
  width: 54px;
  height: 54px;
  background: #000;
}
.modalbox a.close:before,
.modalbox a.close:after {
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 1px);
  content: ' ';
  height: 34px;
  width: 1px;
  background-color: #fafafa;
}
.modalbox a.close:before {
  transform: rotate(45deg);
}
.modalbox a.close:after {
  transform: rotate(-45deg);
}
.modalbox .content {
  display: block;
  height: 100%;
}
.modalbox .carousel,
.modalbox .carousel-inner {
  height: 100%;
}
.modalbox .content > .right {
  padding: 15px;
}
.modalbox .title {
  font-weight: 800;
  display: block;
  font-size: 18pt;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 5px;
}
.modalbox .price {
  display: block;
  font-size: 12pt;
  line-height: 1;
  font-weight: 300;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.modalbox .description {
  display: block;
  font-size: 12pt;
  text-align: left;
  line-height: 18pt;
  color: #909090;
  margin-bottom: 15px;
}
.modalbox .colors {
  display: block;
  margin-bottom: 15px;
}
.modalbox .colors > span {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 30px;
  margin-right: 5px;
  border-color: #eee;
  border-width: 2px;
  border-style: solid;
  cursor: pointer;
  -webkit-transition: border 100ms ease-in;
  transition: border 100ms ease-in;
}
.modalbox .colors > span:hover {
  border-width: 4px;
}
.modalbox .colors .cl-white {
  background: #e5e8e8;
}
.modalbox .colors .cl-cyan {
  background: #8ce4e2;
}
.modalbox .colors .cl-grey {
  background: #69615c;
}
.modalbox .colors .cl-red {
  background: #ec6554;
}
.modalbox .btn {
  margin: 0;
  margin-bottom: 15px;
}
.modalbox .files {
  display: block;
  position: absolute;
  bottom: 0;
  margin-bottom: 15px;
}
.modalbox .files a:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: '';
  background: transparent url('imgs/pdfs-512.png') no-repeat left center;
  width: 32px;
  height: 32px;
  background-size: contain;
}
.modalbox .files a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #909090;
  font-weight: 300;
  font-size: 10pt;
  line-height: 32px;
  padding-left: 30px;
}

.modalbox .carousel-control.left,
.modalbox .carousel-control.right {
  background: none;
}

.arrow {
  position: absolute;
  top: calc(50% - 18px);
  margin: 0 18px;
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 3;
}

.arrow:before,
.arrow:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  content: '';

}
.arrow.arrow-right:after,
.arrow.arrow-right:before {
  left: auto;
  right: 0;
}

.arrow:before {
    -webkit-transform: translateX(-50%) rotate(-135deg);
    transform: translateX(-50%) rotate(-135deg);
    transform-origin: 40% 0%;
}
.arrow:after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: 0 0;
}
.arrow.arrow-right:before{
  -webkit-transform: translateX(50%) rotate(135deg);
    transform: translateX(50%) rotate(135deg);
    transform-origin: 60% 0%;
}
.arrow.arrow-right:after {
  -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
    transform-origin: 100% 0;
}

.hotpoint {
  width: 40px;
  height: 40px;
}
.hotpoint.bottom {
  margin-top: -40px;
}

#hotspot1.card .image {
  background: #fff url('imgs/padimat_icook_5-960x540.jpg') no-repeat center center;
  background-size: cover !important;
}
#hotspot2.card .image {
  background: #fff url('imgs/padimat_icook_4-960x540.jpg') no-repeat center center;
}
#hotspot4.card .image {
  background: #fff url('imgs/padimat_icook_7-960x540.jpg') no-repeat center center;
  background-size: cover !important;
}
#hotspot5 {
  margin-left: -102px;
}
#hotspot6 {
  margin-left: -50px;
}

.dot {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.bottom .dot {
  bottom: 0;
  top: auto;
}
.dot:hover {
  transform: scale(1.5);
}
.dot > span {
  animation: pulse 1s linear infinite;
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}
.dot > span > span {
  animation: pulse 1s linear infinite;
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}
.dot > span > span:after {
  animation: pulse 1s linear infinite;
  border-radius: 50%;
  content: '';
  display: block;
  height: 12px;
  width: 12px;
}
.dot.purple {
  background-color: #522E91;
}
.dot.purple span {
  background-color: rgba(82, 46, 145, 0.4);
}
.dot.purple span:after {
  background-color: rgba(82, 46, 145, 0.4);
}

@keyframes pulse {
  0% {
    opacity: .75;
    transform: scale(1);
  }
  25% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}


@media only screen and (max-width: 1440px) {  
  .modalbox.open
  {
      left: 10%;
  }
}
