/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./projects/accordion-sample/src/styles.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --light-bg: #fafafa;
  --medium-bg: #f4f4f4;
  --dark-bg: #e2e1e1;
  --light-blue-color: #4d4dfa;
  --yellow-color: #dcdf36;
  --darker-color: #607386;
  --item-color: #adbdce;
  --accent-color: #42b883;
  --warn-color: #f85a40;
  --light-warn-color: #f07764;
  --dark-blue-color: #52529b;
  --mdc-typography-font-family: "Lato", sans-serif;
  --mdc-theme-on-primary: var(--warn-color);
  --mdc-theme-secondary: var(--light-warn-color);
}

body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e2e1e1;
  background: var(--dark-bg);
  color: #607386;
  color: var(--darker-color);
  font-family: "Lato", sans-serif;
  font-family: var(--mdc-typography-font-family);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

*:focus {
  outline: none;
}

.mdc-drawer-app-content {
  position: relative;
  flex: auto;
  overflow: auto;
}

.main-content {
  height: 100%;
  margin: 0.2rem;
  overflow: auto;
}

.app-bar {
  position: absolute;
  top: 0;
  transition: 1s ease-in;
  background: linear-gradient(#52529b, #607386);
  background: linear-gradient(var(--dark-blue-color), var(--darker-color));
  background-color: #f07764;
  background-color: var(--light-warn-color);
}

.swiper-slide:not(.swiper-slide-visible.swiper-slide-active) {
  opacity: 0;
}

.mdc-top-app-bar {
  z-index: 7;
}

.mdc-top-app-bar__title {
  cursor: pointer;
}

.menu-grid--col4 {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 4fr 1fr 1fr;
}

.menu-grid--col4 .mdc-image-menu__image {
  max-height: 4rem;
  margin: 0 1rem 0 -1rem;
}

.mdc-drawer__header {
  box-sizing: border-box;
  background-color: #f4f4f4;
  background-color: var(--medium-bg);
}

.mdc-drawer__footer {
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-evenly;
  min-height: 64px;
  padding: 0 16px 4px;
  background-color: #e2e1e1;
  background-color: var(--dark-bg);
}

.screen {
  box-sizing: border-box;
  padding: 1rem;
  overflow-y: auto !important;
}

.device-settings {
  max-width: 70vw;
  max-height: 70vh;
  text-align: center;
}

.light-bg {
  background: radial-gradient(#e2e1e1, #fafafa);
  background: radial-gradient(var(--dark-bg), var(--light-bg));
}

.container-transparent {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(80, 80, 80, 0.2274509804);
}

.spinner {
  margin-top: 20%;
  animation: rotator 1.5s linear infinite;
}

.path {
  transform-origin: center;
  animation: dash 1.5s ease-in-out infinite, colors 3s ease-in-out infinite;
  stroke-dasharray: 188;
  stroke-dashoffset: 0;
}

.mdc-drawer__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mdc-drawer__content .flex-list {
  display: flex;
  flex: auto;
  flex-direction: column;
  justify-content: space-between;
}

.mdc-drawer__content .flex-list .flex-spacer {
  flex: auto;
  max-height: 10rem;
}

.mdc-drawer__content .flex-list .gh-list {
  flex: 1 1 50%;
}

.mdc-drawer__content .flex-list .nav-list {
  display: flex;
  flex: auto;
  flex-direction: column;
  justify-content: space-between;
}

.mdc-drawer__content .flex-list .mdc-list-item {
  color: #f85a40;
  color: var(--warn-color);
  list-style: none;
  text-decoration: none;
}

.mdc-drawer__content .flex-list .mdc-list-item a {
  color: #f85a40;
  color: var(--warn-color);
  text-decoration: none;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 0.1rem;
  margin: 0;
  background-color: rgba(200, 200, 200, 0.1);
  font-size: xx-small;
  text-align: center;
}

.menu-icon {
  color: #f85a40 !important;
  color: var(--warn-color) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.h-a {
  height: auto;
}

@media screen and (max-width: 500px) {
  .ml-1 {
    margin-left: 0.1rem;
  }
  .mr-1 {
    margin-right: 0.1rem;
  }
}

@keyframes colors {
  0% {
    stroke: #52529b;
    stroke: var(--dark-blue-color);
  }
  25% {
    stroke: #f85a40;
    stroke: var(--warn-color);
  }
  50% {
    stroke: #dcdf36;
    stroke: var(--yellow-color);
  }
  75% {
    stroke: #42b883;
    stroke: var(--accent-color);
  }
  100% {
    stroke: #4d4dfa;
    stroke: var(--light-blue-color);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 188;
  }
  50% {
    transform: rotate(135deg);
    stroke-dashoffset: 47;
  }
  100% {
    transform: rotate(450deg);
    stroke-dashoffset: 188;
  }
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./projects/accordion-sample/src/assets/devices.min.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
  devices.min.css
*/
.marvel-device {
  display: inline-block;
  position: relative;
  box-sizing: content-box !important;
}
.marvel-device .screen {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1px;
  background: white;
  box-shadow: 0 0 0 3px #111;
}
.marvel-device .top-bar,
.marvel-device .bottom-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: black;
}
.marvel-device .middle-bar {
  position: absolute;
  top: 0;
  left: 90px;
  width: 3px;
  height: 4px;
  background: black;
}
.marvel-device.iphone8 {
  width: 375px;
  height: 667px;
  padding: 105px 24px;
  border-radius: 56px;
  background: #d9dbdc;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.marvel-device.iphone8::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 50px;
  background: #f8f8f8;
}
.marvel-device.iphone8::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 48px;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 6px 3px #fff;
}
.marvel-device.iphone8 .home {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  border-radius: 100%;
  background: #303233;
  background: linear-gradient(135deg, #303233 0%, #b5b7b9 50%, #f0f2f2 69%, #303233 100%);
}
.marvel-device.iphone8 .home::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 100%;
  background: #f8f8f8;
}
.marvel-device.iphone8 .top-bar {
  position: absolute;
  top: 68px;
  left: 0;
  height: 14px;
  background: #bfbfc0;
}
.marvel-device.iphone8 .bottom-bar {
  position: absolute;
  bottom: 68px;
  left: 0;
  height: 14px;
  background: #bfbfc0;
}
.marvel-device.iphone8 .sleep {
  position: absolute;
  top: 190px;
  right: -4px;
  width: 4px;
  height: 66px;
  border-radius: 0 2px 2px 0;
  background: #d9dbdc;
}
.marvel-device.iphone8 .volume {
  position: absolute;
  z-index: 0;
  top: 188px;
  left: -4px;
  width: 4px;
  height: 66px;
  border-radius: 2px 0 0 2px;
  background: #d9dbdc;
}
.marvel-device.iphone8 .volume::before {
  content: "";
  display: block;
  position: absolute;
  top: -78px;
  left: 2px;
  width: 2px;
  height: 40px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone8 .volume::after {
  content: "";
  display: block;
  position: absolute;
  top: 82px;
  left: 0;
  width: 4px;
  height: 66px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone8 .camera {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.iphone8 .sensor {
  position: absolute;
  z-index: 3;
  top: 49px;
  left: 134px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.iphone8 .speaker {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 50%;
  width: 70px;
  height: 6px;
  margin-left: -35px;
  border-radius: 6px;
  background: #292728;
}
.marvel-device.iphone8.gold {
  background: #f9e7d3;
}
.marvel-device.iphone8.gold .top-bar,
.marvel-device.iphone8.gold .bottom-bar {
  background: white;
}
.marvel-device.iphone8.gold .sleep,
.marvel-device.iphone8.gold .volume {
  background: #f9e7d3;
}
.marvel-device.iphone8.gold .home {
  background: #cebba9;
  background: linear-gradient(135deg, #cebba9 0%, #f9e7d3 50%, #cebba9 100%);
}
.marvel-device.iphone8.black {
  background: #464646;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.7);
}
.marvel-device.iphone8.black::before {
  background: #080808;
}
.marvel-device.iphone8.black::after {
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 6px 3px #212121;
}
.marvel-device.iphone8.black .top-bar,
.marvel-device.iphone8.black .bottom-bar {
  background: #212121;
}
.marvel-device.iphone8.black .volume,
.marvel-device.iphone8.black .sleep {
  background: #464646;
}
.marvel-device.iphone8.black .camera {
  background: #080808;
}
.marvel-device.iphone8.black .home {
  background: #080808;
  background: linear-gradient(135deg, #080808 0%, #464646 50%, #080808 100%);
}
.marvel-device.iphone8.black .home::before {
  background: #080808;
}
.marvel-device.iphone8.landscape {
  width: 667px;
  height: 375px;
  padding: 24px 105px;
}
.marvel-device.iphone8.landscape .sleep {
  top: 100%;
  right: 190px;
  width: 66px;
  height: 4px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.iphone8.landscape .volume {
  top: -4px;
  left: calc(100% - 188px - 66px);
  width: 66px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8.landscape .volume::before {
  top: 2px;
  right: -78px;
  left: auto;
  width: 40px;
  height: 2px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8.landscape .volume::after {
  top: 0;
  left: -82px;
  width: 66px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8.landscape .top-bar {
  top: 0;
  left: calc(100% - 68px - 14px);
  width: 14px;
  height: 100%;
}
.marvel-device.iphone8.landscape .bottom-bar {
  top: 0;
  left: 68px;
  width: 14px;
  height: 100%;
}
.marvel-device.iphone8.landscape .home {
  top: 50%;
  left: 22px;
  margin-top: -34px;
  margin-left: 0;
}
.marvel-device.iphone8.landscape .sensor {
  top: 134px;
  left: calc(100% - 49px - 16px);
}
.marvel-device.iphone8.landscape .speaker {
  top: 50%;
  left: calc(100% - 54px - 6px);
  width: 6px;
  height: 70px;
  margin-top: -35px;
  margin-left: 0;
}
.marvel-device.iphone8.landscape .camera {
  top: 50%;
  left: calc(100% - 32px);
  margin-top: -5px;
  margin-left: 0;
}
.marvel-device.iphone8plus {
  width: 414px;
  height: 736px;
  padding: 112px 26px;
  border-radius: 56px;
  background: #d9dbdc;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.marvel-device.iphone8plus::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 50px;
  background: #f8f8f8;
}
.marvel-device.iphone8plus::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 48px;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 6px 3px #fff;
}
.marvel-device.iphone8plus .home {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  border-radius: 100%;
  background: #303233;
  background: linear-gradient(135deg, #303233 0%, #b5b7b9 50%, #f0f2f2 69%, #303233 100%);
}
.marvel-device.iphone8plus .home::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 100%;
  background: #f8f8f8;
}
.marvel-device.iphone8plus .top-bar {
  position: absolute;
  top: 68px;
  left: 0;
  height: 14px;
  background: #bfbfc0;
}
.marvel-device.iphone8plus .bottom-bar {
  position: absolute;
  bottom: 68px;
  left: 0;
  height: 14px;
  background: #bfbfc0;
}
.marvel-device.iphone8plus .sleep {
  position: absolute;
  top: 190px;
  right: -4px;
  width: 4px;
  height: 66px;
  border-radius: 0 2px 2px 0;
  background: #d9dbdc;
}
.marvel-device.iphone8plus .volume {
  position: absolute;
  z-index: 0;
  top: 188px;
  left: -4px;
  width: 4px;
  height: 66px;
  border-radius: 2px 0 0 2px;
  background: #d9dbdc;
}
.marvel-device.iphone8plus .volume::before {
  content: "";
  display: block;
  position: absolute;
  top: -78px;
  left: 2px;
  width: 2px;
  height: 40px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone8plus .volume::after {
  content: "";
  display: block;
  position: absolute;
  top: 82px;
  left: 0;
  width: 4px;
  height: 66px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone8plus .camera {
  position: absolute;
  z-index: 3;
  top: 29px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.iphone8plus .sensor {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 154px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.iphone8plus .speaker {
  position: absolute;
  z-index: 3;
  top: 59px;
  left: 50%;
  width: 70px;
  height: 6px;
  margin-left: -35px;
  border-radius: 6px;
  background: #292728;
}
.marvel-device.iphone8plus.gold {
  background: #f9e7d3;
}
.marvel-device.iphone8plus.gold .top-bar,
.marvel-device.iphone8plus.gold .bottom-bar {
  background: white;
}
.marvel-device.iphone8plus.gold .sleep,
.marvel-device.iphone8plus.gold .volume {
  background: #f9e7d3;
}
.marvel-device.iphone8plus.gold .home {
  background: #cebba9;
  background: linear-gradient(135deg, #cebba9 0%, #f9e7d3 50%, #cebba9 100%);
}
.marvel-device.iphone8plus.black {
  background: #464646;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.7);
}
.marvel-device.iphone8plus.black::before {
  background: #080808;
}
.marvel-device.iphone8plus.black::after {
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 6px 3px #212121;
}
.marvel-device.iphone8plus.black .top-bar,
.marvel-device.iphone8plus.black .bottom-bar {
  background: #212121;
}
.marvel-device.iphone8plus.black .volume,
.marvel-device.iphone8plus.black .sleep {
  background: #464646;
}
.marvel-device.iphone8plus.black .camera {
  background: #080808;
}
.marvel-device.iphone8plus.black .home {
  background: #080808;
  background: linear-gradient(135deg, #080808 0%, #464646 50%, #080808 100%);
}
.marvel-device.iphone8plus.black .home::before {
  background: #080808;
}
.marvel-device.iphone8plus.landscape {
  width: 736px;
  height: 414px;
  padding: 26px 112px;
}
.marvel-device.iphone8plus.landscape .sleep {
  top: 100%;
  right: 190px;
  width: 66px;
  height: 4px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.iphone8plus.landscape .volume {
  top: -4px;
  left: calc(100% - 188px - 66px);
  width: 66px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8plus.landscape .volume::before {
  top: 2px;
  right: -78px;
  left: auto;
  width: 40px;
  height: 2px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8plus.landscape .volume::after {
  top: 0;
  left: -82px;
  width: 66px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone8plus.landscape .top-bar {
  top: 0;
  left: calc(100% - 68px - 14px);
  width: 14px;
  height: 100%;
}
.marvel-device.iphone8plus.landscape .bottom-bar {
  top: 0;
  left: 68px;
  width: 14px;
  height: 100%;
}
.marvel-device.iphone8plus.landscape .home {
  top: 50%;
  left: 24px;
  margin-top: -34px;
  margin-left: 0;
}
.marvel-device.iphone8plus.landscape .sensor {
  top: 154px;
  left: calc(100% - 54px - 16px);
}
.marvel-device.iphone8plus.landscape .speaker {
  top: 50%;
  left: calc(100% - 59px - 6px);
  width: 6px;
  height: 70px;
  margin-top: -35px;
  margin-left: 0;
}
.marvel-device.iphone8plus.landscape .camera {
  top: 50%;
  left: calc(100% - 29px);
  margin-top: -5px;
  margin-left: 0;
}
.marvel-device.iphone5s,
.marvel-device.iphone5c {
  width: 320px;
  height: 568px;
  padding: 105px 22px;
  border-radius: 50px;
  background: #2c2b2c;
}
.marvel-device.iphone5s::before,
.marvel-device.iphone5c::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 46px;
  background: #1e1e1e;
}
.marvel-device.iphone5s .sleep,
.marvel-device.iphone5c .sleep {
  position: absolute;
  top: -4px;
  right: 60px;
  width: 60px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background: #282727;
}
.marvel-device.iphone5s .volume,
.marvel-device.iphone5c .volume {
  position: absolute;
  z-index: 0;
  top: 180px;
  left: -4px;
  width: 4px;
  height: 27px;
  border-radius: 2px 0 0 2px;
  background: #282727;
}
.marvel-device.iphone5s .volume::before,
.marvel-device.iphone5c .volume::before {
  content: "";
  display: block;
  position: absolute;
  top: -75px;
  left: 0;
  width: 4px;
  height: 35px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone5s .volume::after,
.marvel-device.iphone5c .volume::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -64px;
  left: 0;
  width: 4px;
  height: 27px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone5s .camera,
.marvel-device.iphone5c .camera {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 5px;
  background: #3c3d3d;
}
.marvel-device.iphone5s .sensor,
.marvel-device.iphone5c .sensor {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 160px;
  width: 10px;
  height: 10px;
  margin-left: -32px;
  border-radius: 5px;
  background: #3c3d3d;
}
.marvel-device.iphone5s .speaker,
.marvel-device.iphone5c .speaker {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 50%;
  width: 64px;
  height: 10px;
  margin-left: -32px;
  border-radius: 5px;
  background: #292728;
}
.marvel-device.iphone5s.landscape,
.marvel-device.iphone5c.landscape {
  width: 568px;
  height: 320px;
  padding: 22px 105px;
}
.marvel-device.iphone5s.landscape .sleep,
.marvel-device.iphone5c.landscape .sleep {
  top: calc(100% - 120px);
  right: -4px;
  width: 4px;
  height: 60px;
  border-radius: 0 2px 2px 0;
}
.marvel-device.iphone5s.landscape .volume,
.marvel-device.iphone5c.landscape .volume {
  top: -4px;
  left: calc(100% - 180px);
  width: 27px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone5s.landscape .volume::before,
.marvel-device.iphone5c.landscape .volume::before {
  top: 0;
  right: -75px;
  left: auto;
  width: 35px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone5s.landscape .volume::after,
.marvel-device.iphone5c.landscape .volume::after {
  z-index: 999;
  bottom: 0;
  left: -64px;
  width: 27px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone5s.landscape .sensor,
.marvel-device.iphone5c.landscape .sensor {
  top: 160px;
  left: calc(100% - 60px);
  margin-top: -32px;
  margin-left: 0;
}
.marvel-device.iphone5s.landscape .speaker,
.marvel-device.iphone5c.landscape .speaker {
  top: 50%;
  left: calc(100% - 60px);
  width: 10px;
  height: 64px;
  margin-top: -32px;
  margin-left: 0;
}
.marvel-device.iphone5s.landscape .camera,
.marvel-device.iphone5c.landscape .camera {
  top: 50%;
  left: calc(100% - 32px);
  margin-top: -5px;
  margin-left: 0;
}
.marvel-device.iphone5s .home {
  position: absolute;
  z-index: 3;
  bottom: 19px;
  left: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  border-radius: 36px;
  box-shadow: inset 0 0 0 4px #2c2b2c;
}
.marvel-device.iphone5s .top-bar {
  position: absolute;
  top: 70px;
  left: 0;
}
.marvel-device.iphone5s .bottom-bar {
  position: absolute;
  bottom: 70px;
  left: 0;
}
.marvel-device.iphone5s.landscape .home {
  bottom: 50%;
  left: 19px;
  margin-bottom: -34px;
  margin-left: 0;
}
.marvel-device.iphone5s.landscape .top-bar {
  top: 0;
  left: 70px;
  width: 3px;
  height: 100%;
}
.marvel-device.iphone5s.landscape .bottom-bar {
  right: 70px;
  bottom: 0;
  left: auto;
  width: 3px;
  height: 100%;
}
.marvel-device.iphone5s.silver {
  background: #bcbcbc;
}
.marvel-device.iphone5s.silver::before {
  background: #fcfcfc;
}
.marvel-device.iphone5s.silver .volume,
.marvel-device.iphone5s.silver .sleep {
  background: #d6d6d6;
}
.marvel-device.iphone5s.silver .top-bar,
.marvel-device.iphone5s.silver .bottom-bar {
  background: #eaebec;
}
.marvel-device.iphone5s.silver .home {
  box-shadow: inset 0 0 0 4px #bcbcbc;
}
.marvel-device.iphone5s.gold {
  background: #f9e7d3;
}
.marvel-device.iphone5s.gold::before {
  background: #fcfcfc;
}
.marvel-device.iphone5s.gold .volume,
.marvel-device.iphone5s.gold .sleep {
  background: #f9e7d3;
}
.marvel-device.iphone5s.gold .top-bar,
.marvel-device.iphone5s.gold .bottom-bar {
  background: white;
}
.marvel-device.iphone5s.gold .home {
  box-shadow: inset 0 0 0 4px #f9e7d3;
}
.marvel-device.iphone5c {
  background: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.marvel-device.iphone5c .top-bar,
.marvel-device.iphone5c .bottom-bar {
  display: none;
}
.marvel-device.iphone5c .home {
  position: absolute;
  z-index: 3;
  bottom: 19px;
  left: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  border-radius: 36px;
  background: #242324;
}
.marvel-device.iphone5c .home::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -11px;
  margin-left: -11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.marvel-device.iphone5c.landscape .home {
  bottom: 50%;
  left: 19px;
  margin-bottom: -34px;
  margin-left: 0;
}
.marvel-device.iphone5c .volume,
.marvel-device.iphone5c .sleep {
  background: #ddd;
}
.marvel-device.iphone5c.red {
  background: #f96b6c;
}
.marvel-device.iphone5c.red .volume,
.marvel-device.iphone5c.red .sleep {
  background: #ed5758;
}
.marvel-device.iphone5c.yellow {
  background: #f2dc60;
}
.marvel-device.iphone5c.yellow .volume,
.marvel-device.iphone5c.yellow .sleep {
  background: #e5ce4c;
}
.marvel-device.iphone5c.green {
  background: #97e563;
}
.marvel-device.iphone5c.green .volume,
.marvel-device.iphone5c.green .sleep {
  background: #85d94d;
}
.marvel-device.iphone5c.blue {
  background: #33a2db;
}
.marvel-device.iphone5c.blue .volume,
.marvel-device.iphone5c.blue .sleep {
  background: #2694cd;
}
.marvel-device.iphone4s {
  width: 320px;
  height: 480px;
  padding: 129px 27px;
  border-radius: 54px;
  background: #686868;
}
.marvel-device.iphone4s::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50px;
  background: #1e1e1e;
}
.marvel-device.iphone4s .top-bar {
  position: absolute;
  top: 60px;
  left: 0;
}
.marvel-device.iphone4s .bottom-bar {
  position: absolute;
  bottom: 90px;
  left: 0;
}
.marvel-device.iphone4s .camera {
  position: absolute;
  z-index: 3;
  top: 72px;
  left: 134px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.iphone4s .speaker {
  position: absolute;
  z-index: 3;
  top: 72px;
  left: 50%;
  width: 64px;
  height: 10px;
  margin-left: -32px;
  border-radius: 5px;
  background: #292728;
}
.marvel-device.iphone4s .sensor {
  position: absolute;
  z-index: 3;
  top: 36px;
  left: 50%;
  width: 40px;
  height: 10px;
  margin-left: -20px;
  border-radius: 5px;
  background: #292728;
}
.marvel-device.iphone4s .home {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  border-radius: 100%;
  background: #242324;
}
.marvel-device.iphone4s .home::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -11px;
  margin-left: -11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.marvel-device.iphone4s .sleep {
  position: absolute;
  top: -4px;
  right: 60px;
  width: 60px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background: #4d4d4d;
}
.marvel-device.iphone4s .volume {
  position: absolute;
  top: 160px;
  left: -4px;
  width: 4px;
  height: 27px;
  border-radius: 2px 0 0 2px;
  background: #4d4d4d;
}
.marvel-device.iphone4s .volume::before {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  left: 0;
  width: 4px;
  height: 35px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone4s .volume::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -64px;
  left: 0;
  width: 4px;
  height: 27px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.iphone4s.landscape {
  width: 480px;
  height: 320px;
  padding: 27px 129px;
}
.marvel-device.iphone4s.landscape .bottom-bar {
  bottom: 0;
  left: 90px;
  width: 3px;
  height: 100%;
}
.marvel-device.iphone4s.landscape .top-bar {
  top: 0;
  left: calc(100% - 60px);
  width: 3px;
  height: 100%;
}
.marvel-device.iphone4s.landscape .camera {
  top: 134px;
  left: calc(100% - 72px);
  margin-left: 0;
}
.marvel-device.iphone4s.landscape .speaker {
  top: 50%;
  left: calc(100% - 72px);
  width: 10px;
  height: 64px;
  margin-top: -32px;
  margin-left: 0;
}
.marvel-device.iphone4s.landscape .sensor {
  top: 50%;
  left: calc(100% - 36px);
  width: 10px;
  height: 40px;
  margin-top: -20px;
  margin-left: 0;
}
.marvel-device.iphone4s.landscape .home {
  bottom: 50%;
  left: 30px;
  margin-bottom: -36px;
  margin-left: 0;
}
.marvel-device.iphone4s.landscape .sleep {
  top: calc(100% - 120px);
  right: -4px;
  width: 4px;
  height: 60px;
  border-radius: 0 2px 2px 0;
}
.marvel-device.iphone4s.landscape .volume {
  top: -4px;
  left: calc(100% - 187px);
  width: 27px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone4s.landscape .volume::before {
  top: 0;
  right: -70px;
  left: auto;
  width: 35px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone4s.landscape .volume::after {
  bottom: 0;
  left: -64px;
  width: 27px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.iphone4s.silver {
  background: #bcbcbc;
}
.marvel-device.iphone4s.silver::before {
  background: #fcfcfc;
}
.marvel-device.iphone4s.silver .home {
  background: #fcfcfc;
  box-shadow: inset 0 0 0 1px #bcbcbc;
}
.marvel-device.iphone4s.silver .home::after {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.marvel-device.iphone4s.silver .volume,
.marvel-device.iphone4s.silver .sleep {
  background: #d6d6d6;
}
.marvel-device.nexus5 {
  width: 320px;
  height: 568px;
  padding: 50px 15px;
  border-radius: 20px;
  background: #1e1e1e;
}
.marvel-device.nexus5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 26px);
  height: 103.1%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 600px/50px;
  background: inherit;
}
.marvel-device.nexus5 .top-bar {
  position: absolute;
  top: 3px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 6px);
  border-radius: 20px;
  background: #181818;
}
.marvel-device.nexus5 .top-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 26px);
  height: 103%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 600px/50px;
  background: inherit;
}
.marvel-device.nexus5 .bottom-bar {
  display: none;
}
.marvel-device.nexus5 .sleep {
  position: absolute;
  top: 110px;
  left: -3px;
  width: 3px;
  height: 100px;
  border-radius: 2px 0 0 2px;
  background: inherit;
}
.marvel-device.nexus5 .volume {
  position: absolute;
  top: 70px;
  right: -3px;
  width: 3px;
  height: 45px;
  border-radius: 0 2px 2px 0;
  background: inherit;
}
.marvel-device.nexus5 .camera {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.nexus5 .camera::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 2px;
  left: -100px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.nexus5.landscape {
  width: 568px;
  height: 320px;
  padding: 15px 50px;
}
.marvel-device.nexus5.landscape::before {
  width: 103.1%;
  height: calc(100% - 26px);
  border-radius: 50px/600px;
}
.marvel-device.nexus5.landscape .top-bar {
  top: 4px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 8px);
}
.marvel-device.nexus5.landscape .top-bar::before {
  width: 103%;
  height: calc(100% - 26px);
  border-radius: 50px/600px;
}
.marvel-device.nexus5.landscape .sleep {
  top: -3px;
  left: calc(100% - 210px);
  width: 100px;
  height: 3px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.nexus5.landscape .volume {
  top: 100%;
  right: 70px;
  width: 45px;
  height: 3px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.nexus5.landscape .camera {
  top: 50%;
  left: calc(100% - 18px);
  margin-top: -5px;
  margin-left: 0;
}
.marvel-device.nexus5.landscape .camera::before {
  top: -100px;
  left: 2px;
}
.marvel-device.s5 {
  width: 320px;
  height: 568px;
  padding: 60px 18px;
  border-radius: 42px;
  background: #bcbcbc;
}
.marvel-device.s5::before,
.marvel-device.s5::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: calc(100% - 52px);
  height: 26px;
  transform: translateX(-50%);
  border-radius: 500px/40px;
  background: inherit;
}
.marvel-device.s5::before {
  top: -7px;
}
.marvel-device.s5::after {
  bottom: -7px;
}
.marvel-device.s5 .bottom-bar {
  display: none;
}
.marvel-device.s5 .top-bar {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 37px;
  background: radial-gradient(rgba(0, 0, 0, 0.02) 20%, transparent 60%) 0 0, radial-gradient(rgba(0, 0, 0, 0.02) 20%, transparent 60%) 3px 3px;
  background-color: white;
  background-position: center;
  background-size: 4px 4px;
}
.marvel-device.s5 .top-bar::before,
.marvel-device.s5 .top-bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: calc(100% - 48px);
  height: 26px;
  transform: translateX(-50%);
  border-radius: 500px/40px;
  background: inherit;
}
.marvel-device.s5 .top-bar::before {
  top: -7px;
}
.marvel-device.s5 .top-bar::after {
  bottom: -7px;
}
.marvel-device.s5 .sleep {
  position: absolute;
  top: 100px;
  left: -3px;
  width: 3px;
  height: 100px;
  border-radius: 2px 0 0 2px;
  background: #cecece;
}
.marvel-device.s5 .speaker {
  display: block;
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 68px;
  height: 8px;
  margin-left: -34px;
  border-radius: 4px;
  background-color: #bcbcbc;
  background-position: top left;
}
.marvel-device.s5 .sensor {
  display: block;
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 110px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.s5 .sensor::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.s5 .camera {
  display: block;
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 42px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: black;
}
.marvel-device.s5 .camera::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  margin-left: -2px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.s5 .home {
  display: block;
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 50%;
  width: 70px;
  height: 20px;
  margin-left: -35px;
  border: 2px solid black;
  border-radius: 18px;
  background: white;
}
.marvel-device.s5.landscape {
  width: 568px;
  height: 320px;
  padding: 18px 60px;
}
.marvel-device.s5.landscape::before,
.marvel-device.s5.landscape::after {
  width: 26px;
  height: calc(100% - 52px);
  transform: translateY(-50%);
  border-radius: 40px/500px;
}
.marvel-device.s5.landscape::before {
  top: 50%;
  left: -7px;
}
.marvel-device.s5.landscape::after {
  top: 50%;
  right: -7px;
  left: auto;
}
.marvel-device.s5.landscape .top-bar::before,
.marvel-device.s5.landscape .top-bar::after {
  width: 26px;
  height: calc(100% - 48px);
  transform: translateY(-50%);
  border-radius: 40px/500px;
}
.marvel-device.s5.landscape .top-bar::before {
  top: 50%;
  right: -7px;
  left: auto;
}
.marvel-device.s5.landscape .top-bar::after {
  top: 50%;
  right: auto;
  left: -7px;
}
.marvel-device.s5.landscape .sleep {
  top: -3px;
  left: calc(100% - 200px);
  width: 100px;
  height: 3px;
  border-radius: 2px 2px 0 0;
}
.marvel-device.s5.landscape .speaker {
  top: 50%;
  left: calc(100% - 20px);
  width: 8px;
  height: 68px;
  margin-top: -34px;
  margin-left: 0;
}
.marvel-device.s5.landscape .sensor {
  top: calc(100% - 110px);
  right: 20px;
}
.marvel-device.s5.landscape .sensor::after {
  right: 0;
  left: -12px;
}
.marvel-device.s5.landscape .camera {
  top: calc(100% - 42px);
  right: 24px;
}
.marvel-device.s5.landscape .home {
  bottom: 50%;
  left: 17px;
  width: 20px;
  height: 70px;
  margin-bottom: -35px;
  margin-left: 0;
}
.marvel-device.s5.black {
  background: #1e1e1e;
}
.marvel-device.s5.black .speaker {
  background: black;
}
.marvel-device.s5.black .sleep {
  background: #1e1e1e;
}
.marvel-device.s5.black .top-bar {
  background: radial-gradient(rgba(0, 0, 0, 0.05) 20%, transparent 60%) 0 0, radial-gradient(rgba(0, 0, 0, 0.05) 20%, transparent 60%) 3px 3px;
  background-color: #2c2b2c;
  background-size: 4px 4px;
}
.marvel-device.s5.black .home {
  background: #2c2b2c;
}
.marvel-device.lumia920 {
  width: 320px;
  height: 533px;
  padding: 80px 35px 125px;
  border-radius: 40px/3px;
  background: #fd0;
}
.marvel-device.lumia920 .bottom-bar {
  display: none;
}
.marvel-device.lumia920 .top-bar {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 32px);
  border-radius: 24px;
  background: black;
}
.marvel-device.lumia920 .top-bar::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 22px;
  background: #1e1e1e;
}
.marvel-device.lumia920 .volume {
  position: absolute;
  top: 130px;
  right: -3px;
  width: 3px;
  height: 100px;
  border-radius: 0 2px 2px 0;
  background: #1e1e1e;
}
.marvel-device.lumia920 .volume::before {
  content: "";
  display: block;
  position: absolute;
  top: 190px;
  right: 0;
  width: 3px;
  height: 50px;
  border-radius: 0 2px 2px 0;
  background: inherit;
}
.marvel-device.lumia920 .volume::after {
  content: "";
  display: block;
  position: absolute;
  top: 460px;
  right: 0;
  width: 3px;
  height: 50px;
  border-radius: 0 2px 2px 0;
  background: inherit;
}
.marvel-device.lumia920 .camera {
  position: absolute;
  z-index: 5;
  top: 34px;
  right: 130px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #3c3d3d;
}
.marvel-device.lumia920 .speaker {
  position: absolute;
  z-index: 3;
  top: 38px;
  left: 50%;
  width: 64px;
  height: 10px;
  margin-left: -32px;
  border-radius: 5px;
  background: #292728;
}
.marvel-device.lumia920.landscape {
  width: 568px;
  height: 320px;
  padding: 35px 80px 35px 125px;
  border-radius: 2px/100px;
}
.marvel-device.lumia920.landscape .top-bar {
  top: 12px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 24px);
}
.marvel-device.lumia920.landscape .volume {
  top: 100%;
  right: 130px;
  width: 100px;
  height: 3px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.lumia920.landscape .volume::before {
  top: 0;
  right: 190px;
  width: 50px;
  height: 3px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.lumia920.landscape .volume::after {
  top: 0;
  right: 430px;
  width: 50px;
  height: 3px;
  border-radius: 0 0 2px 2px;
}
.marvel-device.lumia920.landscape .camera {
  top: calc(100% - 140px);
  right: 30px;
}
.marvel-device.lumia920.landscape .speaker {
  top: 50%;
  left: calc(100% - 48px);
  width: 10px;
  height: 64px;
  margin-top: -32px;
  margin-left: 0;
}
.marvel-device.lumia920.black {
  background: black;
}
.marvel-device.lumia920.white {
  background: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.marvel-device.lumia920.blue {
  background: #00acdd;
}
.marvel-device.lumia920.red {
  background: #cc3e32;
}
.marvel-device.htc-one {
  width: 320px;
  height: 568px;
  padding: 72px 25px 100px;
  border-radius: 34px;
  background: #bebebe;
}
.marvel-device.htc-one::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 32px;
  background: #adadad;
}
.marvel-device.htc-one::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 30px;
  background: #eee;
}
.marvel-device.htc-one .top-bar {
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 2px;
  width: calc(100% - 4px);
  height: 635px;
  background: #424242;
}
.marvel-device.htc-one .top-bar::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 2px;
  width: calc(100% - 4px);
  height: 100%;
  background: black;
}
.marvel-device.htc-one .bottom-bar {
  display: none;
}
.marvel-device.htc-one .speaker {
  display: block;
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  width: 216px;
  height: 16px;
  margin-left: -108px;
  background: radial-gradient(#343434 25%, transparent 50%) 0 0, radial-gradient(#343434 25%, transparent 50%) 4px 4px;
  background-position: top left;
  background-size: 4px 4px;
}
.marvel-device.htc-one .speaker::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 676px;
  left: 50%;
  width: 216px;
  height: 16px;
  margin-left: -108px;
  background: inherit;
}
.marvel-device.htc-one .camera {
  display: block;
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 38px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.htc-one .camera::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 100%;
  background: black;
}
.marvel-device.htc-one .sensor {
  display: block;
  position: absolute;
  z-index: 3;
  top: 29px;
  left: 60px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.htc-one .sensor::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.htc-one.landscape {
  width: 568px;
  height: 320px;
  padding: 25px 72px 25px 100px;
}
.marvel-device.htc-one.landscape .top-bar {
  top: 2px;
  left: calc(100% - 685px);
  width: 635px;
  height: calc(100% - 4px);
}
.marvel-device.htc-one.landscape .speaker {
  top: 50%;
  left: calc(100% - 38px);
  width: 16px;
  height: 216px;
  margin-top: -108px;
  margin-left: 0;
}
.marvel-device.htc-one.landscape .speaker::after {
  top: 50%;
  left: calc(100% - 692px);
  width: 16px;
  height: 216px;
  margin-top: -108px;
  margin-left: 0;
}
.marvel-device.htc-one.landscape .camera {
  top: calc(100% - 38px);
  right: 18px;
}
.marvel-device.htc-one.landscape .sensor {
  top: 60px;
  left: calc(100% - 29px);
}
.marvel-device.htc-one.landscape .sensor ::after {
  top: -12px;
  right: 0;
}
.marvel-device.ipad {
  width: 576px;
  height: 768px;
  padding: 90px 25px;
  border-radius: 44px;
  background: #242324;
}
.marvel-device.ipad::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 40px;
  background: #1e1e1e;
}
.marvel-device.ipad .camera {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.ipad .top-bar,
.marvel-device.ipad .bottom-bar {
  display: none;
}
.marvel-device.ipad .home {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  border-radius: 36px;
  background: #242324;
}
.marvel-device.ipad .home::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.marvel-device.ipad.landscape {
  width: 768px;
  height: 576px;
  padding: 25px 90px;
}
.marvel-device.ipad.landscape .camera {
  top: 50%;
  left: calc(100% - 44px);
  margin-top: -5px;
  margin-left: 0;
}
.marvel-device.ipad.landscape .home {
  top: 50%;
  left: 22px;
  margin-top: -25px;
  margin-left: 0;
}
.marvel-device.ipad.silver {
  background: #bcbcbc;
}
.marvel-device.ipad.silver::before {
  background: #fcfcfc;
}
.marvel-device.ipad.silver .home {
  background: #fcfcfc;
  box-shadow: inset 0 0 0 1px #bcbcbc;
}
.marvel-device.ipad.silver .home::after {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.marvel-device.macbook {
  width: 960px;
  height: 600px;
  margin: 0 auto;
  padding: 44px 44px 76px;
  border-radius: 34px;
  background: #bebebe;
}
.marvel-device.macbook::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 30px;
  background: #1e1e1e;
}
.marvel-device.macbook .top-bar {
  content: "";
  display: block;
  position: absolute;
  top: 680px;
  left: -70px;
  width: calc(100% + 140px);
  height: 40px;
  border-bottom-right-radius: 90px 18px;
  border-bottom-left-radius: 90px 18px;
  background: #bebebe;
  box-shadow: inset 0 -4px 13px 3px rgba(34, 34, 34, 0.6);
}
.marvel-device.macbook .top-bar::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  border-bottom: 2px solid #aaa;
  border-radius: 5px;
  background: #f0f0f0;
}
.marvel-device.macbook .top-bar::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 16%;
  height: 14px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0 0 20px 20px;
  background: #ddd;
  box-shadow: inset 0 -3px 10px #999;
}
.marvel-device.macbook .bottom-bar {
  content: "";
  display: block;
  position: absolute;
  top: 680px;
  left: -70px;
  width: calc(100% + 140px);
  height: 26px;
  background: transparent;
}
.marvel-device.macbook .bottom-bar::before,
.marvel-device.macbook .bottom-bar::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 80px;
  height: calc(100% - 2px);
}
.marvel-device.macbook .bottom-bar::before {
  left: 0;
  background: #f0f0f0;
  background: linear-gradient(to right, #747474 0%, #c3c3c3 5%, #ebebeb 14%, #979797 41%, #f0f0f0 80%, #f0f0f0 100%, #f0f0f0 100%);
}
.marvel-device.macbook .bottom-bar::after {
  right: 0;
  background: #f0f0f0;
  background: linear-gradient(to right, #f0f0f0 0%, #f0f0f0 0%, #f0f0f0 20%, #979797 59%, #ebebeb 86%, #c3c3c3 95%, #747474 100%);
}
.marvel-device.macbook .camera {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 100%;
  background: #3c3d3d;
}
.marvel-device.macbook .home {
  display: none;
}
.marvel-device.iphone-x {
  width: 375px;
  height: 812px;
  padding: 26px;
  border-radius: 66px;
  background: #fdfdfd;
  box-shadow: inset 0 0 11px 0 black;
}
.marvel-device.iphone-x .overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 66px;
}
.marvel-device.iphone-x .shadow {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
}
.marvel-device.iphone-x .shadow--tl {
  top: -20px;
  left: -20px;
}
.marvel-device.iphone-x .shadow--tr {
  top: -20px;
  right: -20px;
}
.marvel-device.iphone-x .shadow--bl {
  bottom: -20px;
  left: -20px;
}
.marvel-device.iphone-x .shadow--br {
  right: -20px;
  bottom: -20px;
}
.marvel-device.iphone-x::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 61px;
  background: black;
}
.marvel-device.iphone-x .inner-shadow {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  overflow: hidden;
  border-radius: 56px;
  box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.66);
}
.marvel-device.iphone-x .inner-shadow::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  border-radius: 200px/112px;
  box-shadow: inset 0 0 20px 0 #fff;
}
.marvel-device.iphone-x .screen {
  border-radius: 40px;
  box-shadow: none;
}
.marvel-device.iphone-x .top-bar,
.marvel-device.iphone-x .bottom-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
}
.marvel-device.iphone-x .top-bar {
  top: 80px;
}
.marvel-device.iphone-x .bottom-bar {
  bottom: 80px;
}
.marvel-device.iphone-x .volume,
.marvel-device.iphone-x .volume::before,
.marvel-device.iphone-x .volume::after,
.marvel-device.iphone-x .sleep {
  position: absolute;
  width: 3px;
  background: #b5b5b5;
}
.marvel-device.iphone-x .volume {
  top: 116px;
  left: -3px;
  height: 32px;
}
.marvel-device.iphone-x .volume::before {
  content: "";
  top: 62px;
  left: 0;
  height: 62px;
}
.marvel-device.iphone-x .volume::after {
  content: "";
  top: 140px;
  left: 0;
  height: 62px;
}
.marvel-device.iphone-x .sleep {
  top: 200px;
  right: -3px;
  height: 96px;
}
.marvel-device.iphone-x .camera {
  position: absolute;
  top: 9px;
  left: 154px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #0d4d71;
}
.marvel-device.iphone-x .speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 60px;
  height: 6px;
  margin-left: -30px;
  border-radius: 6px;
  background: #171818;
}
.marvel-device.iphone-x .notch {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 108px;
  width: 210px;
  height: 30px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background: black;
}
.marvel-device.iphone-x .notch::before,
.marvel-device.iphone-x .notch::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
}
.marvel-device.iphone-x .notch::after {
  left: -8px;
  background: radial-gradient(circle at bottom left, transparent 0, transparent 70%, black 70%, black 100%);
}
.marvel-device.iphone-x .notch::before {
  right: -8px;
  background: radial-gradient(circle at bottom right, transparent 0, transparent 70%, black 70%, black 100%);
}
.marvel-device.iphone-x.landscape {
  width: 812px;
  height: 375px;
}
.marvel-device.iphone-x.landscape .top-bar,
.marvel-device.iphone-x.landscape .bottom-bar {
  top: 0;
  width: 8px;
  height: 100%;
}
.marvel-device.iphone-x.landscape .top-bar {
  left: 80px;
}
.marvel-device.iphone-x.landscape .bottom-bar {
  right: 80px;
  bottom: auto;
  left: auto;
}
.marvel-device.iphone-x.landscape .volume,
.marvel-device.iphone-x.landscape .volume::before,
.marvel-device.iphone-x.landscape .volume::after,
.marvel-device.iphone-x.landscape .sleep {
  height: 3px;
}
.marvel-device.iphone-x.landscape .inner-shadow::before {
  top: 0;
  left: -8%;
  width: 116%;
  height: 100%;
  border-radius: 112px/200px;
}
.marvel-device.iphone-x.landscape .volume {
  top: auto;
  bottom: -3px;
  left: 116px;
  width: 32px;
}
.marvel-device.iphone-x.landscape .volume::before {
  top: 0;
  left: 62px;
  width: 62px;
}
.marvel-device.iphone-x.landscape .volume::after {
  top: 0;
  left: 140px;
  width: 62px;
}
.marvel-device.iphone-x.landscape .sleep {
  top: -3px;
  right: auto;
  left: 200px;
  width: 96px;
}
.marvel-device.iphone-x.landscape .camera {
  top: auto;
  bottom: 154px;
  left: 9px;
}
.marvel-device.iphone-x.landscape .speaker {
  top: 50%;
  left: 9px;
  width: 6px;
  height: 60px;
  margin-top: -30px;
  margin-left: 0;
}
.marvel-device.iphone-x.landscape .notch {
  top: auto;
  bottom: 108px;
  left: 26px;
  width: 30px;
  height: 210px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 0;
}
.marvel-device.iphone-x.landscape .notch::before,
.marvel-device.iphone-x.landscape .notch::after {
  left: 0;
}
.marvel-device.iphone-x.landscape .notch::after {
  top: auto;
  bottom: -8px;
  background: radial-gradient(circle at bottom right, transparent 0, transparent 70%, black 70%, black 100%);
}
.marvel-device.iphone-x.landscape .notch::before {
  top: -8px;
  background: radial-gradient(circle at top right, transparent 0, transparent 70%, black 70%, black 100%);
}
.marvel-device.note8 {
  width: 400px;
  height: 822px;
  padding: 45px 10px;
  border-radius: 34px;
  background: black;
}
.marvel-device.note8 .overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}
.marvel-device.note8 .speaker {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 50%;
  width: 56px;
  height: 8px;
  margin-left: -28px;
  border-radius: 8px;
  background: #171818;
}
.marvel-device.note8 .camera {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 86px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #212b36;
}
.marvel-device.note8 .camera::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5px;
  left: -22px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #212b36;
}
.marvel-device.note8 .sensors {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 120px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #1d233b;
}
.marvel-device.note8 .sensors::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #1d233b;
}
.marvel-device.note8 .more-sensors {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 285px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #33244a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.marvel-device.note8 .more-sensors::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 40px;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: #214a61;
}
.marvel-device.note8 .sleep {
  position: absolute;
  top: 288px;
  right: -2px;
  width: 2px;
  height: 56px;
  background: black;
}
.marvel-device.note8 .volume {
  position: absolute;
  top: 168px;
  left: -2px;
  width: 2px;
  height: 120px;
  background: black;
}
.marvel-device.note8 .volume::before {
  content: "";
  position: absolute;
  top: 168px;
  left: 0;
  width: 2px;
  height: 56px;
  background: black;
}
.marvel-device.note8 .inner {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 0;
  width: 100%;
  height: calc(100% - 8px);
  border-top: 2px solid #9fa0a2;
  border-bottom: 2px solid #9fa0a2;
  border-radius: 34px;
  background: black;
  box-shadow: inset 0 0 6px 0 rgba(255, 255, 255, 0.5);
}
.marvel-device.note8 .shadow {
  content: "";
  position: absolute;
  z-index: 5;
  top: -0.5%;
  left: 10px;
  width: calc(100% - 20px);
  height: 101%;
  border-radius: 38px;
  box-shadow: inset 0 0 60px 0 white, inset 0 0 30px 0 rgba(255, 255, 255, 0.5), 0 0 20px 0 white, 0 0 20px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.marvel-device.note8 .screen {
  border-radius: 14px;
  box-shadow: none;
}
.marvel-device.note8.landscape {
  width: 822px;
  height: 400px;
  padding: 10px 45px;
}
.marvel-device.note8.landscape .speaker {
  top: 50%;
  right: 25px;
  left: auto;
  width: 8px;
  height: 56px;
  margin-top: -28px;
  margin-left: 0;
}
.marvel-device.note8.landscape .camera {
  top: 86px;
  right: 18px;
  left: auto;
}
.marvel-device.note8.landscape .camera::before {
  top: -22px;
  left: 5px;
}
.marvel-device.note8.landscape .sensors {
  top: 120px;
  right: 22px;
  left: auto;
}
.marvel-device.note8.landscape .sensors::before {
  top: 18px;
  left: 0;
}
.marvel-device.note8.landscape .more-sensors {
  top: 285px;
  right: 18px;
  left: auto;
}
.marvel-device.note8.landscape .more-sensors::before {
  top: 40px;
  left: 4px;
}
.marvel-device.note8.landscape .sleep {
  top: auto;
  right: 288px;
  bottom: -2px;
  width: 56px;
  height: 2px;
}
.marvel-device.note8.landscape .volume {
  top: -2px;
  right: 168px;
  left: auto;
  width: 120px;
  height: 2px;
}
.marvel-device.note8.landscape .volume::before {
  top: 0;
  right: 168px;
  left: auto;
  width: 56px;
  height: 2px;
}
.marvel-device.note8.landscape .inner {
  top: 0;
  left: 2px;
  width: calc(100% - 8px);
  height: 100%;
  border-top: 0;
  border-right: 2px solid #9fa0a2;
  border-bottom: 0;
  border-left: 2px solid #9fa0a2;
}
.marvel-device.note8.landscape .shadow {
  top: 10px;
  left: -0.5%;
  width: 101%;
  height: calc(100% - 20px);
}

/*# sourceMappingURL=styles.css.map*/