#survey-container {
    padding: 20px;
    border: 2px solid #FFF;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background: #FFF;
}

#survey-container > p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
}

#survey-container div[class$="panel"]:not(:first-of-type),
#survey-container #processing {
    display: none;
}

#survey-container #processing p {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: #000;
}

#processing-loader, #processing-loader:before, #processing-loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: bubbles 1.2s infinite ease-in-out;
    animation: bubbles 1.2s infinite ease-in-out;
  }

#processing-loader {
    /* color: #000; */
    font-size: 10px;
    margin: 0 auto 50px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

#processing-loader:before, #processing-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

#processing-loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }

#processing-loader:after {
    left: 3.5em;
}

@-webkit-keyframes bubbles {
    0%, 80%, 100% {
      box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
      box-shadow: 0 2.5em 0 0;
    }
}

@keyframes bubbles {
    0%, 80%, 100% {
      box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
      box-shadow: 0 2.5em 0 0;
    }
}

#survey-container div[class$="panel"] .form-field {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
    flex-wrap: nowrap;
    width: 80%;
    margin: auto;
    align-items: stretch;
    /* height: 100%; */
}

body.mobile #survey-container div[class$="panel"] .form-field {
    flex-direction: column;
}

#survey-container div[class$="panel"] h4 {
    font-weight: bold;
    text-align: center;
    /* margin-bottom: 1.4em; */
    font-size: 26px;
    margin: 12px auto;
    color: #000;
}

#survey-container div[class$="panel"] label {
    /* background: #43085a; */
    padding: 12px 12px;
    border-radius: 8px;
    color: #FFF;
    font-family: 'Arial';
    font-weight: 600;
    margin: 8px;
    font-size: 24px;
    cursor: pointer;
    flex: 1;
    align-content: center;
    background: rgb(67, 8, 90);
    background: -moz-linear-gradient(0deg, rgba(67, 8, 90, 1) 0%, rgba(101, 24, 134, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(67, 8, 90, 1) 0%, rgba(101, 24, 134, 1) 100%);
    background: linear-gradient(0deg, rgba(67, 8, 90, 1) 0%, rgba(101, 24, 134, 1) 100%);
}

#survey-container div[class$="panel"] input {
    display: none;
}
