html {
    height: 100%;
}

body {
    background: #ffc;
    background: #e1e1e1;
    margin: 0;
    height: 100%;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 40px;
}

a {
    color: green;
    font-weight: bold;
}

icon {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 10px;
}

li {
    padding-bottom: 5px;
}

.information-block {
    text-align: center;
    font-size: 1.25em;
    border: 1px solid black;
    border-radius: 5px;
}

.required {
    color: red;
    font-size: 0.7em;
}

.table-header {
    font-weight:bold;
    background: #404040;
    color: white;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
}

.form-label {
    font-weight: bold;
    font-size: 1.15em;
    float: right;
}

.form-input {
    font-size: 1.25em;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.ticket-form-label {
    font-weight: bold;
    font-size: 1.15em;
}

.ticket-form-input {
    font-size: 1.25em;
    width: 50%;
    min-width: 350px;
    font-family: Arial, Helvetica, sans-serif;
}

textarea.ticket-form-input{
    width: 95%;
    max-width: 1000px;
}

.page-grid {
    min-height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 5% 90% 5%;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
    	"header header header"
	". main ."
	"footer footer footer";
}

.split-page {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-column-gap: 1%;
    grid-template-rows: auto;
    grid-template-areas: "left right";
}


.form-entry {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.content {
    grid-area: main;
}

.header {
    height:110px;
    grid-area: header;
    background: #f8f8f8;
}

.header-supportnet {
    max-width: 320px;
    width: 20%;
    float: left;
    padding-left: 20px;
    padding-top: 18px;
    padding-bottom: 17px;
}

.header-remc1 {
    max-width: 100px;
    width: 6%;
    float: right;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.footer {
    background: #f8f8f8;
    grid-area: footer;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: auto;
    grid-template-areas: "copyright return-link made-for";
}

.blocked {
    display: inline-block;
}

.button-grey {
    background: lightgrey;
    color: black;
    border: solid 1px black;
    padding: 10px 25px;
    margin-top: 10px;
    font-size: 1em;
    -webkit-transition: background 2s, color 2s; /* Safari */
    transition: background 0.5s, color 0.5s;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.button-grey:hover {
    background: white;
    color: black;
}
.button-grey:active {
    background: white;
    color: black;
}


.button-submit {
    background: green;
    color: white;
    border: solid 1px darkgreen;
    padding: 10px 25px;
    margin-top: 10px;
    font-size: 1em;
    -webkit-transition: background 2s, color 2s; /* Safari */
    transition: background 0.5s, color 0.5s;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.button-submit:hover {
    background: lightgreen;
    color: black;
}
.button-submit:active {
    background: grey;
    color: black;
}
.button-submit:disabled {
    background: grey;
    color: black;
}

.button-submit-lrg {
    background: green;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    border: solid 1px darkgreen;
    border-radius: 5px;
    padding: 20px 30px;
    margin-top: 10px;
    -webkit-transition: background 2s, color 2s; /* Safari */
    transition: background 0.5s, color 0.5s;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.button-submit-lrg:hover {
    background: lightgreen;
    color: black;
}

.ticket-info-hidden {
    background: $e2edfa;
    padding: 0px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: none;
}

.button-cancel {
    background: darkred;
    color: white;
    border: solid 1px black;
    padding: 10px 25px;
    margin-top: 10px;
    font-size: 1em;
    -webkit-transition: background 2s, color 2s; /* Safari */
    transition: background 0.5s, color 0.5s;
    font-weight:bold;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.button-cancel:hover {
    background: red;
    color: black;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.moved-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

.moved-right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

.has-error {
    color: red !important;
}

.has-error input, .has-error textarea{
    border: solid 1px red;
}

.well {
    background-color: #f8f8f8;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    max-width: 80%;
}

.full-width-well {
    background-color: #f8f8f8;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.centered {
    margin: auto;
}

label {
    font-size: 1.25em;
    padding-top: 10px;
}

.form-group {
    margin-top: 10px;
}

.dashboard-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
    max-width: 80%;
    margin: auto;
    padding-top: 20px;
}

.responsive-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.schedule-well {
    background-color: #c2c2c2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
}
