css卫星环绕球体表面运行动画效果代码

代码语言:html

所属分类:动画

代码描述:css卫星环绕球体表面运行动画效果代码

代码标签: 球体 表面 运行 动画 效果

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


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

<head>

  <meta charset="UTF-8">
  


  <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Anton'>
  
<style>
body {
  background: #171819;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 400px;
}

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

.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: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px 50px black inset;
}

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

.camera {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 500ms;
}
.camera.-x {
  transform: rotateX(0deg);
}
.camera.-y {
  transform: rotateY(0deg);
}

.graphic {
  top: -5px;
  left: -15px;
  width: 30px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
}

.panel {
  transform: translateZ(200px);
}

.line:nth-child(1) {
  transform: rotateX(-19deg);
}
.line:nth-child(1) .rotate {
  -webkit-animation-delay: -4288ms;
          animation-delay: -4288ms;
  -webkit-animation-duration: 6105ms;
          animation-duration: 6105ms;
}
.line:nth-child(1) .graphic {
  -webkit-animation: rotateX 3941ms -2691ms linear infinite;
          animation: rotateX 3941ms -2691ms linear infinite;
}
.line:nth-child(2) {
  transform: rotateX(-18deg);
}
.line:nth-child(2) .rotate {
  -webkit-animation-delay: -366ms;
          animation-delay: -366ms;
  -webkit-animation-duration: 5417ms;
          animation-duration: 5417ms;
}
.line:nth-child(2) .graphic {
  -webkit-animation: rotateX 3074ms -798ms linear infinite;
          animation: rotateX 3074ms -798ms linear infinite;
}
.line:nth-child(3) {
  transform: rotateX(-17deg);
}
.line:nth-child(3) .rotate {
  -webkit-animation-delay: -4756ms;
          animation-delay: -4756ms;
  -webkit-animation-duration: 7322ms;
          animation-duration: 7322ms;
}
.line:nth-child(3) .graphic {
  -webkit-animation: rotateX 4502ms -1770ms linear infinite;
          animation: rotateX 4502ms -1770ms linear infinite;
}
.line:nth-child(4) {
  transform: rotateX(-16deg);
}
.line:nth-child(4) .rotate {
  -webkit-animation-delay: -7159ms;
          animation-delay: -7159ms;
  -webkit-animation-duration: 7690ms;
          animation-duration: 7690ms;
}
.line:nth-child(4) .graphic {
  -webkit-animation: rotateX 3667ms -1313ms linear infinite;
          animation: rotateX 3667ms -1313ms linear infinite;
}
.line:nth-child(5) {
  transform: rotateX(-15deg);
}
.line:nth-child(5) .rotate {
  -webkit-animation-delay: -593ms;
          animation-delay: -593ms;
  -webkit-animation-duration: 7559ms;
          animation-duration: 7559ms;
}
.line:nth-child(5) .graphic {
  -webkit-animation: rotateX 3831ms -5837ms linear infinite;
          animation: rotateX 3831ms -5837ms linear infinite;
}
.line:nth-child(6) {
  transform: rotateX(-14deg);
}
.line:nth-child(6) .rotate {
  -webkit-animation-delay: -5853ms;
          animation-delay: -5853ms;
  -webkit-animation-duration: 6026ms;
          animation-duration: 6026ms;
}
.line:nth-child(6) .graphic {
  -webkit-animation: rotateX 3492ms -1974ms linear infinite;
          animation: rotateX 3492ms -1974ms linear infinite;
}
.line:nth-child(7) {
  transform: rotateX(-13deg);
}
.line:nth-child(7) .rotate {
  -webkit-animation-delay: -5851ms;
          animation-delay: -5851ms;
  -webkit-animation-duration: 7348ms;
          animation-duration: 7348ms;
}
.line:nth-child(7) .graphic {
  -webkit-animation: rotateX 5343ms -5934ms linear infinite;
          animation: rotateX 5343ms -5934ms linear infinite;
}
.line:nth-child(8) {
  transform: rotateX(-12deg);
}
.line:nth-child(8) .rotate {
  -webkit-animation-delay: -9835ms;
          animation-delay: -9835ms;
  -webkit-animation-duration: 6246ms;
          animation-duration: 6246ms;
}
.line:nth-child(8) .graphic {
  -webkit-animation: rotateX 5405ms -1001ms linear infinite;
          animation: rotateX 5405ms -1001ms linear infinite;
}
.line:nth-child(9) {
  transform: rotateX(-11deg);
}
.line:nth-child(9) .rotate {
  -webkit-animation-delay: -2764ms;
          animation-delay: -2764ms;
  -webkit-animation-duration: 5809ms;
          animation-duration: 5809ms;
}
.line:nth-child(9) .graphic {
  -webkit-animation: rotateX 3455ms -3722ms linear infinite;
          animation: rotateX 3455ms -3722ms linear infinite;
}
.line:nth-child(10) {
  transform: rotateX(-10deg);
}
.line:nth-child(10) .rotate {
  -webkit-animation-delay: -2117ms;
          animation-delay: -2117ms;
  -webkit-animation-duration: 6961ms;
          animation-duration: 6961ms;
}
.line:nth-child(10) .graphic {
  -webkit-animation: rotateX 4777ms -5002ms linear infinite;
          animation: rotateX 4777ms -5002ms linear infinite;
}
.line:nth-child(11) {
  transform: rotateX(-9deg);
}
.line:nth-child(11) .rotate {
  -webkit-animation-delay: -6696ms;
          animation-delay: -6696ms;
  -webkit-animation-duration: 5721ms;
          animation-duration: 5721ms;
}
.line:nth-child(11) .graphic {
  -webkit-animation: rotateX 3234ms -733ms linear infinite;
          animation: rotateX 3234ms -733ms linear infinite;
}
.line:nth-child(12) {
  transform: rotateX(-8deg);
}
.line:nth-child(12) .rotate {
  -webkit-animation-delay: -8849ms;
          animation-delay: -8849ms;
  -webkit-animation-duration: 6098ms;
          animation-duration: 6098ms;
}
.line:nth-child(12) .graphic {
  -webkit-animation: rotateX 3847ms -3386ms linear infinite;
          animation: rotateX 3847ms -3386ms linear infinite;
}
.line:nth-child(13) {
  transform: rotateX(-7deg);
}
.line:nth-child(13) .rotate {
  -webkit-animation-delay: -4914ms;
          animation-delay: -4914ms;
  -webkit-animation-duration: 5994ms;
          animation-duration: 5994ms;
}
.line:nth-child(13) .graphic {
  -webkit-animation: rotateX 3681ms -1705ms linear infinite;
          animation: rotateX 3681ms -1705ms linear infinite;
}
.line:nth-child(14) {
  transform: rotateX(-6deg);
}
.line:nth-child(14) .rotate {
  -webkit-animation-delay: -2402ms;
          animation-delay: -2402ms;
  -webkit-animation-duration: 7140ms;
          animation-duration: 7140ms;
}
.line:nth-child(14) .graphic {
  -webkit-animation: rotateX 3538ms -5960ms linear infinite;
          animation: rotateX 3538ms -5960ms linear infinite;
}
.line:nth-child(15) {
  transform: rotateX(-5deg);
}
.line:nth-child(15) .rotate {
  -webkit-animation-delay: -9703ms;
          animation-delay: -9703ms;
  -webkit-animation-duration: 5045ms;
          animation-duration: 5045ms;
}
.line:nth-child(15) .graphic {
  -webkit-animation: rotateX 3690ms -2636ms linear infinite;
          animation: rotateX 3690ms -2636ms linear infinite;
}
.line:nth-child(16) {
  transform: rotateX(-4deg);
}
.line:nth-child(16) .rotate {
  -webkit-animation-delay: -4278ms;
          animation-delay: -4278ms;
  -webkit-animation-duration: 5053ms;
          animation-duration: 5053ms;
}
.line:nth-child(16) .graphic {
  -webkit-animation: rotateX 3488ms -5687ms linear infinite;
          animation: rotateX 3488ms -5687ms linear infinite;
}
.line:nth-child(17) {
  transform: rotateX(-3deg);
}
.line:nth-child(17) .rotate {
  -webkit-animation-delay: -2036ms;
          animation-delay: -2036ms;
  -webkit-animation-duration: 7814ms;
          animation-duration: 7814ms;
}
.line:nth-child(17) .graphic {
  -webkit-animation: rotateX 3236ms -5598ms linear infinite;
          animation: rotateX 3236ms -5598ms linear infinite;
}
.line:nth-child(18) {
  transform: rotateX(-2deg);
}
.line:nth-child(18) .rotate {
  -webkit-animation-delay: -5759ms;
          animation-delay: -5759ms;
  -webkit-animation-duration: 7341ms;
          animation-duration: 7341ms;
}
.line:nth-child(18) .graphic {
  -webkit-animation: rotateX 4287ms -883ms linear infinite;
          animation: rotateX 4287ms -883ms linear infinite;
}
.line:nth-child(19) {
  transform: rotateX(-1deg);
}
.line:nth-child(19) .rotate {
  -webkit-animation-delay: -2091ms;
          animation-delay: -2091ms;
  -webkit-animation-duration: 7924ms;
          animation-duration: 7924ms;
}
.line:nth-child(19) .graphic {
  -webkit-animation: rotateX 3283ms -1593ms linear infinite;
          animation: rotateX 3283ms -1593ms linear infinite;
}
.line:nth-child(20) {
  transform: rotateX(0deg);
}
.line:nth-child(20) .rotate {
  -webkit-animation-delay: -5005ms;
          animation-delay: -5005ms;
  -webkit-animation-duration: 7010ms;
          animation-duration: 7010ms;
}
.line:nth-child(20) .graphic {
  -webkit-animation: rotateX 4030ms -2588ms linear infinite;
          animation: rotateX 4030ms -2588ms linear infinite;
}
.line:nth-child(21) {
  transform: rotateX(1deg);
}
.line:nth-child(21) .rotate {
  -webkit-animation-delay: -7868ms;
          animation-delay: -7868ms;
  -webkit-animation-duration: 5464ms;
          animation-duration: 5464ms;
}
.line:nth-child(21) .graphic {
  -webkit-animation: rotateX 4373ms -5169ms linear infinite;
          animation: rotateX 4373ms -5169ms linear infinite;
}
.line:nth-child(22) {
  transform: rotateX(2deg);
}
.line:nth-child(22) .rotate {
  -webkit-animation-delay: -1697ms;
          animation-delay: -1697ms;
  -webkit-animation-duration: 7217ms;
          animation-duration: 7217ms;
}
.line:nth-child(22) .graphic {
  -webkit-animation: rotateX 3977ms -5419ms linear infinite;
          animation: rotateX 3977ms -5419ms linear infinite;
}
.line:nth-child(23) {
  transform: rotateX(3deg);
}
.line:nth-child(23) .rotate {
  -webkit-animation-delay: -4694ms;
          animation-delay: -4694ms;
  -webkit-animation-duration: 7696ms;
          animation-duration: 7696ms;
}
.line:nth-child(23) .graphic {
  -webkit-animation: rotateX 4726ms -2606ms linear infinite;
          animation: rotateX 4726ms -2606ms linear infinite;
}
.line:nth-child(24) {
  transform: rotateX(4deg);
}
.line:nth-child(24) .rotate {
  -webkit-animation-delay: -5146ms;
          animation-delay: -5146ms;
  -webkit-animation-duration: 5175ms;
          animation-duration: 5175ms;
}
.line:nth-child(24) .graphic {
  -webkit-animation: rotateX 4100ms -1196ms linear infinite;
          animation: rotateX 4100ms -1196ms linear infinite;
}
.line:nth-child(25) {
  transform: rotateX(5deg);
}
.line:nth-child(25) .rotate {
  -webkit-animation-delay: -7687ms;
          animation-delay: -7687ms;
  -webkit-animation-duration: 6100ms;
          animation-duration: 6100ms;
}
.line:nth-child(25) .graphic {
  -webkit-animation: rotateX 3903ms -3277ms linear infinite;
          animation: rotateX 3903ms -3277ms linear infinite;
}
.line:nth-child(26) {
  transform: rotateX(6deg);
}
.line:nth-child(26) .rotate {
  -webkit-animation-delay: -5901ms;
          animation-delay: -5901ms;
  -webkit-animation-duration: 5500ms;
          animation-duration: 5500ms;
}
.line:nth-child(26) .graphic {
  -webkit-animation: rotateX 5335ms -3195ms linear infinite;
          animation: rotateX 5335ms -3195ms linear infinite;
}
.line:nth-child(27) {
  transform: rotateX(7deg);
}
.line:nth-child(27) .rotate {
  -webkit-animation-delay: -5441ms;
          animation-delay: -5441ms;
  -webkit-animation-duration: 7749ms;
          animation-duration: 7749ms;
}
.line:nth-child(27) .graphic {
  -webkit-animation: rotateX 3844ms -297ms linear infinite;
          animation: rotateX 3844ms -297ms linear infinite;
}
.line:nth-child(28) {
  transform: rotateX(8deg);
}
.line:nth-child(28) .rotate {
  -webkit-animation-delay: -4513ms;
          animation-delay: -4513ms;
  -webkit-animation-duration: 5670ms;
          animation-duration: 5670ms;
}
.line:nth-child(28) .graphic {
  -webkit-animation: rotateX 3686ms -1136ms linear infinite;
          animation: rotateX 3686ms -1136ms linear infinite;
}
.line:nth-child(29) {
  transform: rotateX(9deg);
}
.line:nth-child(29) .rotate {
  -webkit-animation-delay: -5012ms;
          animation-delay: -5012ms;
  -webkit-animation-duration: 7754ms;
          animation-duration: 7754ms;
}
.line:nth-child(29) .graphic {
  -webkit-animation: rotateX 5790ms -651ms linear infinite;
          animation: rotateX 5790ms -651ms linear infinite;
}
.line:nth-child(30) {
  transform: rotateX(10deg);
}
.line:nth-child(30) .rotate {
  -webkit-animation-delay: -1248ms;
          animation-delay: -1248ms;
  -webkit-animation-duration: 5874ms;
          animation-duration: 5874ms;
}
.line:nth-child(30) .graphic {
  -webkit-animation: rotateX 4814ms -3627ms linear infinite;
          animation: rotateX 4814ms -3627ms linear infinite;
}
.line:nth-child(31) {
  transform: rotateX(11deg);
}
.line:nth-child(31) .rotate {
  -webkit-animation-delay: -7681ms;
          animation-delay: -7681ms;
  -webkit-animation-duration: 7688ms;
          animation-duration: 7688ms;
}
.line:nth-child(31) .graphic {
  -webkit-animation: rotateX 3970ms -1188ms linear infinite;
          animation: rotateX 3970ms -1188ms linear infinite;
}
.line:nth-child(32) {
  transform: rotateX(12deg);
}
.line:nth-child(32) .rotate {
  -webkit-animation-delay: -7171ms;
          animation-delay: -7171ms;
  -webkit-animation-duration: 7600ms;
          animation-duration: 7600ms;
}
.line:nth-child(32) .graphic {
  -webkit-animation: rotateX 5625ms -5967ms linear infinite;
          animation: rotateX 5625ms -5967ms linear infinite;
}
.line:nth-child(33) {
  transform: rotateX(13deg);
}
.line:nth-child(33) .rotate {
  -webkit-animation-delay: -6299ms;
          animation-delay: -6299ms;
  -webkit-animation-duration: 5109ms;
          animation-duration: 5109ms;
}
.line:nth-child(33) .graphic {
  -webkit-animation: rotateX 3219ms -624ms linear infinite;
          animation: rotateX 3219ms -624ms linear infinite;
}
.line:nth-child(34) {
  transform: rotateX(14deg);
}
.line:nth-child(34) .rotate {
  -webkit-animation-delay: -6548ms;
          animation-delay: -6548ms;
  -webkit-animation-duration: 7168ms;
          animation-duration: 7168ms;
}
.line:nth-child(34) .graphic {
  -webkit-animation: rotateX 3049ms -1950ms linear infinite;
          animation: rotateX 3049ms -1950ms linear infinite;
}
.line:nth-child(35) {
  transform: rotateX(15deg);
}
.line:nth-child(35) .rotate {
  -webkit-animation-delay: -1929ms;
          animation-delay: -1929ms;
  -webkit-animation-duration: 5044ms;
          animation-duration: 5044ms;
}
.line:nth-child(35) .graphic {
  -webkit-animation: rotateX 3464ms -1476ms linear infinite;
          animation: rotateX 3464ms -1476ms linear infinite;
}
.line:nth-child(36) {
  transform: rotateX(16deg);
}
.line:nth-child(36) .rotate {
  -webkit-animation-delay: -8915ms;
          animation-delay: -8915ms;
  -webkit-animation-duration: 5873ms;
          animation-duration: 5873ms;
}
.line:nth-child(36) .graphic {
  -webkit-animation: rotateX 3837ms -4446ms linear infinite;
          animation: rotateX 3837ms -4446ms linear infinite;
}
.line:nth-child(37) {
  transform: rotateX(17deg);
}
.line:nth-child(37) .rotate {
  -webkit-animation-delay: -2683ms;
          animation-delay: -2683ms;
  -webkit-animation-duration: 7143ms;
          animation-duration: 7143ms;
}
.line:nth-child(37) .graphic {
  -webkit-animation: rotateX 5622ms -3321ms linear infinite;
          animation: rotateX 5622ms -3321ms linear infinite;
}
.line:nth-child(38) {
  transform: rotateX(18deg);
}
.line:nth-child(38) .rotate {
  -webkit-animation-delay: -6662ms;
          animation-delay: -6662ms;
  -webkit-animation-duration: 6219ms;
          animation-duration: 6219ms;
}
.line:nth-child(38) .graphic {
  -webkit-animation: rotateX 3343ms -4664ms linear infinite;
          animation: rotateX 3343ms -4664ms linear infinite;
}
.line:nth-child(39) {
  transform: rotateX(19deg);
}
.line:nth-child(39) .rotate {
  -webkit-animation-delay: -6520ms;
          animation-delay: -6520ms;
  -webkit-animation-duration: 7294ms;
          animation-duration: 7294ms;
}
.line:nth-child(39) .graphic {
  -webkit-animation: rotateX 4006ms -1650ms linear infinite;
          animation: rotateX 4006ms -1650ms linear infinite;
}
.line:nth-child(40) {
  transform: rotateX(20deg);
}
.line:nth-child(40) .rotate {
  -webkit-animation-delay: -8133ms;
          animation-delay: -8133ms;
  -webkit-animation-duration: 7082ms;
          animation-duration: 7082ms;
}
.line:nth-child(40) .graphic {
  -webkit-animation: rotateX 4779ms -4993ms linear infinite;
          animation: rotateX 4779ms -4993ms linear infinite;
}
.line:nth-child(41) {
  transform: rotateX(21deg);
}
.line:nth-child(41) .rotate {
  -webkit-animation-delay: -2193ms;
          animation-delay: -2193ms;
  -webkit-animation-duration: 5135ms;
          animation-duration: 5135ms;
}
.line:nth-child(41) .graphic {
  -webkit-animation: rotateX 5091ms -3285ms linear infinite;
          animation: rotateX 5091ms -3285ms linear infinite;
}
.line:nth-child(42) {
  transform: rotateX(22deg);
}
.line:nth-child(42) .rotate {
  -webkit-animation-delay: -4564ms;
          animation-delay: -4564ms;
  -webkit-animation-duration: 7078ms;
          animation-duration: 7078ms;
}
.line:nth-child(42) .graphic {
  -webkit-animation: rotateX 4836ms -1815ms linear infinite;
          animation: rotateX 4836ms -1815ms linear infinite;
}
.line:nth-child(43) {
  transform: rotateX(23deg);
}
.line:nth-child(43) .rotate {
  -webkit-animation-delay: -4347ms;
          animation-delay: -4347ms;
  -webkit-animation-duration: 6626ms;
          animation-duration: 6626ms;
}
.line:nth-child(43) .graphic {
  -webkit-animation: rotateX 3447ms -1580ms linear infinite;
          animation: rotateX 3447ms -1580ms linear infinite;
}
.line:nth-child(44) {
  transform: rotateX(24deg);
}
.line:nth-child(44) .rotate {
  -webkit-animation-delay: -2938ms;
          animation-delay: -2938ms;
  -webkit-animation-duration: 5004ms;
          animation-duration: 5004ms;
}
.line:nth-child(44) .graphic {
  -webkit-animation: rotateX 5229ms -4270ms linear infinite;
          animation: rotateX 5229ms -4270ms linear infinite;
}
.line:nth-child(45) {
  transform: rotateX(25deg);
}
.line:nth-child(45) .rotate {
  -webkit-animation-delay: -3031ms;
          animation-delay: -3031ms;
  -webkit-animation-duration: 7375ms;
          animation-duration: 7375ms;
}
.line:nth-child(45) .graphic {
  -webkit-animation: rotateX 3859ms -1224ms linear infinite;
          animation: rotateX 3859ms -1224ms linear infinite;
}
.line:nth-child(46) {
  transform: rotateX(26deg);
}
.line:nth-child(46) .rotate {
  -webkit-animation-delay: -5382ms;
          animation-delay: -5382ms;
  -webkit-animation-duration: 6237ms;
          animation-duration: 6237ms;
}
.line:nth-child(46) .graphic {
  -webkit-animation: rotateX 3484ms -4757ms linear infinite;
          animation: rotateX 3484ms -4757ms linear infinite;
}
.line:nth-child(47) {
  transform: rotateX(27deg);
}
.line:nth-child(47) .rotate {
  -webkit-animation-delay: -8160ms;
          animation-delay: -8160ms;
  -webkit-animation-duration: 5361ms;
          animation-duration: 5361ms;
}
.line:nth-child(47) .graphic {
  -webkit-animation: rotateX 5543ms -4111ms linear infinite;
          animation: rotateX 5543ms -4111ms linear infinite;
}
.line:nth-child(48) {
  transform: rotateX(28deg);
}
.line:nth-child(48) .rotate {
  -webkit-animation-delay: -3904ms;
          animation-delay: -3904ms;
  -webkit-animation-duration: 6650ms;
          animation-duration: 6650ms;
}
.line:nth-child(48) .graphic {
  -webkit-animation: rotateX 4378ms -4988ms linear infinite;
          animation: rotateX 4378ms -4988ms linear infinite;
}
.line:nth-child(49) {
  transform: rotateX(29deg);
}
.line:nth-child(49) .rotate {
  -webkit-animation-delay: -5812ms;
          animation-delay: -5812ms;
  -webkit-animation-duration: 5230ms;
          animation-duration: 5230ms;
}
.line:nth-child(49) .graphic {
  -webkit-animation: rotateX 5320ms -1413ms linear infinite;
          animation: rotateX 5320ms -1413ms linear infinite;
}
.line:nth-child(50) {
  transform: rotateX(30deg);
}
.line:nth-child(50) .rotate {
  -webkit-animation-delay: -8821ms;
          animation-delay: -8821ms;
  -webkit-animation-duration: 5468ms;
          animation-duration: 5468ms;
}
.line:nth-child(50) .graphic {
  -webkit-animation: rotateX 3709ms -2138ms linear infinite;
          animation: rotateX 3709ms -2138ms linear infinite;
}

.rotate {
  -webkit-animation: rotateY 5000ms linear infinite;
          animation: rotateY 5000ms linear infinite;
}

.particle {
  width: 1px;
  height: 1px;
  background: #fff;
}
.particle:nth-child(1) {
  transform: translate3d(206.75px, 248.75px, -31.5px) rotateY(10deg);
  -webkit-animation: flash 300ms -8884ms infinite alternate;
          animation: flash 300ms -8884ms infinite alternate;
}
.particle:nth-child(2) {
  transform: translate3d(210.75px, -204.75px, -171.25px) rotateY(75deg);
  -webkit-animation: flash 300ms -9967ms infinite alternate;
          animation: flash 300ms -9967ms infinite alternate;
}
.particle:nth-child(3) {
  transform: translate3d(92.75px, 318.75px, 120.25px) rotateY(206deg);
  -webkit-animation: flash 300ms -6385ms infinite alternate;
          animation: flash 300ms -6385ms infinite alternate;
}
.particle:nth-child(4) {
  transform: translate3d(287px, 465px, -28.25px) rotateY(282deg);
  -webkit-animation: flash 300ms -8009ms infinite alternate;
          animation: flash 300ms -8009ms infinite alternate;
}
.particle:nth-child(5) {
  transform: translate3d(91px, -75.25px, -280px) rotateY(118deg);
  -webkit-animation: flash 300ms -1205ms infinite alternate;
          animation: flash 300ms -1205ms infinite alternate;
}
.particle:nth-child(6) {
  transform: translate3d(122.25px, -14.5px, 23.25px) rotateY(245deg);
  -webkit-animation: flash 300ms -4108ms infinite alternate;
          animation: flash 300ms -4108ms infinite alternate;
}
.particle:nth-child(7) {
  transform: translate3d(327.5px, -400.5px, -483.75px) rotateY(337deg);
  -webkit-animation: flash 300ms -5376ms infinite alternate;
          animation: flash 300ms -5376ms infinite alternate;
}
.particle:nth-child(8) {
  transform: translate3d(-601px, 22.25px, 157px) rotateY(24deg);
  -webkit-animation: flash 300ms -5026ms infinite alternate;
          animation: flash 300ms -5026ms infinite alternate;
}
.particle:nth-child(9) {
  transform: translate3d(-15.75px, -434.75px, -63.75px) rotateY(18deg);
  -webkit-animation: flash 300ms -5599ms infinite alternate;
          animation: flash 300ms -5599ms infinite alternate;
}
.particle:nth-child(10) {
  transform: translate3d(234.25px, 585.25px, 92.75px) rotateY(262deg);
  -webkit-animation: flash 300ms -3162ms infinite alternate;
          animation: flash 300ms -3162ms infinite alternate;
}
.particle:nth-child(11) {
  transform: translate3d(-479.5px, 27.5px, 172px) rotateY(113deg);
  -webkit-animation: flash 300ms -6863ms infinite alternate;
          animation: flash 300ms -6863ms infinite alternate;
}
.particle:nth-child(12) {
  transform: translate3d(79.25px, -97.75px, 149.75px) rotateY(187deg);
  -webkit-animation: flash 300ms -745ms infinite alternate;
          animation: flash 300ms -745ms infinite alternate;
}
.particle:nth-child(13) {
  transform: translate3d(-154.5px, -168.25px, -171.75px) rotateY(178deg);
  -webkit-animation: flash 300ms -2452ms infinite alternate;
          animation: flash 300ms -2452ms infinite alternate;
}
.particle:nth-child(14) {
  transform: translate3d(242px, -552.5px, -408px) rotateY(204deg);
  -webkit-animation: flash 300ms -2259ms infinite alternate;
          animation: flash 300ms -2259ms infinite alternate;
}
.particle:nth-child(15) {
  transform: translate3d(553.25px, -42.75px, -118.25px) rotateY(321deg);
  -webkit-animation: flash 300ms -1906ms infinite alternate;
          animation: flash 300ms -1906ms infinite alternate;
}
.particle:nth-child(16) {
  transform: translate3d(175px, -305.25px, 181.5px) rotateY(102deg);
  -webkit-animation: flash 300ms -7872ms infinite alternate;
          animation: flash 300ms -7872ms infinite alternate;
}
.particle:nth-child(17) {
  transform: translate3d(441.25px, -80px, 17.5px) rotateY(235deg);
  -webkit-animation: flash 300ms -3102ms infinite alternate;
          animation: flash 300ms -3102ms infinite alternate;
}
.particle:nth-child(18) {
  transform: translate3d(35.5px, 383.5px, -320.75px) rotateY(160deg);
  -webkit-animation: flash 300ms -968ms infinite alternate;
          animation: flash 300ms -968ms infinite alternate;
}
.particle:nth-child(19) {
  transform: translate3d(-359.25px, 513.75px, -8.5px) rotateY(206deg);
  -webkit-animation: flash 300ms -1508ms infinite alternate;
          animation: flash 300ms -1508ms infinite alternate;
}
.particle:nth-child(20) {
  transform: translate3d(-246.5px, 123.25px, -441.5px) rotateY(349deg);
  -webkit-animation: flash 300ms -5500ms infinite alternate;
          animation: flash 300ms -5500ms infinite alternate;
}
.particle:nth-child(21) {
  transform: translate3d(-151.75px, -6.75px, 14.75px) rotateY(37deg);
  -webkit-animation: flash 300ms -8657ms infinite alternate;
          animation: flash 300ms -8657ms infinite alternate;
}
.particle:nth-child(22) {
  transform: translate3d(703.75px, 119px, 503.75px) rotateY(162deg);
  -webkit-animation: flash 300ms -5734ms infinite alternate;
          animation: flash 300ms -5734ms infinite alternate;
}
.particle:nth-child(23) {
  transform: translate3d(335.75px, -122.75px, -430.25px) rotateY(7deg);
  -webkit-animation: flash 300ms -8702ms infinite alternate;
          animation: flash 300ms -8702ms infinite alternate;
}
.particle:nth-child(24) {
  transform: translate3d(27px, -425.5px, -257px) rotateY(278deg);
  -webkit-animation: flash 300ms -9293ms infinite alternate;
          animation: flash 300ms -9293ms infinite alternate;
}
.particle:nth-child(25) {
  transform: translate3d(305.5px, -211.75px, 357.75px) rotateY(144deg);
  -webkit-animation: flash 300ms -4343ms infinite alternate;
          animation: flash 300ms -4343ms infinite alternate;
}
.particle:nth-child(26) {
  transform: translate3d(31px, -271.75px, -253.25px) rotateY(10deg);
  -webkit-animation: flash 300ms -1986ms infinite alternate;
          animation: flash 300ms -1986ms infinite alternate;
}
.particle:nth-child(27) {
  transform: translate3d(265px, -85px, -5.25px) rotateY(227deg);
  -webkit-animation: flash 300ms -628ms infinite alternate;
          animation: flash 300ms -628ms infinite alternate;
}
.particle:nth-child(28) {
  transform: translate3d(233.5px, 108px, -168px) rotateY(141deg);
  -webkit-animation: flash 300ms -9552ms infinite alternate;
          animation: flash 300ms -9552ms infinite alternate;
}
.particle:nth-child(29) {
  transform: translate3d(-325.25px, 293.5px, 369.75px) rotateY(3.........完整代码请登录后点击上方下载按钮下载查看

网友评论0