@font-face {
    font-family: 'WWF';
    src: url('/assets/fonts/WWF.woff2') format('woff2'), url('/assets/fonts/WWF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Regular.woff2') format('woff2'), url('/assets/fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'WWF';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.info-popup,
.full_name_popup {
    padding: 20px 30px;
    border-radius: 25px;
    position: fixed;
    bottom: 180px;
    color: white;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 500px;
    font-size: 16px;
    font-family: "Open Sans";
}

.full_name_popup {
    text-align: center;
    font-size:  12px;
    width: fit-content;
    padding: 10px 15px;
    display: none;
}


/* LOGIN PAGE */

.login-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper * {
    font-family: 'Open Sans';
}

.login-wrapper .login-box {
    width: 300px;
    height: 350px;
    -webkit-box-shadow: 0px 0px 13px -2px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 13px -2px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 13px -2px rgba(66, 68, 90, 1);
    border-radius: 25px;
    padding: 30px;
}

.login-wrapper form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-wrapper form img {
    width: 100px;
}

.login-wrapper form input {
    width: 100%;
    border-radius: 25px;
    height: 40px;
    margin-top: 10px;
    border: 1px solid rgb(86, 86, 86);
}

.login-wrapper form input[type="text"],
.login-wrapper form input[type="password"] {
    padding-left: 20px;
}

.login-wrapper form input[type="submit"] {
    cursor: pointer;
    background-color: #9dbc45;
    color: white;
    border: none;
}

.login-wrapper form label.error-label {
    height: 16px;
    font-size: 14px;
    color: red;
}


/* end of LOGIN PAGE */


/* TOP BAR */

.topbar-wrapper {
    width: 100%;
    background-color: black;
    height: 147px;
    position: relative;
}

.topbar-wrapper .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.topbar-wrapper .topbar-username {
    opacity: 0.5;
    color: #ffffff;
    font-size: 24px;
}

.topbar-wrapper .topbar-username a {
    color: white;
    text-decoration: none;
}

.topbar-wrapper .topbar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.topbar-wrapper .topbar-left a {
    height: 100%;
}

.topbar-wrapper .topbar-left img {
    height: 100%;
    margin-right: 25px;
}

.topbar-wrapper .topbar-left span {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
}


/* end of TOP BAR */


/* ADMIN BAR */

.adminbar-wrapper {
    height: 110px;
    width: 100%;
    background-color: #f5f5f5;
}

.adminbar-wrapper .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.adminbar-wrapper a {
    display: flex;
    opacity: 0.4;
    color: #000000;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    margin-right: 20px;
}

.adminbar-wrapper a.active {
    opacity: 1;
    font-weight: 700;
    position: relative;
    font-family: Arial!important;
}

.adminbar-wrapper a.active:before {
    content: "";
    width: 50px;
    height: 3px;
    background-color: black;
    position: absolute;
    left: 0;
    bottom: -7px;
}


/* end of ADMIN BAR */


/* USERS PAGE */

.users-wrapper {
    width: 100%;
    padding-top: 50px;
}

.users-wrapper .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.users-wrapper .searchbar {
    position: relative;
}

.users-wrapper .searchbar input {
    height: 64px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    width: 100%;
    padding-left: 20px;
    font-family: "Open Sans";
    font-size: 16px;
    outline: none;
    position: relative;
    display: block;
}

.users-wrapper .searchbar img {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.userstable {
    padding-top: 50px;
}

.userstable-head {
    margin-bottom: 10px;
}

.userstable-head,
.userstable-item {
    display: grid;
    grid-template-columns: 0.3fr 1fr 1.3fr 1fr 1.3fr 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
}

.userstable-head>div {
    opacity: 0.4;
    color: #000000;
    font-family: "Open Sans";
    font-size: 10px;
    font-weight: 600;
}

.userstable-head>div:nth-child(1),
.userstable-item>div:nth-child(1) {
    width: 30px;
}

.userstable-item-edit a {
    float: right;
}

.userstable-item {
    height: 60px;
    border-radius: 10px;
    align-items: center;
}

.userstable-item:nth-child(even) {
    background-color: #f8f8f8;
}

.userstable-item div {
    color: #000000;
    font-family: 'Open Sans';
    font-size: 13px;
}

.userstable-item div.username {
    font-weight: 700;
    font-family: Arial;
}

.userstable-item span.role-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.userstable-item span.role-color-Administrator {
    background-color: #ef3939;
}

.userstable-item span.group-color-Administratorzy {
    background-color: #ef3939;
}

.userstable-item span.role-color-Moderator {
    background-color: #d18afd;
}

.userstable-item span.group-color-Przyroda {
    background-color: #94ff81;
}

.userstable-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    max-width: 24px;
    min-width: 24px;
    max-height: 24px;
    min-height: 24px;
    cursor: pointer;
}

.users-footer {
    height: 133px;
    background-color: #f5f5f5;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.users-footer .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.users-footer .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.users-footer .button-add button {
    width: 235px;
    height: 53px;
    box-shadow: 0 0 32px rgba(157, 188, 71, 0.36);
    border-radius: 12px;
    background-color: #9dbc47;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.45px;
}

.users-footer .button-add button img {
    margin-right: 5px;
}

.users-footer .icon-delete button {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background-color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
}


/* end of USERS PAGE */


/* ADD USER PAGE */

.adduser-wrapper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
}

.adduser-wrapper .content-wrapper {
    max-width: 1295px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.adduser-wrapper form h3 {
    color: #000000;
    font-family: WWF;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
}

.adduser-wrapper form .input-wrapper {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.adduser-wrapper form .input-wrapper label {
    color: #000000;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.adduser-wrapper form .input-wrapper input,
.adduser-wrapper form .input-wrapper select {
    width: 480px;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}

.adduser-wrapper form .submit-wrapper button img {
    margin-right: 5px;
}

.adduser-wrapper form .submit-wrapper button {
    margin-top: 15px;
    width: 100%;
    max-width: 480px;
    height: 53px;
    box-shadow: 0 0 32px rgba(157, 188, 71, 0.36);
    border-radius: 12px;
    background-color: #9dbc47;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.45px;
}


/* end of ADD USER PAGE */


/* CREATOR PAGE */

.creator-wrapper {
    padding-top: 50px;
    width: 100%;
    padding-bottom: 250px;
}

.creator-wrapper .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.creator-wrapper .content-wrapper>h3 {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 45px;
}

.creator-wrapper .form-wrapper {
    padding: 50px 80px;
    box-shadow: 0 23px 64px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
}

.creator-wrapper form h4 {
    color: #000000;
    font-family: WWF;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 60px;
}

.creator-wrapper form hr {
    background-color: #eaeaea89;
    height: 3px;
    border: none;
    width: 100%;
}

.creator-wrapper .input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.creator-wrapper .input-wrapper label {
    color: #000000;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.creator-wrapper .input-wrapper input[type="text"] {
    width: 100%;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}

.creator-wrapper .input-wrapper input[type="date"] {
    width: 100%;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}

.form-section {
    width: 100%;
    padding-bottom: 50px;
}

.form-section>label {
    color: #000000;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    display: block;
}

.color-choosers-wrapper {
    margin-bottom: 30px;
}

.color-choosers-wrapper>label {
    color: #000000;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
}

.color-choosers {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.color-chooser>div {
    width: 72px;
    height: 72px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-chooser {
    text-align: center;
    cursor: pointer;
    margin-right: 25px;
}

.color-chooser.active span {
    font-family: 'Arial';
    font-weight: bold;
}

.color-chooser.active>div {
    border: 1px solid black;
}

.color-chooser span {
    color: #000000;
    font-family: "Open Sans";
    font-size: 12px;
}

.color-chooser>div>div {
    width: 52px;
    height: 52px;
    border-radius: 10px;
}

.color-chooser.cc000000>div>div {
    background-color: #000000;
}

.color-chooser.ccFFFFFF>div>div {
    background-color: #FFFFFF;
}

.color-chooser.cc808080>div>div {
    background-color: #808080;
}

.color-chooser.ccFFB636>div>div {
    background-color: #FFB636;
}

.color-chooser.ccF6603F>div>div {
    background-color: #F6603F;
}

.color-chooser.ccFB8C3A>div>div {
    background-color: #FB8C3A;
}

.color-chooser.cc9DBC47>div>div {
    background-color: #9DBC47;
}

.color-chooser.cc256220>div>div {
    background-color: #256220;
}

.color-chooser.cc86074B>div>div {
    background-color: #86074B;
}

.create-wrapper hr {
    opacity: 0.7;
}

.add-modules-wrapper {
    width: 100%;
    height: 99px;
    border: 1px dashed #d0d0d0;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 50px;
}

.add-module-popup-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.491);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.add-module-popup {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 23px 64px rgba(0, 0, 0, 0.08);
    padding: 80px 50px 30px;
    position: relative;
    width: 786px;
}

.add-module-popup>img {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.add-module-popup>h4 {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
}

.add-module-popup>p {
    opacity: 0.5;
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}

.counter-wrapper {
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    width: 78px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    margin-right: 30px;
}

.counter-wrapper .counter-value {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
}

.counter-arrows {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.counter-arrows>div {
    height: 50%;
    background-color: #e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    cursor: pointer;
}

.counter-arrows>div:nth-child(1) {
    border-top-right-radius: 10px;
}

.counter-arrows>div:nth-child(2) {
    background-color: #bebebe;
    border-bottom-right-radius: 10px;
}

.amp-questionnaire-increment,
.amp-quiz-increment,
.amp-text-increment,
.amp-attachment-increment,
.amp-description-increment,
.amp-hidden-increment {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.counter-description {
    color: #000000;
    font-family: "Arial";
    font-size: 24px;
    font-weight: 700;
}

.add-module-popup hr {
    width: calc(100% + 100px);
    margin-left: -50px;
    background-color: #eaeaea89;
    height: 3px;
    border: none;
}

.submit-wrapper {
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add-module-popup .submit-wrapper button {
    width: 161px;
    height: 53px;
    border-radius: 12px;
    background-color: #000000;
    color: #ffffff;
    font-family: "Arial";
    font-size: 15px;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
}

.questionnaire-question-item {
    margin-bottom: 60px;
}

.questionnaire-question-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.questionnaire-question-item-header h3 {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
}

.questionnaire-question-item-header>div>img {
    cursor: pointer;
}

.questionnaire-question-item-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questionnaire-question-item .input-wrapper input[type="text"],
.feedback-section-wrapper .questionnaire-question-item-line .input-wrapper input[type="text"] {
    width: 100%;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}

.questionnaire-question-item .select-wrapper,
.feedback-section-wrapper .questionnaire-question-item-line .select-wrapper {
    max-width: 378px;
    margin-left: 20px;
}

.questionnaire-question-item .select-wrapper select,
.feedback-section-wrapper .questionnaire-question-item-line .select-wrapper select {
    width: 100%;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}

.questionnaire-question-item-line-answers .iw-unactive input {
    outline: none;
}

.questionnaire-question-item-line-answers .input-wrapper:nth-child(1) {
    margin-right: 10px;
}

.questionnaire-question-item-line-answers .input-wrapper:nth-child(2) {
    margin-left: 10px;
}

.iw-unactive {
    opacity: 0.3;
}

.checkbox-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.checkbox-wrapper input {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-wrapper input[type="text"] {
    width: 34px;
    min-height: 40px;
    max-height: 40px;
    height: 40px;
    padding-left: 2px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    font-size: 25px;
    text-align: center;
}

.checkbox-wrapper label {
    color: #000000;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
}

.question-config-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.question-config-wrapper .checkbox-wrapper {
    width: 50%;
}

.question-config-wrapper .checkbox-wrapper:nth-child(1) {
    margin-right: 10px;
}

.question-config-wrapper .checkbox-wrapper:nth-child(2) {
    margin-left: 10px;
}

.questionnaire-question-item hr {
    background-color: #eaeaea89;
    height: 3px;
    border: none;
    width: 100%;
}

.questionnaire-data-wrapper .checkbox-wrapper {
    margin-bottom: 10px;
}

.feedback-section-wrapper .feedback-s-i>h3 {
    color: #000000;
    font-family: WWF;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.feedback-s-i hr {
    background-color: #eaeaea89;
    height: 3px;
    border: none;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.add-feedback-elements {
    width: 100%;
    height: 99px;
    border: 1px dashed #d0d0d0;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 50px;
    margin-top: 40px;
    cursor: pointer;
}

.feedback-s-i {
    position: relative;
}

.feedback-s-i-close {
    position: absolute;
    top: -25px;
    right: 10px;
    cursor: pointer;
}

.feedback-item {
    flex-direction: column;
}

.feedback-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feedback-item-bottom {
    width: 100%;
}

.feedback-item-bottom textarea {
    width: 100%;
    height: 164px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
    padding-top: 20px;
    resize: none;
}

.buttons-wrapper {
    padding-top: 50px;
}

.buttons-wrapper h3 {
    color: #000000;
    font-size: 32px;
    margin-bottom: 30px;
}

.buttons-wrapper .button-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons-wrapper .button-wrapper .input-wrapper:nth-child(1) {
    margin-right: 10px;
}

.buttons-wrapper .button-wrapper .input-wrapper:nth-child(2) {
    margin-left: 10px;
}

.creator-footer {
    height: 133px;
    background-color: #f5f5f5;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.creator-footer .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.creator-footer .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.creator-footer .questionnaire-info>div:nth-child(1) {
    opacity: 0.5;
    color: #000000;
    font-family: "Open Sans";
    font-size: 10px;
    font-weight: 400;
}

.creator-footer .questionnaire-info>div:nth-child(2) {
    color: #000000;
    font-family: "Arial";
    font-size: 15px;
    font-weight: 700;
}

.creator-footer .cf-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.creator-footer .cf-left .questionnaire-info {
    margin-right: 30px;
}

.cf-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cf-right button {
    min-width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
    outline: none;
    color: #000000;
    font-family: "Arial";
    font-size: 15px;
    font-weight: 700;
    margin-left: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

/* .cf-right button:nth-child(3) {
    min-width: 161px;
    max-width: 161px;
} */

.cf-right button:nth-child(2) {
    min-width: 161px;
    max-width: 161px;
}

.creator-bottom {
    width: 100%;
    padding-top: 50px;
}

.creator-bottom .content-wrapper {
    max-width: 1295px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cb-left button {
    width: 53px;
    height: 53px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.06);
    border: none;
    outline: none;
    cursor: pointer;
}

.cb-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cb-right button:nth-child(1) {
    width: 53px;
    height: 53px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
}

.cb-right button:nth-child(2) {
    margin-left: 20px;
    width: 161px;
    height: 53px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0);
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Arial";
    font-size: 15px;
    font-weight: 700;
}


/* end of CREATOR PAGE */


/* DASHBOARD PAGE */

.icon-delete button {
    position: relative;
}

.icon button {
    transition: .4s;
}

.icon button img {
    transition: .4s;
}

.icon .edit-link:hover {
    background-color: #f9b637;
}

.icon .iframe-link:hover {
    background-color: #858585;
}

.icon .download-link:hover {
    background-color: #9dbc47;
}

.icon .answers-link:hover {
    background-color: #419b5b;
}

.icon .edit-link:hover img,
.icon .iframe-link:hover img,
.icon .download-link:hover img,
.icon .answers-link:hover img {
    filter: brightness(0) invert(1);
}

.icon-delete .delete-count {
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -17px;
    right: -15px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #189318b8;
    color: white;
    font-family: Arial;
    font-weight: 700;
}

.dashboard-wrapper {
    width: 100%;
    padding-top: 50px;
}

.dashboard-wrapper .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
}

.dashboard-wrapper .searchbar {
    position: relative;
}

.dashboard-wrapper .searchbar input {
    height: 64px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    width: 100%;
    padding-left: 20px;
    font-family: "Open Sans";
    font-size: 16px;
    outline: none;
    position: relative;
    display: block;
}

.dashboard-wrapper .searchbar img {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.filtersbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.filtersbar label {
    opacity: 0.3;
    color: #000000;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 300;
    margin-right: 15px;
}

.filtersbar select {
    color: #000000;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    outline: none;
}

.questionnairetable {
    padding-top: 50px;
}

.questionnairetable-head {
    margin-bottom: 10px;
}

.questionnairetable-head,
.questionnairetable-item {
    display: grid;
    grid-template-columns: 0.3fr 2fr 1fr 1fr 1fr 1fr 0.3fr 0.3fr 0.3fr 0.3fr;
    padding-left: 20px;
    padding-right: 20px;
}

.questionnairetable-head>div,
.questionnairetable-head>div>span {
    opacity: 0.4;
    color: #000000;
    font-family: "Open Sans";
    font-size: 10px;
    font-weight: 600;
}

.questionnairetable-item-name .ds-1 {
    display: flex;
    align-items: center;
}

.questionnairetable-head>div:nth-child(1),
.questionnairetable-item>div:nth-child(1) {
    width: 30px;
}

.questionnairetable-item-edit a {
    float: right;
}

.questionnairetable-item {
    height: 80px;
    border-radius: 10px;
    align-items: center;
}

.questionnairetable-item:hover {
    border: 1px solid rgba(128, 128, 128, 0.505);
    /* transition: .4s; */
}

.questionnairetable-item:nth-child(even) {
    background-color: #f8f8f8;
}

.questionnairetable-item div span,
.questionnairetable-item div {
    color: #000000;
    font-family: 'Open Sans';
    font-size: 15px;
    margin-right:  5px;
}

.questionnairetable-item input[type="checkbox"] {
    /* width: 24px;
    height: 24px;
    max-width: 24px;
    min-width: 24px;
    max-height: 24px;
    min-height: 24px; */
    cursor: pointer;
}

.questionnairetable-item .icon button {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
}

.questionnairetable-item-name {
    font-family: 'Arial'!important;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.qi-more-users {
    color: rgba(0, 0, 0, 0.3);
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 300;
}

.questionnairetable-item-name .questionnaire-status {
    width: 11px;
    height: 11px;
    min-width: 11px;
    max-width: 11px;
    max-height: 11px;
    min-height: 11px;
    display: block;
    margin-right: 7px;
    background-color: grey;
    border-radius: 50%;
}

.questionnairetable-item-name .questionnaire-status.active {
    background-color: #9dbc47;
}

.questionnairetable-item-name .questionnaire-status.unactive {
    background-color: #ffb636;
}

.questionnairetable-item-name .questionnaire-status.finished {
    background-color: #eb3131;
}

.questionnaires-footer {
    height: 133px;
    background-color: #f5f5f5;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.questionnaires-footer .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.questionnaires-footer .content-wrapper {
    max-width: 1295px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.questionnaires-footer .button-add button {
    width: 235px;
    height: 53px;
    box-shadow: 0 0 32px rgba(157, 188, 71, 0.36);
    border-radius: 12px;
    background-color: #9dbc47;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.45px;
}

.questionnaires-footer .button-add button img {
    margin-right: 5px;
    margin-top: 3px;
}

.questionnaires-footer .icon-delete button {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background-color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
}

.questionnairetable-items {
    padding-top: 0!important;
}

.questionnairetable input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    max-height: 25px;
    min-height: 25px;
    max-width: 25px;
    min-width: 25px;
    border: 1px solid #b1b1b1;
    background-color: white;
    position: relative;
}

.questionnairetable input[type="checkbox"]:checked {
    /* background-color: rgba(157, 188, 71, 0.2); */
    border: 1px solid #9dbc47;
    background-color: rgba(157, 188, 71, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.questionnairetable input[type="checkbox"]:checked::after {
    content: "✔";
    width: 13px;
    height: 13px;
    color: #9dbc47;
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 3px;
}

.questionnairetable-item>div:nth-child(1) {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* end of DASHBOARD PAGE */

/* ANSWERS PAGE */

.answers-wrapper {
    padding-top: 50px;
    width: 100%;
    padding-bottom: 250px;
}

.answers-wrapper .content-wrapper {
    max-width: 1295px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.answers-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.answers-head .answers-count {
    opacity: 0.5;
    color: #000000;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
}

.answers-wrapper .content-wrapper .ah-left h3 {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.ah-right button {
    width: 211px;
    height: 53px;
    box-shadow: 0 0 32px rgba(157, 188, 71, 0.36);
    border-radius: 12px;
    background-color: #9dbc47;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.ah-right button img {
    margin-right: 10px;
}

.filtersbar {
    margin-bottom: 30px;
    margin-top: 40px;
}

.answerstable {
    padding-top: 50px;
}

.answerstable-items {
    padding-top: 0;
}

.answerstable-head {
    margin-bottom: 10px;
}

.answerstable-head,
.answerstable-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr 0.3fr;
    padding-left: 20px;
    padding-right: 20px;
}

.answerstable-head>div {
    opacity: 0.4;
    color: #000000;
    font-family: "Open Sans";
    font-size: 10px;
    font-weight: 600;
}

.answerstable-item-edit a {
    float: right;
}

.answerstable-item {
    height: 80px;
    border-radius: 10px;
    align-items: center;
}

.answerstable-item:nth-child(odd) {
    background-color: #f8f8f8;
}

.answerstable-item div {
    color: #000000;
    font-family: 'Open Sans';
    font-size: 15px;
}

.answerstable-item .icon button {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
}

.answerstable-item-name {
    font-family: 'Arial'!important;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.qi-more-users {
    color: rgba(0, 0, 0, 0.3);
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 300;
}

.answerstable-item-name .questionnaire-status {
    width: 11px;
    height: 11px;
    display: block;
    margin-right: 7px;
    background-color: grey;
    border-radius: 50%;
}

.answerstable-item-name .questionnaire-status.active {
    background-color: #9dbc47;
}

.answerstable-item-name .questionnaire-status.unactive {
    background-color: #ffb636;
}

.answerstable-item-name .questionnaire-status.finished {
    background-color: rgb(209, 51, 51)!important;
}

.answerstable .view-button button{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.06);
    border: none;
    display: block;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.answer-user-name {
    font-weight: bold;
    font-family: 'Arial'!important;
}

.popup-answer-content-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.48);
    /* display: none; */
    padding-left: 250px;
    transform: translateX(-100%);
    transition: .5s;
}

.white-apl {
    background-color: white;
    height: 100vh;
    width: 1036px;
    position: absolute;
    left: 0;
}

.popup-answer-content {
    width: 786px;
    /* height: 676px; */
    /* box-shadow: 0 23px 64px rgba(0, 0, 0, 0.08); */
    border-radius: 15px;
    background-color: #ffffff;
    position: relative;
}

.popup-answer-content .popup-head {
    padding-top: 80px;
    padding-left: 65px;
    padding-right: 65px;
}

.popup-answer-content .popup-head h3 {
    color: #000000;
    font-family: WWF;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-answer-content .popup-head div span {
    opacity: 0.5;
    color: #000000;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
}

.popup-answer-content .popup-footer {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    height: 140px;
    padding: 40px 65px;
    border-top: 1px solid rgba(128, 128, 128, 0.379);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-answer-close {
    position: absolute;
    top: 75px;
    right: 60px;
    cursor: pointer;
}

.popup-answer-content .popup-footer .rating {
    color: black;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
}

.popup-answer-content .popup-footer .rating span {
    color: #9dbc47;
}

.popup-answer-content .rate-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.popup-answer-content .rate-content span {
    color: black;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
    margin-right: 25px;
}

.popup-answer-content .rate-content button {
    border-radius: 12px;
    background-color: #9dbc4717;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    outline: none;
    border: none;
}

.popup-answer-content .rate-content .rate-meh {
    background-color: #fb8c3a17;
}

.popup-answer-content .rate-content .rate-sad {
    background-color: #f6603f17;
}

.questionnaire-sim {
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 65px;
    padding-right: 65px;
    height: 340px;
    overflow-y: scroll;
}

.questionnaire-sim-head {
    padding-left: 65px;
    margin-top: 10px;
    opacity: 0.25;
    color: #000000;
    font-family: "Arial";
    font-size: 13px;
    font-weight: 700;
}

.questionnaire-sim .question-item {
    margin-bottom: 20px;
}

.questionnaire-sim .question-item .question {
    color: #000000;
    font-family: "Arial";
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
 
.questionnaire-sim .question-item .answer {
    color: #000000;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
}

.questionnaire-sim .question-item .answer a {
    color: #000000;
    font-size: 18px;
}
/* end of ANSWERS PAGE */

/* ADDITIONAL */

.rating span.minus {
    color: rgb(212, 56, 56)!important;
}

/* IFRAME POPUP */

.iframe-popup-wrapper {
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color:rgba(0, 0, 0, 0.491);
    position: fixed;
    top: 0;
}

.iframe-popup {
    max-width: 786px;
    height: 593px;
    box-shadow: 0 23px 64px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 75px;
    background-color: white;
    position: relative;
}

.iframe-popup h3 {
    color: #000000;
    font-family: WWF;
    font-size: 48px;
    font-weight: 400;
}

.iframe-popup p {
    opacity: 0.5;
    color: #000000;
    font-family: WWF;
    font-size: 24px;
}

.iframe-popup .iframe-text {
    border: 1px dashed #d0d0d0;
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 25px;
    margin-top: 25px;
    min-height: 350px;
    color: #000000;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: italic;
    word-break: break-all;
}

.iframe-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}


.rate-plus.active,
.rate-meh.active,
.rate-sad.active {
    opacity: 0.3;
}

.rate-plus.unactive,
.rate-meh.unactive,
.rate-sad.unactive {
    opacity: 1;
    pointer-events: none;
}

.dashboard-show-wrapper {
    position: relative;
}

.dashboard-show-popup {
    position: absolute;
    bottom: 0;
    width: 250px;
    padding: 20px;
    background-color: white;
    transform: translateY(100%);
    z-index: 3;
    margin-left: -20px;
    border: 0.5px solid rgba(128, 128, 128, 0.167);
    border-radius: 4px;
    display: none;
}

.dss-popup-checkbox-wrapper input {
    min-width: 20px;
    max-width: 20px;
    width: 20px;
    min-height: 20px;
    max-height: 20px;
    height: 20px;
    cursor: pointer;
}

.dss-popup-checkbox-wrapper label {
    opacity: 1;
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
}

.dss-popup-checkbox-wrapper {
    margin-bottom: 5px;
}

.permissions-popup-wrapper {
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;

}

.permissions-popup {
    padding: 60px;
    background-color: white;
    box-shadow: 0 23px 64px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    position: fixed;
    width: 800px;
}

.permissions-popup h3 {
    color: #000000;
    font-family: WWF;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 55px;
}

.permissions-popup p {
    opacity: 0.5;
    color: #000000;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.permissions-popup p img {
    margin-left: 5px;
}

.permissions-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.permissions-popup .up-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 20px;
    padding-right: 40px;
    border-radius: 10px;
    background-color: white;
    height: 60px;
    align-items: center;
}

.permissions-popup .up-item:nth-child(odd) {
    background-color: #f8f8f8;
}

.permissions-popup .up-item div {
    font-family: "Open Sans";
    font-weight: 300;
    font-size: 13px;   
}

.permissions-popup .up-item div p {
    color: #000000;
    font-family: "Arial";
    opacity: 1;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: unset;
}

.permissions-popup .up-item>div:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.permissions-popup .up-item>div:nth-child(1)>div {
    margin-right: 10px;
    height: 25px;
}

.permissions-popup input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    max-height: 25px;
    min-height: 25px;
    max-width: 25px;
    min-width: 25px;
    border: 1px solid #b1b1b1;
    background-color: white;
    position: relative;
    cursor: pointer;
}

.permissions-popup input[type="checkbox"]:checked {
    /* background-color: rgba(157, 188, 71, 0.2); */
    border: 1px solid #9dbc47;
    background-color: rgba(157, 188, 71, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.permissions-popup input[type="checkbox"]:checked::after {
    content: "✔";
    width: 13px;
    height: 13px;
    color: #9dbc47;
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 3px;
}

.permissions-popup .up-item>div:nth-child(3) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.permissions-popup>div span {
    width: 11px;
    height: 11px;
    min-width: 11px;
    max-width: 11px;
    max-height: 11px;
    min-height: 11px;
    display: block;
    margin-right: 7px;
    background-color: grey;
    border-radius: 50%;
}

.permissions-popup .users-with-permissions {
    height: 200px;
    overflow-y: scroll;
}

.permissions-popup .submit-button {
    text-align: center;

}

.permissions-popup .submit-button button {
    width: 235px;
    height: 53px;
    box-shadow: 0 0 32px rgba(157, 188, 71, 0.36);
    border-radius: 12px;
    background-color: #9dbc47;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.45px;
    margin-left: auto;
    margin-right: auto;
}

.notes-wrapper {
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 65px;
    padding-right: 65px;
}

.add-note-button button {
    border: 1px dotted grey;    
    width: 100%;
    height: 50px;
    font-family: 'Open Sans';
    font-size: 18px;
    background-color: rgba(128, 128, 128, 0.081);
    cursor: pointer;
}

.note-popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
}

.note-popup {
    background-color: white;
    padding: 60px;
    border-radius: 25px;
}

.note-popup h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.note-popup .answer-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 720px;
    margin-bottom: 25px;
}

.note-popup .answer-info span {
    opacity: 0.5;
    color: #000000;
    font-family: WWF;
    font-size: 24px;
    font-weight: 400;
    margin-right: 20px;
}

.note-popup hr {
    background-color: grey;
}

.note-popup .popup-input {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
}

.note-popup .popup-input label {
    color: #000000;
    font-family: "Arial";
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.note-popup .popup-input textarea {
    resize: none;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    height: 150px;
    width: 100%;
    outline: none;
}

/* ADDITIONAL ANSWERS */

.add-additional-answers-wrapper {
    text-align: center;
}
.add-additional-answers-wrapper button {
    height: 45px;
    border-radius: 12px;
    width: 220px;
    background-color: #9dbc45;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial;
    font-weight: bold;
}

.add-additional-answers-wrapper .questionnaire-question-item-line {
    text-align: left;
}

/* preview agreements */

.preview .preview-title {
    margin-bottom: 15px;
}

.preview-content {
    border: 1px solid #e5e5e5;
    padding: 20px;
    pointer-events: none;
}

.preview-content a {
    color: black;
}

.dependent-box {
    margin-bottom: 15px;
}

.dependent-box input[type="checkbox"] {
    min-width: 25px;
    max-width: 25px;
    min-height: 25px;
    max-height: 25px;
    margin-right: 5px;
}

.dependent-box .is_dependent-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.dependent-box label {
    font-size: 16px;
    font-family: 'Open Sans';
}

.dependent-box label input {
    max-width: 50px;
    height: 30px;
    font-size: 16px;
    font-family: 'Open Sans';
    text-align: center;
}

.agr-content {
    padding-top: 10px;
    width: 100%;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
    resize: vertical;
}

.category-chooser {
    width: 100%;
    height: 64px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Open Sans";
    margin-bottom: 20px;
    outline-color: #9dbc47;
}