* {
    margin: 0;
    padding: 0vw;
}

html {
    overflow-y: scroll !important;
}

.container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3dvw;
    min-height: 100vh;
}

form {
    position: relative;
    max-width: 90vw;
}

.section {
    position: relative;
    width: 50vw;
    height: max-content;
    z-index: 99;
    margin-bottom: 3vh;
}

.title {
    color: #BBB;
    margin-bottom: 2vh;
}

.mult_value_input {
    margin-bottom: 1vw;
}

.input_area {
    padding: 1vw;
    border-radius: 1dvw;
    background-color: #f5f5f5;
    border: 0.3vw solid black;
}

.input_field {
    margin-bottom: 3vh;
}

.input_field .upload_image_label {
    position: relative;
    margin-left: 0.1vw;
    color: #0a1d26;
    font-weight: bold;
}

.input_field .hidden {
    display: none !important;
}

.input_field .content_image {
    position: relative;
    transform: translate(-50%, 0%);
    left: 50%;
    margin-top: 2vh;
    padding: 0.1vw;
    border-radius: 1dvw;
    border: 3px #0a1d26 solid;
    max-height: 60vh;
}

.accordion-body .input_field_post_inner {
    margin-top: 2vw !important;
}

.drop_down_tag {
    font-weight: bold;
    color: white;
    margin-left: 1vw;
    padding: 0.3vw;
    padding-left: 0.9vw;
    padding-right: 0.9vw;
    border-radius: 9999999999vw;
    font-weight: 500;
}

.accordion-header button{
    font-weight: bold;
}

.form-label {
    font-size: 1.3vw;
    font-weight: bold;
    margin-left: 0.1vw;
}

.form-text {
    position: relative;
    display: flex;
    left: unset;
    float: unset;
    align-items: flex-end;
    margin-top: 1vh;
    justify-content: flex-end;
    font-weight: 500;
}

.form-text span{
    font-weight: bold;
    color: green;
}

.modal_success_text {
    color: #198754;
    font-weight: bold;
}

.modal-footer {
    justify-content: center;
}

.modal-footer button {
    width: 13vw;
}

textarea {
    resize: none;
}

.accordion-button {
    position: relative;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #0a1d26;
    color: white;
}

.accordion-button::after {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" class="bi bi-caret-down-fill color_fill"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
    right: 0;
    margin-right: 2vw;
}

.backend_main.rtl .accordion-button::after {
    right: unset;
    margin-right: unset;
    left: 0;
    margin-left: 2vw;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-caret-down-fill color_fill"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
}

.form_submit_button {
    width: 10vw;
    font-weight: bold;
    color: white;
    transition: all 0.2s ease-in-out;
    border: solid #005928;
    margin-top: 2vw;
    background-color: #007f39 !important;
}

.form_submit_button:hover {
    color: white !important;
    background-color: #005928 !important;
    border: solid #005928 !important;
}

.progress {
    height: 2.5vh;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.progress-bar {
    font-size: 1.5vh;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#progressContainer {
    display: none;
}


/* Arabic Support */
.backend_main.rtl .input_field .content_image {
    transform: translate(50%, 0%);
    right: 50%;
}

.backend_main.rtl .drop_down_tag{
    margin-left: unset;
    margin-right: 1vw;
}