@charset "UTF-8";
/* CSS Document */

body {
  margin: 0px;
  font-family: 'Roboto', sans-serif;
  width: 96%;
  margin: 0px auto;
}
.eq-live-wrapper {
		background-color: #fff;
		color: #444;
        padding-bottom: 40px;
	}
.eq-live-wrapper {
    display: grid;
    grid-gap: 1em;
    grid-template-areas:
     "eq-live-header"
     "eq-live-team1"
     "eq-live-team2"
  }

.eq-live-wrapper2 {
		background-color: #fff;
		color: #444;
        padding-bottom: 40px;
	}
.eq-live-wrapper2 {
    display: block
  }
.eq-live-box {
  font-size: 14px; 
}
.eq-live-header {
  grid-area: eq-live-header;
	}
.eq-live-team1 {
  grid-area: eq-live-team1;
	}
.eq-live-team2 {
  grid-area: eq-live-team2;
	}
.eq-live-title {text-align: center; font-size: 1em; font-weight: 700;}
@media only screen and (min-width: 500px)  {
	.eq-live-wrapper {
        grid-template-columns: 50% auto;
		grid-template-areas:
        "eq-live-header   eq-live-header"
		"eq-live-team1 eq-live-team2";
			width: 100%;
	}
	.eq-live-wrapper2 {
        grid-template-columns: 50% auto;
		grid-template-areas:
        "eq-live-header   eq-live-header"
		"eq-live-mvp eq-live-mvp";
			width: 100%;
	}
    .eq-live-box {
        font-size: 12px;
	}
    .eq-live-title {text-align: center; font-family: 'Roboto' sans-serif; font-size: 2em; font-weight: 900;}
	}

@media only screen and (min-width: 800px)   {
    .eq-live-wrapper {
      grid-gap: 20px;
			width: 100%;
    }
    .eq-live-box {
      font-size: 18px;
    }
    }
.eq-live-box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}

@media screen and (orientation:landscape)
and (min-device-width: 319px) 
and (max-device-width: 480px) {
       .eq-live-box {
        font-size: 14px;
	}
}
.eq-live-mvp {
  background-color: #666;
  color: #fff;
  text-align: center;
  margin-top: 20px;
	}

.eq-live-table {}
.eq-live-table th {text-align: left; background-color: rgba(0, 0, 0, 0.3); padding: 5px;}
.eq-live-table td {}
.eq-live-table2 {}
.eq-live-table2 th {text-align: right; padding: 5px 20px 5px 5px; width: 50%;}
.eq-live-table2 td {text-align: left; padding:  5px 5px 5px 20px; width: 50%;}

input[type=button] {
  background-color: #444;
  border: solid 2px #444;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
input[type=button]:hover {
  background-color: #fff;
  border: solid 2px #444;
  color: #444;
}