.base-style {
    font-weight: 400;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
}

.standard-style {
    background-color: #3C3DA7;
    border: none;
    color: #fff
}

.white-style {
    background-color: #fff;
    color: #3C3DA7;
    border: 1px solid #3C3DA7
}

.big-style {
    font-size: 18px
}

.small-style {
    font-size: 14px
}

.button-link {
    text-decoration: none
}

.text-input-field {
    font-size: 14px;
    font-weight: 400;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: left;
    color: #000;
}

.text-input-field:focus {
    outline: none;
    box-shadow: 0 0 5px #376cdd;
    border: 2px solid #376cdd
}

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    border-radius: 10px;
    border: 1px solid gray;
    bottom: 12px;
    left: -50px;
    min-width: 400px;
    margin-bottom: 50px
}

.ol-popup:after,.ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px
}

.ol-popup-closer:after {
    content: "✖"
}

.flexInputContainer {
    margin: 0px;
    padding: 0px;
    background-color: rgba(60,61,167,0.2);
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block
}

.flexInput {
    margin-top: 5px;
    margin-bottom: 5px;
    display: block
}

body {
    padding-bottom: 50px;
    color: var(--global-text-color);
    background-color: var(--global-bg-color);
    font-family: sans-serif
}

.container {
    max-width: 1000px
}

.progress-bar-container {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 8px;
}

.progress-bar-item {
    flex: 1;
    height: 40px;
    background-color: #fff;
    border-top: 1px solid gray;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #3C3DA7
}

.progress-bar-item.active {
    color: white;
    font-weight: 900;
    color: #2c2f7c;
}

.progress-bar-item:hover {
    color: #376cdd
}

.form-container {
    margin-bottom: 30px;
    margin: auto;
    width: 60%;
    min-width: 650px;
    position: relative;
}

.form-group {
    border-radius: 8px;

}

.form {
    padding: 12px;
}

.question {
    padding: 24px;
    border-radius: 8px;
    background-color: #eaeaea;
    margin-bottom: 12px;
    border: 1px solid #000;
    position: relative;
}

.question-label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    color: #3C3DA7;
    display: inline-block
}

textarea {
    width: 100%;
    resize: none;
    height: 42px;
}

.question-mark {
    margin-left: 5px;
    cursor: help;
    font-size: 16px;
    color: #000000;
}

.deleteButton {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(185 12 12);
    padding-left: 12px;
    padding-right: 12px;
}

.bottem-buttons {
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
    border-top: 1px solid gray;
}

.upload-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.invalid {
    border: 1px solid red;
}

.error {
    background-color: rgb(247, 230, 230);
    border-radius: 3px;
    color: rgb(255, 255, 255);
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    min-height: 28px;
    outline: 0px;
    padding: 5px;
}

.error-message {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 14px;
    line-height: 20px;
    color: rgb(175, 4, 4);
    font-family: sans-serif;
}


.clear-button-container {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    z-index: 999;
}

.clear-button-container button {
    float: none;
    display: inline-block; 
}