* {
  font-family: Verdana;
}

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-image: url('../liquid-cheese.svg');

}

.containers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 10px;
  border-radius: 5px;
  cursor: pointer;
}



.vid {
  flex: 0 1 auto;
  height: 360px;
  border-radius: 10px;
  cursor: pointer;
}

.vid-mirrored {
  flex: 0 1 auto;
  height: 360px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.hidden {
  display: none;
}

.text-overlay-producer {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 5px;
  z-index: 1;
  border-radius: 10px;
  color: black;
  background: hsla(43, 100%, 29%, 0.42);
}

.tab-content>.active {
  display: block;
  background: transparent;
  font-size: small;
}


.text-stats-overlay {
  position: absolute;
  top: 25px;
  margin-left: 5px;
  left: 0;
  z-index: 1;
  border-radius: 10px;
  color: black;
  background: hsla(123, 100%, 29%, 0.42);
}


.text-overlay-consumer {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 5px;
  z-index: 1;
  border-radius: 10px;
  color: black;
  background: hsla(173, 95%, 44%, 0.324);
}

.form-control {
  background: hsla(37, 95%, 44%, 0.1);
}

.media-container {
  position: relative;
  z-index: 0;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: whitesmoke;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: hsla(37, 95%, 44%, 0.1);
  border-radius: 10px;
  
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color:whitesmoke;
  background: hsla(37, 95%, 44%, 0.3); 
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  background: hsla(37, 95%, 44%, 0.1);
  display: none;
  overflow: hidden;
  border-radius: 10px;
}



.link-button {
  font: bold 13px Verdana;
  text-decoration: none;
  background-color: #f5cdaa;
  color: #333333;
  padding: 2px 6px 2px 6px;
  border-top: 0px solid #CCCCCC;
  border-right: 0px solid #333333;
  border-bottom: 0px solid #333333;
  border-left: 0px solid #CCCCCC;
}