﻿* {
    font-family: Arial, 'Helvetica', sans-serif;
    margin: 0;
}


input, select, div[contenteditable="true"] {
    background-color: white;
}

.content {
    /* see also the .content below this for larger screens */
    display: block;
    margin: 0;
    padding: 5px 5px 15px 5px;
}

/* This breakpoint occurs on larger devices */
@media only screen and (min-width: 992px) {
    .content {
        /* see also the .content above this for smaller screens */
        display: block;
        margin: 0;
        padding: 20px;
    }
}
/* For printing: */
@media print {
    .noprint, .vcl_button, .vcl_banner_icon {
        visibility: hidden;
    }
    input {
        border: 1px solid white;
    }
}

form {
    margin-top: 5px;
}

div.navbar {
    border-bottom: 1px solid gray;
    width: 100%;
    height: 40px;
    -webkit-box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.4);
    margin-bottom: 10px;
}

div.navbar h4 {
    width: calc(100% - 40px);
    padding-right: 30px;
    text-align: center; /* The combination of the width and padding makes the text appear to be in the center */
}

#hamburgerButton {
    border: none;
    display: inline-block;
    background-color: white;
    background-image: url('images/hamburger.png');
    border: 1px solid white;
    height: 25px;
    width: 25px;
    margin: 0 0 10px 10px;
    cursor: pointer;
}

button:not(.close, #hamburgerButton, .ui-dialog-titlebar-close) {
    width: 150px;
}

#Modal_Dialog_Message {
    color: brown;
}
.close {
    border: 1px solid gray;
}

.col-form-label {
    padding-bottom: 2px !important;
}

.error {
    color: red;
}

.hidden {
    display: none;
}

.real-logo {
    border-radius: 5px;
    background-color: white !important;
    color: black;
    text-align: center;
    padding: 3px 10px 5px 10px;
}
.fake-logo {
    border-radius: 5px;
    background-color: #237BAC !important;
    color: white;
    text-align: center;
    padding: 3px 10px 5px 10px;
}

h1, h2, h3, h4 {
    font-weight: 400;
    color: #237BAC;
}
.right {
    text-align: right; 
}
.red {
    color: red;
}