:root{
    --main-first: #01345B;
    --main-second: #DEB992;
    --secondary-first: #1BA098;
    --secondary-second: #001729;
    --secondary-third: #FECF03;
}

html,
body{
    font-size: 14px;
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

table {
	border-collapse:collapse;
	border-spacing:0;
	border:1px solid var(--surface-border);
	line-height:2;
	width:100%;
}
table th {
	font-weight:bold;
	text-align:left;
}

table tr th:first-child,
table tr td:first-child{
    padding-left: 1em;
}

table td {
	padding:10px 10px 10px 0;
}
table tr {
	border-top:1px solid var(--surface-border);
	border-bottom: 1px solid var(--surface-border);
}

.wrapper {
    margin-right: auto;
    margin-left:  auto;
    max-width: 1200px;
}

.bg-main-first{
    background: var(--main-first);
}

.bg-main-second{
    background: var(--main-second);
}

.bg-secondary-first{
    background: var(--secondary-first);
}

.bg-secondary-second{
    background: var(--secondary-second);
}

.bg-secondary-third{
    background: var(--secondary-third);
}

.color-main-first{
    color: var(--main-first);
}

.color-main-second{
    color: var(--main-second);
}

.color-secondary-first{
    color: var(--secondary-first);
}

.color-secondary-second{
    color: var(--secondary-second);
}

.color-secondary-third{
    color: var(--secondary-third);
}

.border-main-first{
    border-color: var(--main-first);
}

.border-main-second{
    border-color: var(--main-second);
}

.border-secondary-first{
    border-color: var(--secondary-first);
}

.border-secondary-second{
    border-color: var(--secondary-second);
}

.border-secondary-third{
    border-color: var(--secondary-third);
}

.input-field::placeholder{
    color: var(--main-second);
}

input[type="text"]
input[type="time"],
input[type="date"],
select{
    height: 38px;
    padding: 0 10px;
}

.badge-tag {
	border-radius: 0.2rem;
	color: var(--surface-0);
	display: inline-block;
	font-size: 80%;
	font-weight: 600;
	line-height: 1;
	padding: 0.3em 0.45em;
	text-align: center;
	vertical-align: baseline;
	white-space: nowrap
}

.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}

/* Input */
.pure-material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.pure-material-checkbox > span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* Box */
.pure-material-checkbox > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 2px; /* Safari */
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.pure-material-checkbox > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
    opacity: 0.04;
}

.pure-material-checkbox > input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
    opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
}


/* Tablet */
@media screen and (min-width:767px) and (max-width:1023px) {
    #sidebar-button{
        display: none !important;
    }
}

/* Desktop */
@media screen and (min-width:1024px) {
    #sidebar-button{
        display: none !important;
    }
}

/* Mobile */
@media screen and (max-width:767px) {
    #sidebar-button{
        display: block;
    }

    #nav-buttons{
        display: none !important;
    }
}