body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100vh;
  background: #efefef;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.floating-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 1px #333;
  color: #333;
  font-size: 30px;
  font-weight: 600;
  padding: 15px 26px 14px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 99999;
}

iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.prototyper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  min-height: 100vh;
}

.prototyper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.prototyper-nav .prototyper-nav-icons {
  margin-left: auto;
}

.prototyper-nav .prototyper-nav-icons .prototyper-nav-icon {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  cursor: pointer;
}

.prototyper-nav .prototyper-nav-icons .prototyper-nav-icon svg {
  stroke: #ccc;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.prototyper-nav .prototyper-nav-icons .prototyper-nav-icon.active svg {
  stroke: #111;
}

.prototyper-contianer {
  margin: auto;
  position: relative;
  height: 100%;
  -webkit-transition: height 300ms, width 300ms;
  transition: height 300ms, width 300ms;
}

.prototyper-contianer-view {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.prototyper-contianer.desktop, .prototyper-contianer.desktop .prototyper-contianer-view {
  width: 100%;
  height: 100%;
}

.prototyper-contianer.tablet .prototyper-contianer-view {
  width: 768px;
  height: 1024px;
  padding: 30px 20px 60px;
  margin: 20px auto 0;
  background-color: #333;
  border-radius: 20px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.prototyper-contianer.tablet .prototyper-contianer-view:before {
  content: '';
  position: absolute;
  height: 5px;
  width: 40px;
  border: 1px solid #aaa;
  border-radius: 10px;
  top: 12.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.prototyper-contianer.tablet .prototyper-contianer-view:after {
  content: '';
  position: absolute;
  height: 40px;
  width: 40px;
  border: 1px solid #aaa;
  border-radius: 50%;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.prototyper-contianer.mobile .prototyper-contianer-view {
  width: 411px;
  height: 823px;
  padding: 30px 20px 60px;
  margin: 20px auto 0;
  background-color: #333;
  border-radius: 20px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.prototyper-contianer.mobile .prototyper-contianer-view:before {
  content: '';
  position: absolute;
  height: 5px;
  width: 40px;
  border: 1px solid #aaa;
  border-radius: 10px;
  top: 12.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.prototyper-contianer.mobile .prototyper-contianer-view:after {
  content: '';
  position: absolute;
  height: 40px;
  width: 40px;
  border: 1px solid #aaa;
  border-radius: 50%;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.prototyper-contianer.watch .prototyper-contianer-view {
  width: 368px;
  height: 448px;
  padding: 20px;
  margin: 20px auto 0;
  background-color: #333;
  border-radius: 20px;
}

.prototyper-contianer.watch .prototyper-contianer-view:before {
  content: '';
  position: absolute;
  height: 80px;
  width: 10px;
  border-radius: 0 5px 5px 0;
  top: 40px;
  right: -10px;
  background-color: #333;
}

.prototyper-contianer.watch .prototyper-contianer-view:after {
  content: '';
  position: absolute;
  height: 120px;
  width: 5px;
  border-radius: 0 5px 5px 0;
  top: 200px;
  right: -5px;
  background-color: #333;
}
/*# sourceMappingURL=prototyper.css.map */