* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    height: auto;
    font-size: 16px;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    background-color: #f0f0f0;
    margin: 10px;
    height: calc(100% - 20px);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 1250px;
    height: calc(100vh - 20px);
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 10px;
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#header {
    display: flex;
    height: 90px;
    width: 100%;
    background-color: hsl(270, 50%, 50%);
    color: white;
    padding: 20px 40px 20px 40px;
}

/* boxes inside header bar */
.hdr_box_right,
.hdr_box_left {
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    height: 42px;
    color: var(--hdr_txt);
}

nav#bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    width: 100%;
    background-color: hsl(270, 50%, 55%);
    color: white;
}

.mainbox {
    display: flex;
    width: inherit;
    height: 100%;
    flex-direction: row;
    background-color: #fff;
}

nav#nav {
    width: 250px;
    height: 100vh;
    background-color: hsl(270, 50%, 50%);
    ;
}

section {
    flex: 1;
    min-width: 0;
    height: calc(100% - 132px);
    background-color: #fff;
    padding: 20px 25px 25px 25px;
    overflow: auto;
}

img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

wcomp-img {
    display: block;
    width: 100%;
    min-height: auto;
}

.btns,
.button {
    display: inline-block;
    background-color: hsl(270, 50%, 50%);
    border: none;
    color: hsl(270, 50%, 98%) !important;
    padding: 0px 20px 0px 20px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-right: 15px;
}

#symbol {
    display: none;
}