:root{
    --serial-color: #008eff;
    --serial-color-hover: #067edc;
    --valid-color : #28a60c;
    --valid-color-hover : #098c09;
    --warning-color : #ff9100;
    --warning-color-hover : #c57408;
    --error-color : #d50707;
    --error-color-hover : #be0505;

    --main-button-color : #5046e4;
    --main-button-color-hover : #3930bd;
    --secondary-button-color : #6c2fff;
    --secondary-button-color-hover : #5728cc;

    --event-accepted : rgb(33, 150, 243);
    --event-waiting : rgb(255, 152, 0);
    --event-canceled : rgb(249, 62, 48);

    --event-accepted-light : #cfe8ff;
    --event-waiting-light : #ffe7cd;
    --event-canceled-light : #ffcdc9;

    --light-black : #4f4f4f;
}


@font-face {
    font-family: 'Gotham SSM';
    src: url('../fonts/gothamcondssm_medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



*{
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Satoshi', sans-serif;*/
    /*font-family: 'Gotham SSM', sans-serif;*/
    /*font-family: 'Inter', sans-serif;*/
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

a{
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

b{
    font-weight: 500;
}


button{
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 1em;
}


table{
    border-collapse: collapse;
}



h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}






/* Scrollbar
-----------------------------------------------------------------------*/

::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}



::-webkit-scrollbar-thumb {
    background: radial-gradient(#ffffff, #9a9a9a);
    height: 1em;
    border-radius: 1em;
}









/* LOGO
-----------------------------------------------------------------------*/


.application_logo{
    width: 5em;
    max-width: 100%;
}


.main_logo{
    width: 100%;
    stroke: url(#mainLogoGradient);
    fill: url(#mainLogoGradient);
}








/* Icons
-----------------------------------------------------------------------*/

.app_icon{
    width: 1em;
    aspect-ratio: 1/1;
}









/* Wrapper
-----------------------------------------------------------------------*/

#wrapper{
    /*background: url("../images/utils/background.webp") no-repeat fixed center;*/
    background: radial-gradient(circle at 64% 46%, rgb(208 235 255) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 232, 232) 100%) fixed;
    background-size: cover;
    font-size: 0.9em;
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}







#page_content{
    padding-top: 2rem;
    min-height: calc(100lvh - 10em);
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 2250px;
    width: 100%;
}


#page_content .section_full{
    width: 100%;
}












/*-----------------------------------------------------------------------
ANY ELEMENT TO DISPLAY
-----------------------------------------------------------------------*/

.any{
    margin: auto;
}








/*-----------------------------------------------------------------------
ERROR/SUCCESS
-----------------------------------------------------------------------*/

.error{
    color: var(--error-color);
}

.success{
    color: var(--valid-color);
}




/*Context info
-----------------------------------------------------------------------*/

.context_info{
    position: relative;
    width: max-content;
    max-width: 80vw;
    display: inline-block;
    cursor: context-menu;
    padding: 0 0.5em;
    font-weight: 500;
}

.context_info .label{
    width: 1.5em;
    height: 1.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #919191;
    color: white;
    font-size: 0.7em;
}

.context_info .content{
    position: absolute;
    z-index: 5;
    top: 100%;
    right: 100%;
    width: 25em;
    max-width: 90vw;
    border-radius: 0.25em;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px silver;
    backdrop-filter: blur(6px);
    display: none;
    padding: 1em;
    font-size: 0.9rem;
    font-weight: 400;
}

.context_info .content.visible{
    display: block;
}





/*Context menu
-----------------------------------------------------------------------*/

.context_menu{
    position: relative;
    width: max-content;
}


.context_menu .open_menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 2em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #f6f6f6;
    padding: 0.35em;
    cursor: pointer;
}

.context_menu .open_menu:hover{
    background: #f1f1f1;
}


.context_menu .open_menu .point{
    width: 3px;
    aspect-ratio: 1 / 1;
    fill: #616161;
    stroke: none;
}


.context_menu .menu{
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: max-content;
    max-width: 70vw;
    position: absolute;
    z-index: 11;
    top: 100%;
    right: 0;
    border-radius: 0.25em;
    background: white;
    box-shadow: 0 0 3px silver;
}

.context_menu .menu.open{
    display: flex;
}


.context_menu .menu .action{
    width: 100%;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
    cursor: pointer;
}

.context_menu .menu .action:not(:first-of-type){
    border-top: 1px solid #d2d2d2;
}


.context_menu .menu .action:hover{
    background: #f1f1f1;
}






/*Page
-----------------------------------------------------------------------*/

#page_title{
    font-size: 2em;
    margin: 1rem 2rem;
}


.light_text{
    color: #cccccc;
}





/* Buttons
-----------------------------------------------------------------------*/

:is(button, a).action_button{
    padding: 0.5em 1em;
    border-radius: 0.25em;
    font-size: 0.9em;
    display: block;
    background: var(--main-button-color);
    color: white;
    transition: 0.25s background-color;
    box-shadow: 0 0 3px #bebebe;
}
:is(button, a).action_button:hover{
    background: var(--main-button-color-hover);
}

:is(button, a).cancel_button{
    padding: 0.5em 1em;
    border-radius: 0.25em;
    font-size: 0.9em;
    display: block;
    background: var(--error-color);
    color: white;
    transition: 0.25s background-color;
    box-shadow: 0 0 3px #bebebe;
}

:is(button, a).cancel_button:hover{
    background: var(--error-color-hover);
}

:is(button, a):is(.action_button, .cancel_button){
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

:is(button, a):is(.action_button, .cancel_button) .app_icon{
    fill: white;
}







/*-------------------------------------------------------------------------
 DYNAMIC CONTENT COMPONENT
-----------------------------------------------------------------------*/


.dynamic_content_component{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dynamic_content_component>.title{
    font-size: 1.25em;
    margin-bottom: 1em;
    align-self: start;
}


.dynamic_content_component .selection_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: max-content;
    max-width: 100%;
    padding: 0.25em;
    gap: 0.5em 0;
    background: #f3f3f3;
    position: relative;
    border-radius: 0.5em;
}

.dynamic_content_component .selection_container .detail_selection{
    min-width: max-content;
    padding: 0.5em 1em;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    color: #969696;
}

.dynamic_content_component .selection_container .detail_selection.selected{
    border-radius: 0.5em;
    background: white;
    box-shadow: 1px 2px 3px #e7e7e7;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


.dynamic_content_component .component_container{
    flex-grow: 1;
    height: 100%;
    width: 95%;
}







/*-------------------------------------------------------------------------
INPUT
--------------------------------------------------------------------------*/

input:where(:not([type])),
input[type='email'], [type='url'],
input[type='password'],
input[type='number'],
input[type='date'],
input[type='datetime-local'],
input[type='month'],
input[type='search'],
input[type='tel'],
input[type='time'],
input[type='week'],
input[multiple],
textarea,
select,
input[type='text']{
    padding: 0.25em 0.5em;
    border: none;
    border-radius: 0.25em;
    box-shadow: 0 0 2px #595959;
    font-size: 1em;
    outline: none;
}



input[type=number].without_spin::-webkit-inner-spin-button,
input[type=number].without_spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number].without_spin {
    -moz-appearance: textfield;
}


.search_container {
    position: relative;
}

.search_container input{
    width: 100%;
    padding-left: 1.5em !important;
}

.search_container .magnifying-glass{
    position: absolute;
    top: 50%;
    left: 0.25em;
    transform: translateY(-50%);
    fill: transparent;
    stroke: #757575;
    stroke-width: 0.2em;
    stroke-linecap: round;
}



/*-------------------------------------------------------------------------
EDIT FIELD
--------------------------------------------------------------------------*/


.edit_field_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 1em;
}


.edit_field_container :is(label, .label){
    color: #787878;
    font-size: 0.9em;
}


.edit_field_container .field_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2em;
}

.edit_field_container .field_row.resp{
    flex-direction: column;
}


.edit_field_container .field_column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}


.edit_field_container .edit_field{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0.25em 0;
    width: 100%;
}





.edit_field_container .edit_field :is(input, select){
    padding: 0.25em 0.5em;
    background: white;
    border: none;
    border-radius: 0.25em;
    box-shadow: 0 0 1px 1px #e4e4e4;
    width: 100%;
    max-width: 20em;
}



.edit_field_container .error{
    font-size: 0.9em;
    color: var(--error-color);
    max-width: 20em;
}



.edit_field_container .edit_actions{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.edit_field_container .edit_actions button{
    display: flex;
    align-items: center;
    justify-content: center;
}


.edit_field_container .edit_actions .app_icon{
    padding: 0.25em;
    width: 1.5em;
    cursor: pointer;
}


.edit_field_container .edit_actions .app_icon:is(.check, .cross){
    width: 1.2em;
}


.edit_field_container .edit_actions .app_icon.pencil{
    fill: #9a9a9a;
}

.edit_field_container .edit_actions .app_icon.check{
    background: var(--valid-color);
    fill: white;
    border-radius: 0.25em;
}

.edit_field_container .edit_actions .app_icon.cross{
    background: var(--error-color);
    fill: white;
    border-radius: 0.25em;
}





/*-------------------------------------------------------------------------
PASSWORD FIELD
--------------------------------------------------------------------------*/


.password_field{
    position: relative;
    width: max-content;
}

.password_field input[type='password']{
    padding-right: 2em !important;
}

.password_field .show_password{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1em;
    width: 1em;
    fill: #a0a0a0;
    cursor: pointer;
}

.password_field .show_password.active{
    fill: black;
}







/*-------------------------------------------------------------------------
LISTES DEROULANTES
--------------------------------------------------------------------------*/


.list_deployer{
    width: 100%;
}

.list_deployer .list_deployer{
    border-left: 1px solid #ececec;
}


.list_deployer>.deployer{
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    position: relative;
    padding: 0.25em;
}


.list_deployer>.deployer>i{
    width: 1em;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    color: #a9a9a9;
}



.list_deployer>.deployer>i.fa-angle-up{
    display: block;
}

.list_deployer>.deployer.open>i.fa-angle-up{
    display: none;
}


.list_deployer>.deployer>i.fa-angle-down{
    display: none;
}

.list_deployer>.deployer.open>i.fa-angle-down{
    display: block;
}



.list_deployer .sub_deployer{
    border-bottom: 1px solid #f3f3f3;
}



.list_deployer .to_deploy{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
    overflow: hidden;
    transition: 0.1s max-height linear;
    width: 100%;
}

.list_deployer .to_deploy:not(.open){
    max-height: 0;
}

.list_deployer .to_deploy.open{
    max-height: fit-content;
}



.list_deployer .to_deploy.open{
    padding: 0.25em 0;
}


.list_deployer .to_deploy .list_deployer{
    margin-left: 1.5em;
    margin-right: 1em;
    width: calc(100% - 2.5em);
}










/* FIXED BACKGROUND
-----------------------------------------------------------------------*/

.fixed_background{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.fixed_background .fixed_container{
    width: 90%;
    max-width: 60em;
}

.fixed_background .fixed_container.closing_cross_container{
    padding: 3em 2em 2em;
}



.fixed_background .fixed_container .box{
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5em;
}








/* Close element
-----------------------------------------------------------------------*/

.closing_cross_container{
    position: relative;
}

.closing_cross{
    position: absolute;
    top:0.5em;
    right:0.5em;
    width: 2em;
    aspect-ratio: 1/1;
    cursor: pointer;
    padding: 0.5em;
}


.closing_cross>i{
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    border-radius: 10em;
}

.closing_cross>i:first-of-type{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%) rotate(45deg);
}


.closing_cross>i:last-of-type{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}









/* Lazy component
-----------------------------------------------------------------------*/

.lazy_component_container{
    position: relative;
    min-width: 100%;
    min-height: inherit;
}









/* Loader Spinner
-----------------------------------------------------------------------*/


.loader_container{
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}



.loader{
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.loader.fixed{
    position: fixed;
}

.loader .spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#474bff 94%,#0000) top/9px 9px no-repeat,
    conic-gradient(#0000 30%,#474bff);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 9px),#000 0);
    animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}















/*OPTION CARD
-----------------------------------------------------------------------*/

.option_card{
    padding: 0;
    border-radius: 1em;
    border: 1px solid #d3cfcf;
    width: 100%;
}


.option_card>header{
    width: 100%;
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid #dedede;
    background: #f9f9f9;
    border-radius: 1em 1em 0 0;
}


.option_card>main{
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.option_card>main>.option{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 2em;
}

















/*Employee Card
-----------------------------------------------------------------------*/

.employee_card{
    border-radius: 50%;
    display: flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    position: relative;
}

.employee_card .main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}


.employee_card img{
    width: 2.25em;
    aspect-ratio: 1/1;
    border-radius:50%
}


.employee_card .employee_name{
    font-size: 0.8em;
    text-align: left;
    margin-left: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.employee_card.restricted .main::before{
    content: 'Accès restreint';
    font-size: 0.8em;
    font-weight: bold;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}



/*Rounded Card
----------------------------------------------------------------------*/

.rounded_card{
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 0 5px silver;
    padding: 2em;
}


.rounded_card>.title{
    font-weight: 500;
    font-size: 1.1em;
    margin-right: auto;
    margin-bottom: 1em;
}












































/*----------------------------------------------------------------------
SELECTION WITH CUSTOM CHECKBOX
----------------------------------------------------------------------*/


.selecting_card{
    position: relative;
    cursor: pointer;
    padding: 0.5em;
}


.selection_label{
    cursor: pointer;
    padding: 0.5em;
}


.selection_checkbox{
    width: 1em;
    min-width: 1em;
    aspect-ratio: 1/1;
    box-shadow: 0 0 2px #3f3f3f;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
}

.selecting_card .selection_checkbox{
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}


.selection_checkbox.selected{
    background-color: #0b57d0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.selection_checkbox>i{
    display: none;
}

.selection_checkbox.selected>i{
    display: block;
    color: white;
    font-size: 0.7em;
}







/*CHECKMARK CONTAINER
----------------------------------------------------------------------*/


.checkmark_container input[type="checkbox"] {
    display: none;
}

.checkmark_container .checkmark{
    width: 1em;
    aspect-ratio: 1/1;
    box-shadow: 0 0 2px #3f3f3f;
    border-radius: 0.15em;
    background-color: white;
    cursor: pointer;
}

.checkmark_container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #0b57d0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.checkmark_container .checkmark>i {
    display: none;
}


.checkmark_container input[type="checkbox"]:checked ~ .checkmark>i {
    display: block;
    color: white;
    font-size: 0.7em;
}









/*Rounded Container
----------------------------------------------------------------------*/


.full_rounded_container{
    padding: 0.25em 1em;
    border-radius: 0.5em;
    background-color: white;
    box-shadow: 0 0 3px #989898;
}






/*Skills
----------------------------------------------------------------------*/


.skill{
    padding: 0.25em 1em;
    background: #ffffff;
    border-radius: 0.4em;
    position: relative;
    font-size: 0.9em;
    box-shadow: 0 0 3px #838383;
    width: max-content;
}


.skill .skill_macaron{
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    stroke: transparent;
    fill: #ffa400;
    transform: translate(40%, -40%);
}








/*Schedule
----------------------------------------------------------------------*/

.schedule{
    font-size: 0.9em;
    margin-top: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.schedule i{
    margin-right: 0.25em;
}






/*Missions status
----------------------------------------------------------------------*/

.status{
    font-size: 0.8em;
    margin: 0.5em 0;
    color: white;
    padding: 0.25em 1em;
    width: max-content;
    border-radius: 0.25em;
    text-align: center;
    background: #616161;
}

.status.accepted{
    background-color: rgba(28, 188, 6, 0.17);
    color: #15AA00FF;
}

.status.waiting{
    background-color: #FF830038;
    color: #ff8300;
}

.status.deleted{
    background-color: #ffc0c0;
    color: #d10000;
}

.status.employee{
    background-color: rgba(101, 0, 248, 0.32);
    color: #6500f8;
}

.status.agency{
    background-color: rgba(255, 145, 0, 0.33);
    color: #ff9100;
}

.status.enterprise{
    background-color: rgba(0, 79, 248, 0.32);
    color: #004ff8;
}







/*----------------------------------------------------------------------
 USER ROLES
----------------------------------------------------------------------*/


.user_role{
    padding: 0.25em 0.75em;
    border-radius: 0.5em;
    background: #3f3f3f;
    font-size: 80%;
    color: #ffffff;
    display: inline-block;
    width: max-content;
}


.user_role.main_admin{
    background: #e1d5ff;
    color: #7e4bff;
}

.user_role.admin{
    background: #ffe8c5;
    color: #ff9900;
}

.user_role.collaborator{
    background: #4caf503d;
    color: #4CAF50;
}







.badge{
    width: 1.25em;
    height: 1.25em;
    font-size: 0.8em;
    border-radius: 50%;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.badge.error{
    background: var(--error-color);
}









/*Selection removing
----------------------------------------------------------------------*/


.remove_selection{
    position: absolute;
    top: -0.5em;
    right: 0;
    width: 1.5em;
    height: 1.5em;
    cursor: pointer;
    font-weight: bold;
}

.trash_button{
    fill: #e30000;
    background: #ffeaea;
    width: 100%;
    height: 100%;
    border-radius: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.trash_button:hover{
    background: #ffdcdc;
}










/*---------------------------------------------------------------------------------------------------------------------
 AUTHORIZATION GROUPS LIST
---------------------------------------------------------------------------------------------------------------------*/

.auth_group_list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 25em;
}


.auth_group_list .auth_group_list{
    margin-left: 1.5em;
    border-left: 1px solid silver;
    width: calc(100% - 1.5em);
    padding: 0.5em 0;
    border-radius: 0.5em;
}


.auth_group_list .group_header{
    padding: 0.5em 0 0.5em 0.5em;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.auth_group_list .group_header .group_name{
    font-size: 1.1em;
    margin: 0;
}



.auth_group_list .group_header .group_options{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    margin-left: 1.5em;
    padding: 0.25em;
}












/*----------------------------------------------------------------------------------------------------------------------
 FOOTER
----------------------------------------------------------------------------------------------------------------------*/

#page_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em 1em;
}












@media screen and (min-width: 600px) {

    .edit_field_container .field_row.resp{
        flex-direction: row;
    }

}






@media screen and (min-width: 800px) {

    #wrapper{
        font-size: 0.9em;
        padding-left: 3em;
        padding-right: 3em;
        padding-bottom: 0;
    }


}





@media screen and (min-width: 1000px) {

    #wrapper{
        font-size: 1em;
    }

}



