@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Roboto-light";
    src: url("../fonts/Roboto-Light.ttf");
    font-weight: 100;
    font-style: normal;
}
:root {
    --upl-main-bg-color: transparent;
    --upl-section-bg-color: #2f4858;
    --upl-hover: #233232;
}


html {
    height: 100vh;
}

body {
    margin: 0;
}
/* Header-Css */

/* Form styles  */
.form-banner {
    padding: 150px;
    text-align: center;
    background-color: #628f35;
    color: white;
}

.color-green {
    color: #33a474;
}
.color-purple {
    color: #88619a;
}

.question-subcategory {
    color: #66c09a;
    font-size: 22px;
}

.form-banner h1 {
    font-weight: bold;
}

.radio-inputs {
    padding: 30px 250px;
}

/* Video section styles */
/* .video-main-section {
  padding: 300px;
} */

.emotional-audio {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
}

.main-container {
    background: #b3a78d;
}

.video-main-section {
    overflow: hidden;
}



/* .video-container {
  text-align: center;
  background: #b3a78d;
  height: 100vh;
  overflow: hidden;
  padding: 50px;
}
.video-container video {
  height: 100vh;
  width: 100vw;
} */
.video-container video {
    height: 100vh;
    width: 100vw;
}
.continue-btn-a {
    position: absolute;
    right: 120px;
    bottom: 120px;
}

/* .video-container video::-webkit-media-controls {
  display: none;
}

.video-container video {
  display: none;
  pointer-events: none;
} */

.feedback {
    text-align: center;
}
.feedback-form {
    padding: 40px 30px;
}


.feedback small {
    color: #33a474;
}
.feedback input,
.feedback button,
.feedback textarea {
    padding: 15px;
    width: 100%;
}
#emotional-graph-div {
    margin-bottom: 120px;
}

button.form-submit.login-button {
    width: 100%;
}

a.show-stress-management-form {
    cursor: pointer;
}
/* Video section styles end*/

/* User Profile Form Styles */
#user-profile-wrapper {
    background: var(--upl-main-bg-color);
    width: 20vw;
    /* height: 100%; */
    position: absolute;
    right: 0;
    min-width: 250px;
    /* display: none; */
    top: 0;
}
#user-profile-container {
    /*   background:green; */
    padding: 10px;
}

.main-banner-heading {
    letter-spacing: 16px;
}

.main-graph {
    margin-bottom: 100px;
    padding-bottom: 100px;
}

#user-profile-wrapper a {
    color: white;
    text-decoration: none;
}
.user-profile-section {
    background: var(--upl-section-bg-color);
    display: flex;
    padding: 5px;
    position: relative;
    margin-bottom: 1px;
}

.user-profile-value {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 3px;
}
.user-logo {
    /*  background:red; */
    font-size: 40px;
}
.profile-value {
    padding-left: 5px;
    width: 190px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-transform: lowercase;
}
.user-profile-list-section {
    background: var(--upl-section-bg-color);
    padding: 5px;
    display: flex;
    flex-direction: column;
}
.user-profile-list-item {
    display: flex;
    padding: 10px;
    width: 100%;
    align-content: center;
    cursor: pointer;
}
.upl-list-item-logo {
    font-size: 17px;
    padding: 0px 10px;
}
.upl-list-item-content a {
    font-size: 14px;
    width: 100%;
}
.signout-input {
    background: inherit;
    border: none;
    font-size: 14px;
}
.user-profile-list-item:hover {
    background: var(--upl-hover);
}
/* User Profile Form Styles end*/

/* // radio-couldnt-disagree-more
// radio-strongly-disagree
// radio-completely-disagree
// radio-disagree
// radio-slightly-disagree
// radio-neutral
// radio-slightly-agree
// radio-agree
// radio-completely-agree
// radio-strongly-agree */

.radio-strongly-agree,
.radio-completely-agree,
.radio-agree,
.radio-slightly-agree,
.radio-disagree,
.radio-completely-disagree,
.radio-couldnt-disagree-more,
.radio-strongly-disagree,
.radio-slightly-disagree,
.radio-neutral {
    appearance: none;
    border-radius: 50%;
    outline: none;
    position: relative;
    box-shadow: 0 0 5px #999;
    transition: box-shadow 0.2s ease;
}

.radio-couldnt-disagree-more {
    width: 70px;
    height: 70px;
    border: 2px solid #88619a;
}
.radio-strongly-agree {
    width: 80px;
    height: 80px;
    border: 2px solid #33a474;
}
.radio-strongly-disagree {
    width: 60px;
    height: 60px;
    border: 2px solid #88619a;
}
.radio-completely-agree {
    width: 70px;
    height: 70px;
    border: 2px solid #33a474;
}

.radio-completely-disagree {
    width: 50px;
    height: 50px;
    border: 2px solid #88619a;
}

.radio-agree {
    width: 60px;
    height: 60px;
    border: 2px solid #33a474;
}
.radio-disagree {
    width: 45px;
    height: 45px;
    border: 2px solid #88619a;
}

.radio-slightly-agree {
    width: 50px;
    height: 50px;
    border: 2px solid #33a474;
}
.radio-slightly-disagree {
    width: 40px;
    height: 40px;
    border: 2px solid #88619a;
}
.radio-neutral {
    width: 30px;
    height: 30px;
    border: 2px solid #999;
}

.form {
    padding: 20px 30px;
}

.radio-strongly-agree:before,
.radio-agree:before,
.radio-slightly-agree:before,
.radio-completely-disagree:before,
.radio-completely-agree:before,
.radio-couldnt-disagree-more:before,
.radio-neutral:before,
.radio-slightly-disagree:before,
.radio-disagree:before,
.radio-strongly-disagree:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 47%;
}
.radio-strongly-agree:after,
.radio-agree:after,
.radio-slightly-agree:after,
.radio-completely-disagree:after,
.radio-completely-agree:after,
.radio-couldnt-disagree-more:after,
.radio-neutral:after,
.radio-slightly-disagree:after,
.radio-disagree:after,
.radio-strongly-disagree:after {
    content: attr(value);
    opacity: 1;
    position: absolute;
    width: fit-content;
    padding: 5px 10px;
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    border-radius: 50px;
    background-color: #aca8a8b8;
    color: white;
}

.radio-strongly-agree:checked:before,
.radio-agree:checked:before,
.radio-completely-agree:checked:before,
.radio-slightly-agree:checked:before {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}
.radio-strongly-agree:hover,
.radio-completely-agree:hover,
.radio-agree:hover,
.radio-slightly-agree:hover {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}

.radio-neutral:checked:before {
    background: #999;
    transition: all 0.2s ease-in-out;
}
.radio-neutral:hover {
    background: #999;
    transition: all 0.2s ease-in-out;
}

.radio-slightly-disagree:checked:before,
.radio-completely-disagree:checked:before,
.radio-couldnt-disagree-more:checked:before,
.radio-disagree:checked:before,
.radio-strongly-disagree:checked:before {
    background: #88619a;
    transition: all 0.2s ease-in-out;
}
.radio-slightly-disagree:hover,
.radio-disagree:hover,
.radio-completely-disagree:hover,
.radio-couldnt-disagree-more:hover,
.radio-strongly-disagree:hover {
    background: #88619a;
    transition: all 0.2s ease-in-out;
}

.form-submit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.initial-form-submit-btn {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.module-submit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.go-to-emotional-form-btn {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.emotional-form-btn {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-piechart {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.continue-btn-absolute {
    position: absolute;
    display: flex;
    text-wrap: nowrap;
    top: 61%;
    left: 58%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
}
.video-container img {
    width: 100%;
}
.emotional-info {
    padding: 100px 0;
}

.backtocharts {
    text-decoration: none;
}

#scaleBox {
    padding: 10px 50px;
}

.submit-button,
.initial-submit-button,
.module-next-button,
.module-back-button {
    padding: 20px 80px;
    background: #88619a;
    background-color: #88619a;
    border: 2px solid #88619a;
    border-radius: 50px;
    transition: all 0.3s ease-in;
}
.go-to-emotional-form-btn,
.continue-btn {
    padding: 20px 40px;
    background: #88619a;
    background-color: #88619a;
    border: 2px solid #88619a;
    border-radius: 50px;
    transition: all 0.3s ease-in;
}
.emotional-form-btn {
    padding: 10px 40px;
    background: #88619a;
    background-color: #88619a;
    border: 2px solid #88619a;
    border-radius: 50px;
    transition: all 0.3s ease-in;
}
.back-to-piechart {
    padding: 10px 40px;
    background: #88619a;
    background-color: #88619a;
    border: 2px solid #88619a;
    border-radius: 50px;
    transition: all 0.3s ease-in;
}
.main-container {
    background: #b3a78d;
}

.initial-submit-button span,
.module-next-button span,
.back-to-piechart span,
.continue-btn span,
.module-back-button span,
.go-to-emotional-form-btn span,
.emotional-form-btn span,
.show-graph-button span {
    color: white;
    font-weight: 400;
    font-size: 22px;
}
.submit-button span {
    color: white;
    font-weight: 400;
    font-size: 19px;
}

.error-message {
    color: #cc0033;
    display: inline-block;
    font-size: 18px;
    line-height: 15px;
    margin: 5px 0 0;
}

.show-graph-button {
    padding: 20px 30px;
    background: #88619a;
    background-color: #88619a;
    border: 2px solid #88619a;
    border-radius: 50px;
}

.radio1,
.radio2,
.radio3,
.radio4,
.radio5,
.radio6,
.radio7,
.radio8 {
    padding: 10px 0 30px 0;
}

label {
    font-weight: 550;
    max-width: 900px;
    margin: 0 auto;
    color: #576071;
    text-align: center;
    line-height: 1.5;
}

#barGraph_mental svg {
    width: 100%;
    height: 500px;
    margin-top: 50px;
}

.heightnone {
    height: 0;
    overflow: hidden;
}
.heightnone > div {
    height: 0;
}

.submit-button:hover,
.initial-submit-button:hover,
.back-to-piechart:hover,
.go-to-emotional-form-btn:hover,
.emotional-form-btn:hover,
.module-next-button:hover,
.continue-btn:hover,
.module-back-button:hover,
.show-graph-button:hover {
    background-color: #6c4d7b;
    border-color: #6c4d7b;
    border: 2px solid #6c4d7b;
}
.submit-button:hover i,
.go-to-emotional-form-btn:hover i,
.back-to-piechart:hover i,
.emotional-form-btn:hover i,
.continue-btn:hover i,
.initial-submit-button:hover i,
.module-next-button:hover i,
.module-back-button:hover i,
.show-graph-button:hover i {
    animation: arrowkey 3s ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

.radio-completely-agree:hover {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}

@keyframes arrowkey {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(9px);
    }
}
@keyframes arrowkey {
    from {
        transform: translateX(9px);
    }

    to {
        transform: translateX(0px);
    }
}

.main-module-heading {
    padding: 40px;
}

.main-module-heading h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;

    font-weight: 600;
    font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    color: #b393d3;
    text-shadow: 1px 1px 0px #957dad, 1px 2px 0px #957dad, 1px 3px 0px #957dad,
        1px 4px 0px #957dad, 1px 5px 0px #957dad, 1px 6px 0px #957dad,
        1px 10px 5px rgba(16, 16, 16, 0.5), 1px 15px 10px rgba(16, 16, 16, 0.4),
        1px 20px 30px rgba(16, 16, 16, 0.3), 1px 25px 50px rgba(16, 16, 16, 0.2);
}

.main-module-heading h1 em {
    font-style: normal;
    font-weight: 600;
}

.main-module-heading h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.main-module-heading h1:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    background-color: #b80000;
}
.main-module-heading h1:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -50px;
    background-color: #b80000;
}

/* .barGraph_mental,
.barGraph_emotional,
.barGraph_spiritual,
.barGraph_relationship,
.barGraph_personalGrowth,
.barGraph_finance,
.barGraph_career {
  max-width: 1200px !important;
  width: 1200px !important;
} */

.bargraph-heading {
    padding: 30px 0 10px 0;
    color: #628f35;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.not-show {
    display: none !important;
}

.emotional-layer1-form label {
    font-size: 1.75rem;
}

.radio-emotional-agree:hover {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}

.radio-emotional-agree:after {
    content: attr(data-value);
    opacity: 1;
    position: absolute;
    width: fit-content;
    padding: 5px 10px;
    font-size: 13px;
    letter-spacing: 1.1px;
    text-align: center;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    border-radius: 50px;
    background-color: #aca8a8b8;
    color: white;
}
.radio-emotional-agree:checked:before {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}

.radio-emotional-agree:checked:before {
    background: #33a474;
    transition: all 0.2s ease-in-out;
}

.radio-emotional-agree {
    appearance: none;
    border-radius: 50%;
    outline: none;
    position: relative;
    box-shadow: 0 0 5px #999;
    transition: box-shadow 0.2s ease;
}
.radio-emotional-agree {
    width: 75px;
    height: 75px;
    border: 2px solid #33a474;
}
.radio-emotional-agree:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 47%;
}

.emotional-layer1-form {
    width: 70%;
}

.anonymous-btn {
    width: 300px !important;
    background-color: rgb(28, 169, 169);
    margin: 10px;
    color: white;
}
.anonymous-btn:hover {
    background-color: rgb(74, 248, 248);
    color: black;
    transition: all 2s ease;
}

.emotional-layer2-form-main {
    width: 70%;
    padding: 60px 30px;
}

#thankyou-form h1 {
    color: green;
}
#thankyou-form i {
    color: green;
    font-size: 80px;
}

/* Form styles end */

@media screen and (max-width: 1600px) {
    .radio-inputs {
        padding: 30px 220px;
    }
}
@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1280px) {
    .radio-inputs {
        padding: 30px 80px;
    }
}

@media screen and (max-width: 992px) {
}
@media screen and (max-width: 776px) {
    .radio-inputs {
        padding: 30px 50px;
    }
    .radio-strongly-agree,
    .radio-strongly-disagree {
        width: 45px;
        height: 45px;
    }
    .radio-agree,
    .radio-disagree {
        width: 40px;
        height: 40px;
    }
    .radio-slightly-agree,
    .radio-slightly-disagree {
        width: 35px;
        height: 35px;
    }
    .radio-neutral {
        width: 30px;
        height: 30px;
    }
    .color-green,
    .color-purple {
        font-size: 20px;
    }
    .form-banner {
        padding: 100px;
    }
    .submit-button {
        padding: 10px 50px;
    }
    .initial-submit-button {
        padding: 10px 50px;
    }
    .module-next-button {
        padding: 10px 50px;
    }
    .module-back-button {
        padding: 10px 50px;
    }
}
@media screen and (max-width: 600px) {
    .radio-inputs {
        padding: 10px;
    }
    .form-banner {
        padding: 100px 50px;
    }
    .color-purple {
        width: 100%;
        text-align: end;
        padding-top: 10px;
    }
    .color-green {
        width: 100%;
        padding-bottom: 10px;
    }
    .radio-inputs {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
    .form {
        padding: 40px 20px;
    }
    .radio-strongly-agree,
    .radio-strongly-disagree {
        width: 40px;
        height: 40px;
    }
    .radio-agree,
    .radio-disagree {
        width: 35px;
        height: 35px;
    }
    .radio-slightly-agree,
    .radio-slightly-disagree {
        width: 30px;
        height: 30px;
    }
    .radio-neutral {
        width: 25px;
        height: 25px;
    }
    .radio-strongly-agree:hover:after,
    .radio-agree:hover:after,
    .radio-slightly-agree:hover:after,
    .radio-neutral:hover:after,
    .radio-slightly-disagree:hover:after,
    .radio-disagree:hover:after,
    .radio-strongly-disagree:hover:after {
        font-size: 9px;
    }
    .submit-button {
        padding: 10px 30px;
    }
    .initial-submit-button {
        padding: 10px 30px;
    }
    .module-next-button {
        padding: 10px 30px;
    }
    .module-back-button {
        padding: 10px 30px;
    }
}

.main-banner-heading p {
    color: white;
    font-weight: bold;
    letter-spacing: normal;
    font-size: 20px;
    margin-top: 30px;
}

.main-module-heading p {
    color: #33a48a;
    font-weight: bold;
    letter-spacing: normal;
    font-size: 22px;
    margin-top: 60px;
    text-align: center;
}

