@charset "UTF-8";
/* CSS Document */

.dawg-tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.dawg-tab {
  width: 100%;
  color: white;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}
.dawg-tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1em;
  background: #cc0000;
  border-bottom: solid thin #000;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.dawg-tab-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1em;
  background: #ddd;
  color: #000;
  border-bottom: solid thin #000;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.dawg-tab-label:hover {
  background: #000;
}
.dawg-tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .75s;
  transition: all .75s;
}
.dawg-tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #000;
  background: white;
  -webkit-transition: all .75s;
  transition: all .75s;
}
.dawg-tab-content ul {
    padding: 0px;
}
input:checked + .dawg-tab-label {
  background: #cc0000;
}
input:checked + .dawg-tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .dawg-tab-content {
  max-height: 100vh;
  padding: 1em;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.dawg-card {
  background-color: white;
  color: black;
}
.dawg-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .dawg-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .dawg-cards { grid-template-columns: repeat(5, 1fr); }
}

.dawg-card-promo {
  background-color: #ffffff;
  border: thin solid #dddddd;
  color: #000000;
  padding: 1rem;
    justify-self: center;
}

.dawg-card-promos {
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  justify-items: center;
    margin-bottom: 20px;
}
.dawg-card-promo-text {
    padding: 0rem 1rem 0rem 1rem;
    max-width: 500px;
    align-content: center;
    font-family: "Roboto", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    line-height: 1.5em;
    color: #333;
    font-size: 16px;
}
.dawg-card-promo-title {
    padding: 1rem;
    max-width: 450px;
    color: #cc0000;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    font-family: "Roboto", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
    .dawg-card-promo a {
        background-color: #cc0000;
        color: #fff;
        text-align: center;
        font-size: 14px;
	    padding:12px 75px;
        text-decoration: none;
        font-weight: 900;
        border-radius: 10px 10px 10px 10px;
        -moz-border-radius: 10px 10px 10px 10px;
        -webkit-border-radius: 10px 10px 10px 10px;
    }
    .dawg-card-promo a:hover {
        background-color: #000;
    }

/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .dawg-card-promos { grid-template-columns: repeat(2, 1fr); }
}


.dawg-video {
  grid-area: dawg-video;
}

.dawg-video2 {
  grid-area: dawg-video2;
}

.dawg-wrapper {
  background-color: #fff;
  color: #444;
}

.dawg-wrapper {
  display: grid;
  grid-gap: 1em;
  grid-template-areas:
   "dawg-video"
   "dawg-video2"
}

@media only screen and (min-width: 600px)  {
.dawg-wrapper {
    grid-template-columns: auto 400px !important;
    grid-template-areas:
    "dawg-video dawg-video2"
    }
}

@media only screen and (min-width: 800px)   {
.dawg-wrapper {
    grid-gap: 20px;
    grid-template-columns: auto 400px !important;
    grid-template-areas:
    "dawg-video dawg-video2";
    }
}

.dawg-box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 150%; 
}

.dawg-duo-vid {
  background-color: #333;
  color: white;
  padding: 2rem;
    border: solid thin #333;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.dawg-duo-vids {
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
    margin-bottom: 20px;
}

/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .dawg-duo-vids { grid-template-columns: repeat(2, 1fr); }
}

.ticket-section {
  border: solid thin #cc0000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  line-height: 1.5em;
  margin: 10px 10px 20px 10px;
}
.ticket-section-title{
  background-color: #cc0000;
  color: #fff;
  text-align: center;
  font-size: 24px;
  padding: 25px;
    margin-top: 20px;
  font-weight: 900;
}
.ticket-section-text{
  background-color: #fff;
  color: #999;
  font-size: 18px;
  padding: 50px;
  line-height: 1.5em;
    margin-bottom: 10px;
}

.UGABoxWrapper20 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: #fff;
  color: #444;
  justify-content: center;
  }

.UGAGridBox20 {
  background-color: #fff;
  border: 5px solid #ccc;
  color: #cc0000;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;
  text-align: center;
  justify-content: center;

	}

