.products .header
{
    font-family: HouschkaRounded;

    display: flex;

    margin-bottom: 10px;

    justify-content: center;
    align-items: flex-end;
}

.products .header .section
{
    position: relative;
    font-size: 15px;

    margin: 0 15px;

    cursor: pointer;
    transition: 300ms;
    text-transform: uppercase;

    color: var(--black);
    display: flex;
}
.products .header .active,
.products .header .section:hover
{
    color: var(--red);
}

.productsFooter
{
    font-family: HouschkaRounded;
    font-size: 17px;

    display: flex;

    margin-top: 55px;

    justify-content: center;
    align-items: flex-end;
}

.productsFooter .section
{
    display: flex;

    width: 45px;
    height: 45px;
    margin: 0 5px;

    color: var(--black);
    background-color: white;

    justify-content: center;
    align-items: center;

    transition: 300ms;
    cursor: pointer;
    border: solid 1px var(--gray);
}
.productsFooter .section i
{
    padding-bottom: 3px;
}
.productsFooter .active,
.productsFooter .section:hover
{
    color: white;
    background-color: var(--red);
}




#productAdd
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    cursor: pointer;
    border: solid 4px transparent;
    transition: border-color 200ms, color 200ms;
    background-color: var(--red);
    color: white;
    min-height: 300px;
}
#productAdd > span:first-child
{
    font-family: ChaletParisNineteenEighty;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 2;
}
#productAdd > span:last-child
{
    font-size: 36px;
}

#sectionAdd
{
    color: white;
    background-color: var(--red);
    padding: 0 5px;
    border: solid 2px var(--red);
    transition: 200ms;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sectionAdd > span:first-child
{
    font-family: ChaletParisNineteenEighty;
    font-weight: bold;
    letter-spacing: 2;
}
#sectionAdd > span:last-child
{
    font-size: 1.3em;
    padding-top: 2px;
    margin-left: 4px;
}



#productAdd:hover,
#sectionAdd:hover 
{
    border-color: var(--blackSemitransparent);
    color: var(--black);
}

.entered
{
    background-color: white !important;
    border: none !important;

    flex-direction: column !important;
    justify-content: flex-start !important;
    height: calc(100% - 40px) !important;
    width: calc(100% - 40px) !important;

    padding: 20px !important; 

    cursor: default !important;
} 
.entered form
{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.entered form > span
{
    margin-bottom: -6px;
}
.entered form .top
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 5px;
}
.entered form .top > span
{
    display: flex;
    flex-direction: column;
}
.entered form .top > span:first-child
{
    flex-grow: 1;
}
.entered form .top > span:last-child
{
    margin-left: 15px;
    width: 60px;
}
.entered form .buttons
{
    width: 100%;
}
.entered form .buttons > *
{
    width: 100px;
}
.entered form .buttons > *:last-child
{
    width: calc(47%);
    min-width: 120px;
    float: right;
}
.entered form input[type=text],
.entered form textarea,
.entered form select
{
    padding: 4px;
    border: none !important;
    outline: solid 1px var(--gray) !important;
    outline-offset: 0 !important;
    background-color: white;
    width: 100%;
    margin: 5px 0;
    /*border: */
    font: 400 13.3333px Arial;
}
.entered form textarea 
{
    min-width: 100%;
    max-width: 100%;
    min-height: 50px;
}
.entered,
.entered form input[type=text],
.entered form textarea
{
    color: var(--black) !important;
}
#files
{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 5px;
}
#files > *:last-child
{
    margin-bottom: 0;
}

.inFile,
.inFile button,
.inFile .button,
.inFile input[type=button]
{
    color: white !important;
}



#error
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    white-space: nowrap;
    background-color: var(--lightred);
    color: white;
    outline: solid 1px var(--red);
    cursor: not-allowed;
    height: 0px;
    transition: height 50ms;
}


#newProductSectionName
{
    text-align: center;
}