﻿/* file: tetris.css */
body {
  background-color: #ffffff;
}
.tetris .wrap {
  width: 1100px;
  margin: 30px auto;
}
.tetris .right {
  width: 800px;
  float: right;
  background1: url(/digitalsite/images/tetris/tetris1.png);
  width: 481px;
}
.tetris .right .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*הרקעים */
.tetris .right .flex[data-bg="bg0"] {
  background: url("/digitalsite/images/tetris/1.png");
}
.tetris .right .flex[data-bg="bg1"] {
  background: url("/digitalsite/images/tetris/2.png");
}
.tetris .right .flex[data-bg="bg2"] {
  background: url("/digitalsite/images/tetris/3.png");
}
.tetris .right .flex[data-bg="bg3"] {
  background: url("/digitalsite/images/tetris/4.png");
}
.tetris .right .flex[data-bg="bg4"] {
  background: url("/digitalsite/images/tetris/5.png");
}
.tetris .right .flex[data-bg="bg5"] {
  background: url("/digitalsite/images/tetris/6.png");
}
.tetris .right .info {
  display: none;
}
.tetris .right .flex > a {
  margin: 1%;
  width: 26%;
  border: #444 0px solid;
  height: 118px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
}
.tetris .left {
  width: 600px;
  float: right;
  text-align: center;
}
.tetris .left img {
  float: left;
  height: 425PX;
}
.tetris .right .flex .info {
  width: 100%;
  text-align: right;
  padding-top: 10px;
  font-size: 17px;
  padding-right: 24px;
  margin: 1%;
  border: #444 0px solid;
  height: 118px;
  border-radius: 10px;
}
.tetris .right .flex a {
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  color: #0078bd;
}
.tetris .right .flex a:nth-child(2) {
  position: relative;
  left: -2px;
}
.tetris .right .flex a:nth-child(3) {
  position: relative;
  left: -2px;
}
.tetris .right .flex a:nth-child(4) {
  position: relative;
  left: -2px;
}
.tetris .right .flex a:nth-child(5) {
  position: relative;
  left: -2px;
}
.tetris .right .flex span {
  display: block;
  line-height: 13px;
}
.tetris .left img {
  display: none;
}
.tetris .left img:first-child {
  display: inline;
}
