* {
  font-family: Arial, Helvetica, sans-serif;
  top: 0%;
  left: 0%;
  margin: 0%;
  padding: 0%;
}

body {
  background-color: #000000;
}

button, .button {
  font-size: 1rem;
  border-radius: 25rem;
  border: 0;
  padding: 1rem;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.main {
  top: 0%;
  left: 0%;
  margin: 0%;
  padding: 0%;
  width: 100%;
}

.main .header {
  height: 5%;
  font-size: 2rem;
  font-weight: 700;
  color: #dddddd;
  padding: 1rem;
  background-color: #2936c7;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.main .header .text {
  background-color: inherit;
}

.main .header .settings {
  background-color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}

.main .header .settings button {
  color: white;
  background-color: #2936c7;
  width: 10rem;
}

.main .header .settings button dfn {
  background-color: inherit;
  border-radius: 50rem;
  font-variant: inherit;
}

.main .header .settings button:hover {
  background-color: #003477;
}

.main .header .settings #live:hover {
  color: red;
}

.main .header a {
  font-size: 1rem;
  font-weight: normal;
  color: white;
  background-color: #2936c7;
  border-radius: 25rem;
  border: 0;
  padding: 1rem;
  width: 10rem;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  text-decoration: none;
}

.main .header a:hover {
  background-color: #486fa1;
}

@media (max-width: 900px) {
  .main .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .header .settings {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main .header .settings button {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main .header .settings button:focus {
    outline: 0;
  }
}

.main .windows {
  height: 90%;
  padding: 0%;
  margin: 0%;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .windows .view {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 27%;
          flex: 1 0 27%;
  position: relative;
  margin: 2px;
  width: 30%;
  padding: 2px;
}

.main .windows .view .wheel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 25px;
  color: white;
  margin: 15px;
  position: absolute;
  z-index: 5;
}

.main .windows .view .wheel:hover {
  color: #2936c7;
}

.main .windows .view .wheel.active {
  display: block;
}

.main .windows .view .video {
  display: block;
  width: 100%;
  z-index: 2;
}

.main .windows .view .selects {
  background-color: #3b3b3b6b;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .windows .view .selects select {
  background-color: #dddddd;
  width: 90%;
  font-size: 1rem;
  padding: 10px;
  border-radius: 25rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.main .windows .view .selects select option {
  background-color: #dddddd;
  width: 90%;
}

.main .windows .view .selects .button {
  color: white;
  border-radius: 50rem;
  height: 40px;
  width: 40px;
  padding: 0;
  background-color: black;
}

.main .windows .view .selects .button i {
  color: white;
  background-color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

.main .windows .view .selects .button:hover {
  background-color: red;
}

.main .windows .view:hover {
  border: solid 2px #2936c7;
  border-radius: 10px;
  margin: 0;
}

@media (max-width: 900px) {
  .main .windows {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .windows .view {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}

.main .main-info {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main .main-info .part {
  padding: 5px;
  width: 30%;
}

.main .main-info .part h2, .main .main-info .part p {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main .main-info .part a {
  color: #084799;
  padding: 5px;
  border-radius: 25rem;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

.main .main-info .part a:hover {
  background-color: #181818;
}

.main .main-info .button {
  margin-top: 5rem;
  color: white;
  background-color: #2936c7;
  text-decoration: none;
}

.main .main-info .button:hover {
  background-color: #1b2481;
}

@media (max-width: 1200px) {
  .main .main-info .part {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .main .main-info .part {
    width: 80%;
  }
}
/*# sourceMappingURL=style.css.map */