.hidden {
    display: none;
}
#animationContainer {
    width: 28%;
    -padding: 20px;
    border-radius: 15px;
    color: white;
    background: var(--primary);
}

#activityTypeContainer {
    -height: 100%;
    min-height: 500px;
}
#activityTitle {
    font-size: 24px;
    color: #000;
    text-align: center;
    font-weight: 500;
    margin: auto;
    background-color: #FFFCF7;
    width: 80%;
    padding: 10px;
}
#activityContainer {
    width: 100%;
    -height: 80%;
/*    Dopawards : */
    -height: 90vh;
    transition: height 2s ease-out;
}
.activity-container-visible {
    height: auto;
}
.activity-container-hidden {
    height: 0px;
}
#answersContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.answerButton {
    border-radius: 50px;
    background: white;
    color: black;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    text-align: center;
    position: relative;
}
.answerMediaImg {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    top: -15px;
    left: 0;
    background: white;
}
.answerButton:hover {
    cursor: pointer;
    background: rgb(218, 218, 218);
}
#submitAnswer {
    display: block;
    font-size: 20px;
    width: max-content;
    margin: auto;
    border:none;
    border-radius: 50px;
    background: white;
    color: black;
    padding: 10px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
#submitAnswer:hover {
    cursor: pointer;
    background: rgb(218, 218, 218);
}
#submitAnswer:disabled {
    cursor:not-allowed;
    background: rgb(202 202 202);
    color: rgb(113 113 113);
}
#actReplayButton {
    display: block;
    font-size: 20px;
    width: max-content;
    margin: auto;
    border:none;
    border-radius: 50px;
    background: white;
    color: black;
    padding: 10px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
#vidValButton {
    display: block;
    font-size: 18px;
    width: max-content;
    margin: auto;
    border:none;
    border-radius: 50px;
    background: white;
    color: black;
    padding: 10px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
#vidValButton:hover {
    cursor: pointer;
    background: rgb(218, 218, 218);
}
.animPrecisions {
    font-size: 12px;
    text-align: center;
    color:rgb(0, 0, 0);
    width: 80%;
    
    margin: auto;
    padding: 10px;
    background-color: #FFFCF7;
}
.animMedia {
    display: block;
    width: 60%;
    margin: auto;
}
#animExplanationText {
    text-align: center;
    font-style: italic;
    color:#000;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 100px;
    font-size: 24px;
    color: #000;
    text-align: center;
    font-weight: 500;
    
    background-color: #FFFCF7;
    width: 80%;
    padding: 10px;
}
#inputContainer {
    width: 70%;
    margin: auto;
    margin-top: 30px;
    position: relative;
}
.animOpenInput {
    display: block;
    padding: 15px;
    border-radius: 15px;
    border: none;
    width: 100%;
    margin: auto;
    height: 150px;
}
#animOpenCounter {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px;
    border-radius: 50px;
    background: rgb(218, 218, 218);
    color: black;
}
#animRatinContainer {
    padding: 20px;
    display: flex;
    justify-content: center;
}
.animStarRating {
    width: 50px;
    height: 50px;
    transition: 0.3s ease;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    position: relative;
    background: white;
    transition: 0.3s ease;
}
.animStarRating:hover {
    background: rgb(218, 218, 218);
    cursor: pointer;
    transform: scale(1.1);
}
#animTimeLimitContainer {
    width: 80%;
    height: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
#animTimeBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    transition: 0.3s ease;
    background: green;
    animation-name: timeCounting;
    animation-timing-function: linear;
}
#animAnswersContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.animAnswerContainer {
    padding: 15px;
    border-radius: 50px;
    background: white;
    color: black;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}
.animAnswerContainer:hover {
    cursor: move;
    background: rgb(218, 218, 218);
}
#animInfoContainer {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#animAnswersPairingContainer {
    display: flex;
    justify-content: space-between;
}
#animLeftAnswers, #animRightAnswers {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.animAnswerLeft, .animAnswerRight {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid rgb(172, 172, 172);
    position: relative;
}
.animAnswerLeft {
    background: white;
    color: black;
}
.animAnswerLeft:hover {
    background: rgb(218, 218, 218);
    cursor: move;
}
#animIframe {
    min-height: 500px;
    height: 90vh;
    width: 100vw;
margin-top: -60px;
    border: unset;
}
.animDownloadDocIcon {
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: black;
    font-size: 24px;
}
.animDownloadDocIconAbs {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: black;
    font-size: 24px;
}
#animVideo {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

#actScoreText {
    text-align: center;
    font-size: 24px;
}
#actRank {
    color: var(--primary);
    font-size: 30px;
    text-align: center;
    padding: 15px;
}
#photoCallButtons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-photocall {
    width: 40%;
    padding: 10px;
    border-radius: 20px;
    background: white;
    color: black;
    font-size: 12px;
    border: none;
    margin: 5px;
}
.btn-photocall:disabled {
    background: rgb(226, 226, 226);
    color: darkgrey;
}
#streamPhotocall {
    width: 100%;
}
#selectBg {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.photocallBgsOpt {
    width: 75px;
    height: 50px;
    object-fit: cover;
    margin: 5px;
}
.selectedBg {
    border: 2px solid white;
}
#actPhotocallLoader {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
#actPhotocallLoader i {
    animation: spinAnim 1s linear infinite;
    width: 50px;
    height: 50px;
    font-size: 50px;
}
#actPhotocallCancel {
    display: block;
    font-size: 20px;
    width: max-content;
    margin: auto;
    border:none;
    border-radius: 50px;
    background: white;
    color: black;
    padding: 10px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
.bounce-in-bottom {
	-webkit-animation: bounce-in-bottom 1.5s both;
	        animation: bounce-in-bottom 1.5s both;
}
.slide-out-top {
	-webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@keyframes timeCounting {
    from {
        width: 100%;
    }
  
    to {
        width: 0%;
    }
}
@keyframes spinAnim {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes bounce-in-bottom {
    0% {
      -webkit-transform: translateY(500px);
              transform: translateY(500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(65px);
              transform: translateY(65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
}
@keyframes slide-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
}
  
@media screen and (max-width: 800px){
    #animationContainer {
        width: 100%;
    }
}

#slider {
    height: 25px;
}

#inputContainer {
    background-color:#FFFCF7;
    text-align: center;
    font-weight: bold;
    color: #000;
    padding: 10px;
}