﻿/* INCLUDES */



/* SITE STYLES */
html {
    position: relative;
    min-height: 100%;
}

body {
    padding-top: 0;
    padding-bottom: 30px; /* Margin bottom by footer height */
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-header {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #f5f5f5;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px; /* Set the fixed height of the footer here */
    line-height: 30px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

.app-tile {
    padding: 5px;
    height: 70px;
    text-align: center;
    border-radius: 15px;
    background-color: #f5f3f3;
}

/* ICONS */
.icon-orange {
    color: #FB8C00;
}
.icon-red {
    color: red;
}
.icon-green {
    color: green;
}
.icon-brown {
    color: brown;
}

.action-icon {
    height: 21px;
    width: 21px;
    margin-right: 10px;
}

a[icon-state="inactive"] {
    display: none;
}

/* SPINNER */
div[spinner-hidden="true"] {
    visibility: hidden;
}
div[spinner-hidden="false"] {
    visibility: visible;
}

/* PROPERTY FORM */
.property-text {
    margin-bottom: 0px;
    font-size: 14px;
    text-align: right;
}

.property-value {
    margin-bottom: 0px;
    font-size: 14px;
    min-width:150px;
    vertical-align: middle;
}
.property-value:empty:before {
    content: "\200b"; /* unicode zero width space character */
}
.property-input {
    margin-bottom: 0px;
    font-size: 14px;
    min-width: 150px;
    width: 300px;
    height: 24px;
    vertical-align: middle;
}

/* AVAILABILITY TABLE */
.table-avail {
    border-collapse:collapse;
    border-spacing:0;
    margin-bottom: 10px;
}
.table-avail td {
    font-size:14px;
    margin: 0px;
    padding: 0.5px 0.5px 0.5px 5px;
    border-style:solid;
    border-width:1px;
    overflow:hidden;
    word-break:normal;
    border-color: rgb(96, 171, 247);
    text-align:right;
}
.table-avail th {
    font-size:14px;
    font-weight:normal;
    padding:10px 5px;
    border-style:solid;
    border-width:1px;
    overflow:hidden;
    word-break:normal;
    border-color: rgb(96, 171, 247);
    text-align: center;
}
.table-avail .ta-avail-N {
    text-align:center;
    vertical-align:top
}
.table-avail .ta-avail-Y {
    background-color:#c0c0c0;
    text-align:center;
    vertical-align:top
}

/* ICON TOOLTIP */
[icon-tooltip] {
    position: relative;
}
[icon-tooltip]:before {
    content: attr(icon-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    padding: 8px;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: top;
    background: #616161e6;
    color: white;
    border-radius: 2px;
    font-size: 12px;
    font-family: Roboto,sans-serif;
    font-weight: 400;
    z-index: 1000;
}
[icon-tooltip]:hover:before {
    transform: translateX(-50%) scale(1);
}

/* BUTTONS */
.btn {
    font-size: 12px;
    line-height: 1;
}

@media screen {
/* PRINT */
#printSection {
    display: none;
}


} /* media screen */



@page {
    margin-top: 48px;
    margin-bottom: 48px;
}

@media print {
body * {
    visibility: hidden;
    -webkit-print-color-adjust: exact !important;
}

#printSection, #printSection * {
    visibility: visible;
}

.modal-footer, .btn, .close, .close *, .action-icon {
    visibility: hidden !important;
}
a, a * {
    text-decoration: none !important;
}

.modal-dialog {
    width: 100% !important;
}

#printSection {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    width: 100%;
}

}