#edit-livestreamfield .form-type-radios * {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

/*#edit-livestreamfield .form-type-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}*/

#edit-livestreamfield #edit-homelivefeeds {
  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;*/
}
#edit-livestreamfield #edit-homelivefeeds .form-type-radio {
  position: relative;
  height: 45px;
  width: 100px;
  margin: 0.5rem;
}
#edit-livestreamfield #edit-homelivefeeds .form-type-radio .form-radio {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
#edit-livestreamfield #edit-homelivefeeds .form-type-radio .option {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid #ccc;
  padding: 1rem;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

#edit-livestreamfield #edit-homelivefeeds .form-type-radio .option {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}
#edit-livestreamfield #edit-homelivefeeds .form-type-radio #edit-homelivefeeds-1:checked + .option {
  background-color: #27ae60;
  border: 2px solid #27ae60;
  color: white;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

#edit-livestreamfield #edit-homelivefeeds .form-type-radio #edit-homelivefeeds-0:checked + .option {
  background-color: #c0392b;
  border: 2px solid #c0392b;
  color: white;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

#edit-livestreamfield #edit-homelivefeeds .form-type-radio .form-radio:checked + .option .option {
  color: white;
  background-color: purple;
}

#acglivefeedsmanager-livefeedsform .livestream-alert {
  color: #3c763d;
  background-color: #dff0d8;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
}