.vidsThumb {
    max-width: 500px;
    margin: 0px;
    border-radius: 30px;
    background-size: auto 100%;
	height: 225px;
    position: relative;
    overflow: hidden;
    margin: 8px;
    background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
    background-size: auto 120%;
    background-position: center;
	cursor: pointer;
}

.vidsThumbShadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;  
}

.vidsThumbLabel {
  bottom: 20px;
  left: 20px;
  display: -webkit-box;
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95)  
}
.vidsThumbLabel .info > div {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
}

.vidsThumbLabel .info .main {
    font-weight: bold;
    font-size: 1.2rem;
}

.vidsThumbLabel .info .sub {
	font-size: 0.9em;
}

.vidsThumbLabel .icon {
	display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: white;
    color: var(--defaultBackground);
}

.headline {
	color: #FFFFFF;
	font-size: 1.05em;
    text-decoration: underline;
}

.vidSectionHeader {
	text-align: left;
	font-size: 1.4em;
	font-weight: 900;
	padding-right: 10px;
	padding-top: 8px;
	padding-bottom: 4px;
	color: #f04e23;
}

.vidSectionHeaderIMG {
	border:none;
	border-radius:20px;
	vertical-align:middle;
	margin-bottom:16px;
}

.vidsSection {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  overflow: hidden;
  padding-bottom: 30px;
  border-bottom: 3px solid #fc7201;
  font-family: 'Roboto', sans-serif;
  padding-left: 20px;
}
.vidsSection .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #000;
}
.vidsSection .options {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: stretch;
          align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 225px;
}
@media screen and (max-width: 718px) {
  .vidsSection .options {
    min-width: 520px;
  }
  .vidsSection .options .option:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 638px) {
  .vidsSection .options {
    min-width: 440px;
  }
  .vidsSection .options .option:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 558px) {
  .vidsSection .options {
    min-width: 360px;
  }
  .vidsSection .options .option:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .vidsSection .options {
    min-width: 280px;
  }
  .vidsSection .options .option:nth-child(2) {
    display: none;
  }
}
.vidsSection .options .option {
  position: relative;
  overflow: hidden;
  min-width: 56px;
  margin: 8px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vidsSection .options .option:nth-child(1) {
  --defaultBackground:#ED5565;
}
.vidsSection .options .option:nth-child(2) {
  --defaultBackground:#FC6E51;
}
.vidsSection .options .option:nth-child(3) {
  --defaultBackground:#FFCE54;
}
.vidsSection .options .option:nth-child(4) {
  --defaultBackground:#2ECC71;
}
.vidsSection .options .option:nth-child(5) {
  --defaultBackground:#5D9CEC;
}
.vidsSection .options .option:nth-child(6) {
  --defaultBackground:#AC92EC;
}
.vidsSection .options .option.active {
  -webkit-box-flex: 10000;
          flex-grow: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 38px;
  background-size: auto 100%;
  /*&:active {
     transform:scale(0.9);
  }*/
}
.vidsSection .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
.vidsSection .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
.vidsSection .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
.vidsSection .options .option:not(.active) {
  -webkit-box-flex: 1;
          flex-grow: 1;
  border-radius: 24px;
}
.vidsSection .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
.vidsSection .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
.vidsSection .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
.vidsSection .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vidsSection .options .option .label {
  display: -webkit-box;
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vidsSection .options .option .label .icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
.vidsSection .options .option .label .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
.vidsSection .options .option .label .info > div {
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
.vidsSection .options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
.vidsSection .options .option .label .info .sub {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}