:root {
    --text-shadow: 0 0 2px rgb(51, 51, 51);
    --box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.4);
    --btn-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
    --header-footer-height: 7.5%;
    --header-footer-background-color: rgb(230, 230, 230);
    --main-color: rgb(0, 75, 0);
    --text-color: rgb(55, 55, 55);
}

*{
    box-sizing: border-box;
    margin: 0;
	padding: 0;
	font: inherit;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

html, body{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.page-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: system-ui, Arial, Helvetica, sans-serif;
    background: linear-gradient(rgb(255, 255, 255), rgb(151, 168, 157), rgb(125, 163, 137));
}

/* **************************************** HEADER **************************************** */

.page-header{
    height: var(--header-footer-height);
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5%;
}

.header__title-container{
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid blue; */
}

.header__title{
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    /* text-shadow: var(--text-shadow); */
    margin-left: 2rem;
}

.header__menus-container{
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* border: 2px solid green; */
}

.header__menu-button{
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border: none;
    background: none;
    /* border: 2px solid orange; */
}

.header__menu-button__title{
    height: 2rem;
    width: auto;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    /* border: 2px solid blue; */
}

.header__menus-button__dropdown-icon{
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

.header__menus-button__dropdown-icon i{
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
}

/* **************************************** MAIN **************************************** */

.page-main{
    height: 85%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    position: relative;
}

.main__title{
    height: 10%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

.main__container{
    height: auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    background-color: white;
    border: 2px solid var(--main-color);
}

.main__form{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem;
}

.main__form__parameters-container{
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* border: 2px solid green; */
}

.main__form__data-container{
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    /* border: 2px solid orange; */
}

.main__form__group{
    height: 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 2px solid blue; */
}

.main__form__group--result{
    height: 16rem;
    justify-content: flex-start;
    /* border: 2px solid red; */
}

.main__form__group__element{
    height: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    /* border: 2px solid blue; */
}

.main__form__group__element label{
    height: 100%;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 0.3rem; */
    color: var(--text-color);
}

.main__form__data-container .main__form__group__element{
    justify-content: flex-start;
        /* border: 2px solid blue; */
}

.main__form__group__element__icon{
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
}

.main__form__group__element__icon i{
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

.main__form__group__element__help-icon{
    color: blue;
}

.main__form__group__element__copy-icon{
    color: var(--text-color);
}

.main__form__group__input-container{
    height: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid orange; */
}

.main__form__group__input-container--result{
    height: 12rem;
}

.small-size-input{
    width: 4rem;
}

.medium-size-input{
    width: 6rem;
}

.big-size-input{
    width: 14rem;
}

.all-width-size-input{
    width: 100%;
}

select, input, textarea{
    height: 100%;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0.5rem;
    border: 1px solid var(--main-color);
    resize: none;
    overflow: auto;
}

select:focus, input:focus, textarea:focus{
    outline: none;
    border: 2px solid rgba(160, 53, 53, 0.5);
    box-shadow: 0 0 10px rgba(160, 53, 53, 0.5);
}

#main__form__columnsList-input{

}

.main__form__alert{
    height: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: red;
    /* border: 2px solid purple; */
}

/* **************************************** FOOTER **************************************** */

.page-footer{
    height: var(--header-footer-height);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    /* background-color: rgba(128, 128, 128, 0.2); */
    /* text-shadow: var(--text-shadow); */
}

.page-footer p{
    font-size: 0.8rem;
}