css实现disco灯光效果代码

代码语言:html

所属分类:动画

代码描述:css实现disco灯光效果代码

代码标签: 灯光 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

<style>
body {
  background: #171819;
  height: 100vh;
  overflow: hidden;
  display: flex;
  font-family: "Anton", sans-serif;
  justify-content: center;
  align-items: center;
  perspective: 600px;
}

div {
  position: absolute;
  transform-style: preserve-3d;
}

.container {
  position: relative;
  display: grid;
  grid-template-rows: repeat(20, 5vh);
  grid-template-columns: repeat(20, 5vw);
  transform-style: preserve-3d;
}
.container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: #000;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #1D2A3C;
}

.monitor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.trigger {
  position: relative;
}
.trigger:nth-child(1):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(1):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(2):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(2):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(3):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(3):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(4):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(4):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(5):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(5):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(6):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(6):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(7):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(7):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(8):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(8):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(9):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(9):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(10):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(10):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(11):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(11):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(12):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(12):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(13):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(13):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(14):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(14):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(15):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(15):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(16):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(16):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(17):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(17):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(18):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(18):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(19):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(19):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(20):hover ~ .monitor .camera.-x {
  transform: rotateX(-86deg);
}
.trigger:nth-child(20):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(21):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(21):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(22):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(22):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(23):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(23):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(24):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(24):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(25):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(25):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(26):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(26):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(27):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(27):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(28):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(28):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(29):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(29):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(30):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(30):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(31):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(31):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(32):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(32):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(33):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(33):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(34):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(34):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(35):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(35):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(36):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(36):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(37):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(37):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(38):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(38):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(39):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(39):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(40):hover ~ .monitor .camera.-x {
  transform: rotateX(-78deg);
}
.trigger:nth-child(40):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(41):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(41):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(42):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(42):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(43):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(43):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(44):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(44):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(45):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(45):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(46):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(46):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(47):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(47):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(48):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(48):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(49):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(49):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(50):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(50):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(51):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(51):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(52):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(52):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(53):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(53):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(54):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(54):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(55):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(55):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(56):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(56):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(57):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(57):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(58):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(58):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(59):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(59):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(60):hover ~ .monitor .camera.-x {
  transform: rotateX(-70deg);
}
.trigger:nth-child(60):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(61):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(61):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(62):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(62):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(63):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(63):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(64):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(64):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(65):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(65):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(66):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(66):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(67):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(67):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(68):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(68):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(69):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(69):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(70):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(70):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(71):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(71):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(72):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(72):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(73):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(73):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(74):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(74):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(75):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(75):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(76):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(76):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(77):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(77):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(78):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(78):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(79):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(79):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(80):hover ~ .monitor .camera.-x {
  transform: rotateX(-62deg);
}
.trigger:nth-child(80):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(81):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(81):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(82):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(82):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(83):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(83):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(84):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(84):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(85):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(85):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(86):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(86):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(87):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(87):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(88):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(88):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(89):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(89):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(90):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(90):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(91):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(91):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(92):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(92):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(93):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(93):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(94):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(94):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(95):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(95):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(96):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(96):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(97):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(97):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(98):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(98):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(99):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(99):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(100):hover ~ .monitor .camera.-x {
  transform: rotateX(-54deg);
}
.trigger:nth-child(100):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(101):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(101):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(102):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(102):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(103):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(103):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(104):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(104):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(105):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(105):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(106):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(106):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(107):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(107):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(108):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(108):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(109):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(109):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(110):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(110):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(111):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(111):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(112):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(112):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(113):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(113):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(114):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(114):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(115):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(115):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(116):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(116):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(117):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(117):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(118):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(118):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(119):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(119):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(120):hover ~ .monitor .camera.-x {
  transform: rotateX(-46deg);
}
.trigger:nth-child(120):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(121):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(121):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(122):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(122):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(123):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(123):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(124):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(124):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(125):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(125):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(126):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(126):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(127):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(127):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(128):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(128):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(129):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(129):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(130):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(130):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(131):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(131):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(132):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(132):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(133):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(133):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(134):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(134):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(135):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(135):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(136):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(136):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(137):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(137):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(138):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(138):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(139):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(139):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(140):hover ~ .monitor .camera.-x {
  transform: rotateX(-38deg);
}
.trigger:nth-child(140):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(141):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(141):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(142):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(142):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(143):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(143):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(144):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(144):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(145):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(145):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(146):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(146):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(147):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(147):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(148):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(148):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(149):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(149):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(150):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(150):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(151):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(151):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(152):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(152):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(153):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(153):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(154):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(154):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(155):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(155):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(156):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(156):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(157):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(157):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(158):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(158):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(159):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(159):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(160):hover ~ .monitor .camera.-x {
  transform: rotateX(-30deg);
}
.trigger:nth-child(160):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(161):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(161):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(162):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(162):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(163):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(163):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(164):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(164):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(165):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(165):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(166):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(166):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(167):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(167):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(168):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(168):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(169):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(169):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(170):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(170):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(171):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(171):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(172):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(172):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(173):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(173):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(174):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(174):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(175):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(175):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(176):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(176):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(177):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(177):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(178):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(178):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(179):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(179):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(180):hover ~ .monitor .camera.-x {
  transform: rotateX(-22deg);
}
.trigger:nth-child(180):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(181):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(181):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(182):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(182):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(183):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(183):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(184):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(184):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(185):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(185):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(186):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(186):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(187):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(187):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(188):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(188):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(189):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(189):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(190):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(190):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(191):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(191):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(192):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(192):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(193):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(193):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(194):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(194):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(195):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(195):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(196):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(196):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(197):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(197):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(198):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(198):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(199):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(199):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(200):hover ~ .monitor .camera.-x {
  transform: rotateX(-14deg);
}
.trigger:nth-child(200):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(201):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(201):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(202):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(202):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(203):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(203):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(204):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(204):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(205):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(205):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(206):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(206):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(207):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(207):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(208):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(208):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(209):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(209):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(210):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(210):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(211):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(211):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(212):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(212):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(213):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(213):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(214):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(214):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(215):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(215):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(216):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(216):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(217):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(217):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(218):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(218):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(219):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(219):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(220):hover ~ .monitor .camera.-x {
  transform: rotateX(-6deg);
}
.trigger:nth-child(220):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(221):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(221):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(222):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(222):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(223):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(223):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(224):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(224):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(225):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(225):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(226):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(226):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(227):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(227):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(228):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(228):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(229):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(229):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(230):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(230):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(231):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(231):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(232):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(232):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(233):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(233):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(234):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(234):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(235):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(235):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(236):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(236):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(237):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(237):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(238):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(238):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(239):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(239):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(240):hover ~ .monitor .camera.-x {
  transform: rotateX(2deg);
}
.trigger:nth-child(240):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(241):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(241):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(242):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(242):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(243):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(243):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(244):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(244):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(245):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(245):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(246):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(246):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(247):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(247):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(248):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(248):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(249):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(249):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(250):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(250):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(251):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(251):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(252):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(252):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(253):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(253):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(254):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(254):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(255):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(255):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(256):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(256):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(257):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(257):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(258):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(258):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(259):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(259):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(260):hover ~ .monitor .camera.-x {
  transform: rotateX(10deg);
}
.trigger:nth-child(260):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(261):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(261):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(262):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(262):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(263):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(263):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(264):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(264):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(265):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(265):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(266):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(266):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(267):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(267):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(268):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(268):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(269):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(269):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(270):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(270):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(271):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(271):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(272):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(272):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(273):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(273):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(274):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(274):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(275):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(275):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(276):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(276):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(277):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(277):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(278):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(278):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(279):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(279):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(280):hover ~ .monitor .camera.-x {
  transform: rotateX(18deg);
}
.trigger:nth-child(280):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(281):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(281):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(282):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(282):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(283):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(283):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(284):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(284):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(285):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(285):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(286):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(286):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(287):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(287):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(288):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(288):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(289):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(289):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(290):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(290):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(291):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(291):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(292):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(292):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(293):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(293):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(294):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(294):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(295):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(295):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(296):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(296):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(297):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(297):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(298):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(298):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(299):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(299):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(300):hover ~ .monitor .camera.-x {
  transform: rotateX(26deg);
}
.trigger:nth-child(300):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(301):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(301):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(302):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(302):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(303):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(303):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(304):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(304):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(305):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(305):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(306):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(306):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(307):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(307):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(308):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(308):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(309):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(309):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(310):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(310):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(311):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(311):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(312):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(312):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(313):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(313):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(314):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(314):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(315):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(315):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(316):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(316):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(317):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(317):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(318):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(318):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(319):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(319):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(320):hover ~ .monitor .camera.-x {
  transform: rotateX(34deg);
}
.trigger:nth-child(320):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(321):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(321):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(322):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(322):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(323):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(323):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(324):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(324):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(325):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(325):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(326):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(326):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(327):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(327):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(328):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(328):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(329):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(329):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(330):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(330):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(331):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(331):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(332):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(332):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(333):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(333):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(334):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(334):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(335):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(335):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(336):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(336):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(337):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(337):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(338):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(338):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(339):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(339):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(340):hover ~ .monitor .camera.-x {
  transform: rotateX(42deg);
}
.trigger:nth-child(340):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(341):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(341):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(342):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(342):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(343):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(343):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(344):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(344):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(345):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(345):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(346):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(346):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(347):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(347):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(348):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(348):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(349):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(349):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(350):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(350):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(351):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(351):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(352):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(352):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(353):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(353):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(354):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(354):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(355):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(355):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(356):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(356):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(357):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(357):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(358):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(358):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(359):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(359):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(360):hover ~ .monitor .camera.-x {
  transform: rotateX(50deg);
}
.trigger:nth-child(360):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(361):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(361):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(362):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(362):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(363):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(363):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(364):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(364):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(365):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(365):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(366):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(366):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(367):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(367):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(368):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(368):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(369):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(369):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(370):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(370):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(371):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(371):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(372):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(372):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(373):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(373):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(374):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(374):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(375):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(375):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(376):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(376):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(377):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(377):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(378):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(378):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(379):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(379):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(380):hover ~ .monitor .camera.-x {
  transform: rotateX(58deg);
}
.trigger:nth-child(380):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}
.trigger:nth-child(381):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(381):hover ~ .monitor .camera.-y {
  transform: rotateY(-56deg);
}
.trigger:nth-child(382):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(382):hover ~ .monitor .camera.-y {
  transform: rotateY(-48deg);
}
.trigger:nth-child(383):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(383):hover ~ .monitor .camera.-y {
  transform: rotateY(-40deg);
}
.trigger:nth-child(384):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(384):hover ~ .monitor .camera.-y {
  transform: rotateY(-32deg);
}
.trigger:nth-child(385):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(385):hover ~ .monitor .camera.-y {
  transform: rotateY(-24deg);
}
.trigger:nth-child(386):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(386):hover ~ .monitor .camera.-y {
  transform: rotateY(-16deg);
}
.trigger:nth-child(387):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(387):hover ~ .monitor .camera.-y {
  transform: rotateY(-8deg);
}
.trigger:nth-child(388):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(388):hover ~ .monitor .camera.-y {
  transform: rotateY(0deg);
}
.trigger:nth-child(389):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(389):hover ~ .monitor .camera.-y {
  transform: rotateY(8deg);
}
.trigger:nth-child(390):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(390):hover ~ .monitor .camera.-y {
  transform: rotateY(16deg);
}
.trigger:nth-child(391):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(391):hover ~ .monitor .camera.-y {
  transform: rotateY(24deg);
}
.trigger:nth-child(392):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(392):hover ~ .monitor .camera.-y {
  transform: rotateY(32deg);
}
.trigger:nth-child(393):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(393):hover ~ .monitor .camera.-y {
  transform: rotateY(40deg);
}
.trigger:nth-child(394):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(394):hover ~ .monitor .camera.-y {
  transform: rotateY(48deg);
}
.trigger:nth-child(395):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(395):hover ~ .monitor .camera.-y {
  transform: rotateY(56deg);
}
.trigger:nth-child(396):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(396):hover ~ .monitor .camera.-y {
  transform: rotateY(64deg);
}
.trigger:nth-child(397):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(397):hover ~ .monitor .camera.-y {
  transform: rotateY(72deg);
}
.trigger:nth-child(398):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(398):hover ~ .monitor .camera.-y {
  transform: rotateY(80deg);
}
.trigger:nth-child(399):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(399):hover ~ .monitor .camera.-y {
  transform: rotateY(88deg);
}
.trigger:nth-child(400):hover ~ .monitor .camera.-x {
  transform: rotateX(66deg);
}
.trigger:nth-child(400):hover ~ .monitor .camera.-y {
  transform: rotateY(96deg);
}

.camera {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 500ms;
}
.camera.-x {
  transform: rotateX(-30deg);
}
.camera.-y {
  transform: rotateY(0deg);
}

.mirrorball {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
}

.surface {
  width: 25px;
  height: 20px;
  background: #fff;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.line:nth-child(1) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -300ms infinite alternate;
          animation: flash 500ms -300ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -400ms infinite alternate;
          animation: flash 500ms -400ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -500ms infinite alternate;
          animation: flash 500ms -500ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -600ms infinite alternate;
          animation: flash 500ms -600ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -700ms infinite alternate;
          animation: flash 500ms -700ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -800ms infinite alternate;
          animation: flash 500ms -800ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -900ms infinite alternate;
          animation: flash 500ms -900ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -1000ms infinite alternate;
          animation: flash 500ms -1000ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -1100ms infinite alternate;
          animation: flash 500ms -1100ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -1200ms infinite alternate;
          animation: flash 500ms -1200ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(1) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-96deg) translateZ(150px);
}
.line:nth-child(1) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -500ms infinite alternate;
          animation: flash 500ms -500ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -600ms infinite alternate;
          animation: flash 500ms -600ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -700ms infinite alternate;
          animation: flash 500ms -700ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -800ms infinite alternate;
          animation: flash 500ms -800ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -900ms infinite alternate;
          animation: flash 500ms -900ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -1000ms infinite alternate;
          animation: flash 500ms -1000ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -1100ms infinite alternate;
          animation: flash 500ms -1100ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -1200ms infinite alternate;
          animation: flash 500ms -1200ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(2) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-84deg) translateZ(150px);
}
.line:nth-child(2) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -700ms infinite alternate;
          animation: flash 500ms -700ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -800ms infinite alternate;
          animation: flash 500ms -800ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -900ms infinite alternate;
          animation: flash 500ms -900ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -1000ms infinite alternate;
          animation: flash 500ms -1000ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -1100ms infinite alternate;
          animation: flash 500ms -1100ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -1200ms infinite alternate;
          animation: flash 500ms -1200ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(3) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-72deg) translateZ(150px);
}
.line:nth-child(3) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -900ms infinite alternate;
          animation: flash 500ms -900ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -1000ms infinite alternate;
          animation: flash 500ms -1000ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -1100ms infinite alternate;
          animation: flash 500ms -1100ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -1200ms infinite alternate;
          animation: flash 500ms -1200ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(4) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-60deg) translateZ(150px);
}
.line:nth-child(4) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -1100ms infinite alternate;
          animation: flash 500ms -1100ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -1200ms infinite alternate;
          animation: flash 500ms -1200ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(5) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-48deg) translateZ(150px);
}
.line:nth-child(5) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -1300ms infinite alternate;
          animation: flash 500ms -1300ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -1400ms infinite alternate;
          animation: flash 500ms -1400ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(6) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-36deg) translateZ(150px);
}
.line:nth-child(6) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -1500ms infinite alternate;
          animation: flash 500ms -1500ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -1600ms infinite alternate;
          animation: flash 500ms -1600ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -4300ms infinite alternate;
          animation: flash 500ms -4300ms infinite alternate;
}
.line:nth-child(7) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-24deg) translateZ(150px);
}
.line:nth-child(7) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -4400ms infinite alternate;
          animation: flash 500ms -4400ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -1700ms infinite alternate;
          animation: flash 500ms -1700ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -1800ms infinite alternate;
          animation: flash 500ms -1800ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -4300ms infinite alternate;
          animation: flash 500ms -4300ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -4400ms infinite alternate;
          animation: flash 500ms -4400ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -4500ms infinite alternate;
          animation: flash 500ms -4500ms infinite alternate;
}
.line:nth-child(8) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(-12deg) translateZ(150px);
}
.line:nth-child(8) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -4600ms infinite alternate;
          animation: flash 500ms -4600ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -1900ms infinite alternate;
          animation: flash 500ms -1900ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -2000ms infinite alternate;
          animation: flash 500ms -2000ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -4300ms infinite alternate;
          animation: flash 500ms -4300ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -4400ms infinite alternate;
          animation: flash 500ms -4400ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -4500ms infinite alternate;
          animation: flash 500ms -4500ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -4600ms infinite alternate;
          animation: flash 500ms -4600ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -4700ms infinite alternate;
          animation: flash 500ms -4700ms infinite alternate;
}
.line:nth-child(9) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(0deg) translateZ(150px);
}
.line:nth-child(9) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -4800ms infinite alternate;
          animation: flash 500ms -4800ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -2100ms infinite alternate;
          animation: flash 500ms -2100ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -2200ms infinite alternate;
          animation: flash 500ms -2200ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -4300ms infinite alternate;
          animation: flash 500ms -4300ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -4400ms infinite alternate;
          animation: flash 500ms -4400ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -4500ms infinite alternate;
          animation: flash 500ms -4500ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -4600ms infinite alternate;
          animation: flash 500ms -4600ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -4700ms infinite alternate;
          animation: flash 500ms -4700ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -4800ms infinite alternate;
          animation: flash 500ms -4800ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -4900ms infinite alternate;
          animation: flash 500ms -4900ms infinite alternate;
}
.line:nth-child(10) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(12deg) translateZ(150px);
}
.line:nth-child(10) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -5000ms infinite alternate;
          animation: flash 500ms -5000ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -2300ms infinite alternate;
          animation: flash 500ms -2300ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -2400ms infinite alternate;
          animation: flash 500ms -2400ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(16) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(17) {
  transform: rotateY(204deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(17) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(18) {
  transform: rotateY(216deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(18) .surface {
  -webkit-animation: flash 500ms -4000ms infinite alternate;
          animation: flash 500ms -4000ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(19) {
  transform: rotateY(228deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(19) .surface {
  -webkit-animation: flash 500ms -4100ms infinite alternate;
          animation: flash 500ms -4100ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(20) {
  transform: rotateY(240deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(20) .surface {
  -webkit-animation: flash 500ms -4200ms infinite alternate;
          animation: flash 500ms -4200ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(21) {
  transform: rotateY(252deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(21) .surface {
  -webkit-animation: flash 500ms -4300ms infinite alternate;
          animation: flash 500ms -4300ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(22) {
  transform: rotateY(264deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(22) .surface {
  -webkit-animation: flash 500ms -4400ms infinite alternate;
          animation: flash 500ms -4400ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(23) {
  transform: rotateY(276deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(23) .surface {
  -webkit-animation: flash 500ms -4500ms infinite alternate;
          animation: flash 500ms -4500ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(24) {
  transform: rotateY(288deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(24) .surface {
  -webkit-animation: flash 500ms -4600ms infinite alternate;
          animation: flash 500ms -4600ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(25) {
  transform: rotateY(300deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(25) .surface {
  -webkit-animation: flash 500ms -4700ms infinite alternate;
          animation: flash 500ms -4700ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(26) {
  transform: rotateY(312deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(26) .surface {
  -webkit-animation: flash 500ms -4800ms infinite alternate;
          animation: flash 500ms -4800ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(27) {
  transform: rotateY(324deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(27) .surface {
  -webkit-animation: flash 500ms -4900ms infinite alternate;
          animation: flash 500ms -4900ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(28) {
  transform: rotateY(336deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(28) .surface {
  -webkit-animation: flash 500ms -5000ms infinite alternate;
          animation: flash 500ms -5000ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(29) {
  transform: rotateY(348deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(29) .surface {
  -webkit-animation: flash 500ms -5100ms infinite alternate;
          animation: flash 500ms -5100ms infinite alternate;
}
.line:nth-child(11) .plate:nth-child(30) {
  transform: rotateY(360deg) rotateX(24deg) translateZ(150px);
}
.line:nth-child(11) .plate:nth-child(30) .surface {
  -webkit-animation: flash 500ms -5200ms infinite alternate;
          animation: flash 500ms -5200ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(1) {
  transform: rotateY(12deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(1) .surface {
  -webkit-animation: flash 500ms -2500ms infinite alternate;
          animation: flash 500ms -2500ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(2) {
  transform: rotateY(24deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(2) .surface {
  -webkit-animation: flash 500ms -2600ms infinite alternate;
          animation: flash 500ms -2600ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(3) {
  transform: rotateY(36deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(3) .surface {
  -webkit-animation: flash 500ms -2700ms infinite alternate;
          animation: flash 500ms -2700ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(4) {
  transform: rotateY(48deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(4) .surface {
  -webkit-animation: flash 500ms -2800ms infinite alternate;
          animation: flash 500ms -2800ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(5) {
  transform: rotateY(60deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(5) .surface {
  -webkit-animation: flash 500ms -2900ms infinite alternate;
          animation: flash 500ms -2900ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(6) {
  transform: rotateY(72deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(6) .surface {
  -webkit-animation: flash 500ms -3000ms infinite alternate;
          animation: flash 500ms -3000ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(7) {
  transform: rotateY(84deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(7) .surface {
  -webkit-animation: flash 500ms -3100ms infinite alternate;
          animation: flash 500ms -3100ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(8) {
  transform: rotateY(96deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(8) .surface {
  -webkit-animation: flash 500ms -3200ms infinite alternate;
          animation: flash 500ms -3200ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(9) {
  transform: rotateY(108deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(9) .surface {
  -webkit-animation: flash 500ms -3300ms infinite alternate;
          animation: flash 500ms -3300ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(10) {
  transform: rotateY(120deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(10) .surface {
  -webkit-animation: flash 500ms -3400ms infinite alternate;
          animation: flash 500ms -3400ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(11) {
  transform: rotateY(132deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(11) .surface {
  -webkit-animation: flash 500ms -3500ms infinite alternate;
          animation: flash 500ms -3500ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(12) {
  transform: rotateY(144deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(12) .surface {
  -webkit-animation: flash 500ms -3600ms infinite alternate;
          animation: flash 500ms -3600ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(13) {
  transform: rotateY(156deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(13) .surface {
  -webkit-animation: flash 500ms -3700ms infinite alternate;
          animation: flash 500ms -3700ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(14) {
  transform: rotateY(168deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(14) .surface {
  -webkit-animation: flash 500ms -3800ms infinite alternate;
          animation: flash 500ms -3800ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(15) {
  transform: rotateY(180deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(15) .surface {
  -webkit-animation: flash 500ms -3900ms infinite alternate;
          animation: flash 500ms -3900ms infinite alternate;
}
.line:nth-child(12) .plate:nth-child(16) {
  transform: rotateY(192deg) rotateX(36deg) translateZ(150px);
}
.line:nth-child(12) .plate:nth-child(16) .........完整代码请登录后点击上方下载按钮下载查看

网友评论0