:root {
    --Light-Grey: hsl(217, 12%, 63%);
    --Medium-Grey: hsl(216, 12%, 54%);
    --Dark-Blue: hsl(213, 19%, 18%);
    --Very-Dark-Blue: hsl(216, 12%, 8%);
    --Orange: hsl(25, 97%, 53%);
}

html {
    background-color: var(--Dark-Blue);
}

body {
    overflow: hidden;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: var(--Light-Grey);
    font-family: 'Overpass';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.mainContainer {
    background: radial-gradient(98.96% 98.96% at 50% 0%, #232A34 0%, #181E27 100%);
    border-radius: 30px;
    padding: 32px 0px;
    margin-bottom:20px;
    max-width: 412px;
    position: relative;
}

.component-icon {
    /* position: absolute;
    left: 7.34%;
    right: 80.43%;
    top: 6.67%;
    bottom: 82.22%; */
    background-color:var(--Dark-Blue);
    border-radius:50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:36px;
}

.ratingState {
    padding: 0px 32px;
}

.successState {
    justify-content: center;
    text-align: center;
    padding: 15px 38px;
    align-items: center;
}

.ratingReport {
    padding: 10px 20px;
    background-color: var(--Dark-Blue);
    border-radius: 22px;
    width: max-content;
    color: var(--Orange);
}

h2 {
    font-size:28px;
    font-weight: 700;
    color: white;
}

#rating-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px;
    margin: 24px 0px 32px 0px;

}

#rating-list input[type="radio"] {
    display: none;
}


#rating-list label {
  background-color:var(--Dark-Blue);
  color: var(--Medium-Grey);
  cursor: pointer;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

#rating-list input[type="radio"]:checked+label {
  background-color: var(--Medium-Grey);
  color: white;
}

#rating-list input[type="radio"]:hover+label {
  background-color: var(--Orange);
  color: white;
}

#ratingStarForm input[type="submit"] {
    background-color: var(--Orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    color:white;
    width:100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius:25px;
    border: 0px;
    cursor: pointer;
}

.thank-you-statement {
    display:none;
}

.attribution {
    padding-bottom: 20px;
}

@media screen and (max-width:376px) {
    .mainContainer {
        min-width:327px;
        max-width: 328px;
    }
    
}

.activeEl {
    display:flex;
    flex-direction:column;
  }
  
  .hiddenEl {
    display:none;
  }


