* {
  box-sizing: border-box;
  font-family: "Aeonik", sans-serif;
}

body {
  margin: 0;
}

a {
  text-decoration: none;
  color: #8caa72;
}
.as-header,
.as-footer {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  box-shadow: 0 0px 5px #0000001a;
  z-index: 998;
}
.as-footer {
  background-color: #00474e;
  color: white;
}
.as-icon {
  display: flex;
  align-items: center;
}
.as-icon img {
  width: 130px;
}
.as-list {
  list-style-type: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.as-main {
  display: flex;
  width: 100%;
  gap: 1rem;
  padding: 1rem;
  flex-direction: column;
}
.as-hero {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.as-conference {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: #003c45;
  color: white;
}
.as-sondaggio {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #003c45;
}
.as-conference,
.as-sondaggio {
  padding: 0.5rem;
  border: 1px solid #00000017;
  border-radius: 0.5rem;
}
.as-actions {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #00000017;
  border-radius: 0.5rem;
  justify-content: flex-start;
}
.upload-file {
    display: flex;
    gap: 1rem;
}
.calendar {
  padding: 1rem;
  height: 40vh;
  overflow-y: scroll;
  border: 1px solid #00000017;
  border-radius: 0.5rem;
}

.alpha-badge {
  background: red;
  border-radius: 2rem;
  font-weight: bold;
  color: white;
  font-size: 12px;
  padding: 0.3rem 0.5rem;
}

.iframe-container {
  height: 100%;
  overflow: auto;
  position: relative;
}

.as-qa {
  display: flex;
  padding: 1rem;
  justify-content: flex-end;
  background-color: #7db559;
  border: 1px solid #00000017;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}

.qa-content{
  width: 100%;
  height: 100%;
}

.qa-title{
	margin-top: 0px;
}

.as-qa form {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.as-name{
  resize: none;
  overflow-y: auto;
  width: 50%;
  border-radius: 5px;
  height: 3rem;
  padding: 1rem;
  border: 0px;
}

.as-message {
  resize: none;
  overflow-y: auto;
  width: 100%;
  border-radius: 5px;
  height: auto;
  padding: 1rem;
  border: 0px;
}

.as-button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #003c45;
  color: white;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.qa-open{
  width: 200px !important;
  height: 60px;
}

.qa-content {
  transition: 0.3s;
  overflow: hidden;
}

.as-qa .as-button {
  width: 100%;
  justify-content: center;
}

.display-message {
  text-align: center;
  color: white;
}

.stream-iframe-container{
  width: 100%;
  height: 100%;
}

.stream-iframe-container iframe{
  width: 100%;
  height: 100%;
  border-radius: 0.5rem
}

input::file-selector-button {
  text-transform: uppercase;
  height: 100%;
  width: fit-content;
  padding: 1rem;
  background-color: #6CB345;
  color: white;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  word-break: keep-all;
}

.file-upload{
  resize: none;
  overflow-y: auto;
  border-radius: 5px;
  height: 3.5rem;
  padding: 1rem;
  width: 25%;
  background: transparent;
  border: none;
  border-radius: 10px;
  outline: none;
  color: white;
}

.file-upload::placeholder{
  color: white;
  opacity: 0.75;
}

.file-upload:-ms-input-placeholder{
  color: white;
  opacity: 0.75;
}

.file-upload::-ms-input-placeholder{
  color: white;
  opacity: 0.75;
}

input::file-selector-button:hover{
	background: #6CB345;
}

.as-file-upload{
  color: white;
  background-color: #003c45;
  border-radius: 10px;
}

@media (width < 1024px) {
    .as-hero{
        flex-direction: column;
    }
    .as-conference{
        flex: auto;
    }
    .as-qa{
        width: 100%;
    }
}