 * {
  box-sizing: border-box;
}
body {
    font-size: 14px;
    font-family:verdana;
    background-color: @blue;
}
.start_container {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
    padding: 10px;
    background-color: @off-white;

}
.table_container {
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
    padding: 10px;
    background-color: @off-white;

}


.top-menu {
    width: 100%;
    max-width: 350px;
    padding: 4px;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    background-color: @blue;
}
.filter-display {
    font-size: 8px;
}
.page-title {
    font-size: 24px;
    font-weight: bold;
}
input[type=text], input[type=password], input[type=email], input[type=readonly], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

/* ------------------------- color scheme -----------------------------*/
@blue: #4472C4;

.blue {
    background-color: @blue;
}

@green: #04AA6D; /*76cf9f*/

.green {
    background-color: @green;
}

@red: red;

.red {
    color: @red !important;
}
.red-background {
    background-color: @red;
}
@off-white: #f2f2f2;

@custom-light-grey: gainsboro;

/*------------------------------------------------------------------*/

.button-large {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}
.button-large:hover {
    opacity: 0.8;

}
label:hover {
    opacity: 0.8;
    color:black;
}

/* ------------------------- list of contexts -----------------------------*/
.the-grid {
    display: flex;
	margin-bottom: 5px;
	margin: 5px;
}
.context-link:hover {
    border-color: black;
    background-color:@custom-light-grey;
}
.marquee {
    border: 0.5px solid white;
    text-align: center;
    cursor: pointer;
}
.first-column {
    display:flex;
    flex-direction: column;
}
.second-column {
    margin-left: 5px;
    display:flex;
    flex-direction: column;
    flex: 1;
}
.third-column {
    margin-left: 5px;
    display:flex;
    flex-direction: column;
    flex: 1;
}
.type-row {
    text-transform:capitalize;
    font-size: 12px !important;
    padding-left: 10px;
    text-align: left;
    display:block;
    width:100%;
}
.title-banner {
    font-weight: bold;
    font-size: 18px !important;
    padding-left: 10px;
}
.subtitle-banner {
    font-size: 12px !important;
    padding-left: 10px;
}
/*---------------------------------------------------------------------*/
.get-button {
    color:blue;
    margin:5px;
    padding:5px;
    border-style: solid;
    border-radius: 7px;
    border-width: thin;
    border-color: @blue;
	cursor: pointer;
}
.get-button:hover {
    color: white;
    background-color:@blue;
    border-color: @blue;
}
.get-button-red {
    color:red;
    margin:5px;
    padding:5px;
    border-style: solid;
    border-radius: 7px;
    border-width: thin;
    border-color: @red;
	cursor: pointer;
}
.get-button-red:hover {
    color: white;
    background-color:@red;
    border-color: @red;
}
.delete-button {
    color:@red;
    margin:5px;
    padding:5px;
    border-style: solid;
    border-radius: 7px;
    border-width: thin;
    border-color: @red;
	cursor: pointer;
}
.delete-button:hover {
    color: white;
    background-color:@red;
    border-color: @red;
}
/*------------------------------------------------------------------*/

.list-content{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.img-location-list{
    height: 45px;
    width: 45px;
    padding: 0px 0px;
}

/* ------------------------- list of contexts -----------------------------*/
.radio-button input[type="radio"], .radio-button-blue input[type="radio"] {
    display: none;
}  
.radio-button label {
    display: inline-block;
    padding: 4px 6px;
    cursor: pointer;
    background-color: @custom-light-grey;
}
.radio-button input[type="radio"]:checked+label {
    background-color: @green;
    color:white;
}
.radio-button-blue label {
    display: inline-block;
    padding: 4px 3px;
    cursor: pointer;
    color: @off-white;
}
.radio-button-blue input[type="radio"]:checked+label {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}
/*------------------------------------------------------------------*/


label i {
    font-size: 12px;
}
div i {
    font-size: 16px;
    cursor: pointer;
}
.pointer {
    cursor: pointer;
}
.more-drop-down {
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: center;
    outline: none;
}
.active, .more-drop-down:hover {
    background-color: @green;
    color: white;
}
.panel {
    padding: 0 18px;
    max-height: 0;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------- Modal -----------------------------*/
.modal00, .modal01, .modal02 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow:auto;
    max-height:calc(100vh);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 650px;
    width:100%;
    overflow:auto;
    max-height:calc(100vh - 25px);
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}
.close-button:hover {
    background-color: darkgray;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/*------------------------------------------------------------------*/

.flex-container {
    display: flex;
    align-items: center;
}
.flex-child {
    flex: 1;
    padding-left:5px;
    padding-right:5px;
}  
.flex-child:first-child {
    margin-right: 20px;
}

a {
    color: black;
    text-decoration: none;
}
.link:hover {
    color: blue !important;
    text-decoration: underline;
}
.img_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:300px;
    height:auto;
}

/* ------------------------- Error Messaging -----------------------------*/
.message {
    .red;
}
.valid {
    color: @green;
}
.valid:before {
    position: relative;
    left: -5px;
    content: "✔";
}
.invalid {
    color: @red;
}
.invalid:before {
    position: relative;
    left: -5px;
    content: "✖";
}
.disabled {
    color:lightgrey;
    cursor:not-allowed;
}
/* ------------------------- drop down menu -----------------------------*/
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.dropdown a:hover {background-color: #ddd;}
.dropdown a:active {background-color: darkgrey;}

.show {display: block;}

