@font-face {
    font-family: 'proxima';
    src: url('../fonts/390945_3_0.ttf')     format('truetype')
}

html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0px;
    height: 100%;
    width: 100%;
    font-family: 'proxima';
    text-align: center;
}

div.userbutton {
    width: 100%;
    height: 50px;
    color: white;
    background-color: rgb(43,114,87);
    border: 2px white solid;
}

div.userbutton:hover {
    color: white;
    background-color: #548091;
}

div.screenChoiceDiv {
    width: 300px;
    height: auto;
    border: 5px black solid;
}

img.logoimg {
    padding: 0px;
    width: 40px;
}

p.important {
    color: orange;
}

#main {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 53% 0% 47%;
    grid-template-rows: 75% 20% 5%;
}

#slideshowDiv {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
    background-color: #084054;
    display:none;

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

    background-position: 0px -300px;
    background-size: 100% auto;
    -webkit-transition: background-image 1s;
}

#orderCreateDiv {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    border-left: 2px black solid;
    overflow-x: auto;
}

#orderReadyDiv {
    grid-column-start: 3;
    grid-row-start: 1;
    border-left: 2px black solid;
    overflow-x: auto;
}

#infoDivBottom {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    color: white;
    border: 2px black solid;
    background-color: rgb(43,114,87);
    overflow: hidden;
}

#infoDiveBottom-logo {
    text-align: left;
}

#infoDiveBottom-logo img{
    width: 50%;
}

#infoDiveBottom-info1 {
    width: 50%;
    height: 100%;
    text-align: right;
    float: right;
}

#infoDiveBottom-info1 p {
    font-size: 27px;
    padding: 0px;
    margin: 2px;
    margin-right: 5px;
}

#barBottomDiv {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    border: 2px black solid;
    background-color: rgb(43,114,87);
}

img.barBottom {
    padding: 0px;
    height: 100%;
    width: 100%;
}

