/****************************************************************************************************
Top level elements
*****************************************************************************************************/
/* Reset margins and padding */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Tell the browser to render HTML 5 elements as block */
header, main, section, article, aside, nav, footer {
    display: block;
}

/* Font */
html {
    font: 12px / 16px system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,
    "Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji",
    "Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: #2c3038;
}

/* Make checkboxes a little larger*/
input[type=checkbox] {
    transform: scale(1.1);
    margin: 5px;
}

/* All labels and headers should be unselectable*/
label, h1, h2, h3, h4, h5, button{
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h3{
    color: rgba(101, 99, 96, 0.71);
}

b{
    font-weight: 600;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Scrollbars */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/**---------------SpreadSheet----------------**/
.spreadsheet{

}

.spreadsheet input, .spreadsheet select{
    padding: 2px 4px !important;
    border: none !important;
    background-color: white !important;
}

tbody input, tbody select{
    width: 100%;
    margin: 0 !important;
    height: max-content;
    border: none;
}

tbody input[type=checkbox]{
    width: 100%;
    margin: 2px 0 !important;
}

table input:focus, table select:focus  {
    outline: none;
}

.spreadsheet td{
    border: solid 1px lightgrey;
    padding: 0px;
}

.spreadsheet th{
    font-weight: 600;
    padding: 0 10px;
}

.focusCell {
    border: solid 2px #03626e !important;
}

.showSheet{
    table-layout: fixed;
    width: 100%;
    border-spacing:0; /* Removes the cell spacing via CSS */
    border-collapse: collapse;  /* Optional - if you don't want to have double border where cells touch */
    background-color: rgba(241, 241, 241, 0.58);
    white-space: nowrap;
}

.showSheet td{
    padding: 3px;
    overflow-x: hidden;
    height: 30px;
    min-height: 30px;
    background-color: white;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: lightgrey;
}

.showSheet th{
    padding: 0;
    background-color: #eeeeee;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: black;
}

.showSheet tbody{
    width: 100%;
}

.dataSheet{
}

.dataSheet td, .dataSheet th{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dataSheet td{
    padding: 2px;
    border: solid 1px lightgrey;
}

.dataSheet thead tr{
    text-align: left;
    padding: 0 2px;
    border: solid 1px lightgrey;

    color: white;
    background-color: #d51e30;
}

.dataSheet th span{
    margin: 3px 3px 3px 0;
    font-weight: 600;
}

/**---------------Tables---------------**/
table{
    width: 100%;
    border-spacing:0; /* Removes the cell spacing via CSS */
    border-collapse: collapse;  /* Optional - if you don't want to have double border where cells touch */
    color: #1d222c;
}

.tblHead{
    width: 100%;
    background-color: #c40012;
    color: #f9f9f9;
    font-weight: 500 !important;
    cursor: pointer;
}

.tblHead > *{
    font-weight: 500 !important;
}


span.tblHead{
    padding: 2px 4px;
}

tbody{
    font-family: Arial, inherit;
    font-size: 12px;
}

th,td{
    padding: 2px /*4px*/;
}

td{
    font-weight: normal;
}

.selectable tr:hover, .selectable tr:hover input, .selectable tr:hover select, div.selectable:hover{
    background-color: #f1f1f1 !important;
}

.hrLine{
    border-top: black solid 1px;
    margin-top: 6px;
    padding-top: 3px;
}

/* Sorting functionality */
table.table-sortable th.currently-sorted[data-sort-dir="asc"]::after{
    content: "\25b2";
}

table.table-sortable th.currently-sorted[data-sort-dir="desc"]::after{
    content: "\25bc";
}

table hr{
    border-color: #e1e0db !important;
    width: 95%;
    margin: 0 auto;
}

/* fixed header table*/
.fixed_header {
    width: 100%;
}
.fixed_header tbody {
    display: block;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100px;
}
.fixed_header thead tr, .fixed_header tbody tr {
    display: flex;
    align-items: center;
}

.fixed_header td, .fixed_header th{
    display: inline-block;
}

/*---------------------Input form---------------------------*/
form{
    text-align: left;
}

form .autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

form input[type=radio] + label, form input[type=checkbox] + label{
    font-weight: normal;
}

form input[type=radio] + label{
    margin-right: 30px;
    cursor: pointer;
}

form select + label{
    /*margin-left: 10%;*/
}

form label{
    font-weight: 600;
    /*padding-right: 5px;*/
}

form select{
    /*margin: 0 3px;*/
}

form input[type=radio]{
    margin: 5px;
}

form input[type=text],  form input[type=date],  form input[type=password], form input[type=number], form textarea, form select {
    border: 1px solid transparent;
    background-color: #eeeeee;
    padding: 5px;
}

form .autocomplete-items {
    position: relative;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

form .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

form .autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

form .autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*form input:required:invalid {
    border: solid 1px rgba(207, 38, 55, 0.37);
    background-color: rgba(207, 38, 55, 0.11);
}*/

.rightButton{
    margin-left: auto;
}

form fieldset{
    padding: 30px;
    width: 100%;
    border-radius: 5px;
}


/***********************************************************************************************
Main Layout
 ***********************************************************************************************/
body {
    height: 100%;
    background: #e1e0db;
    overflow-y: hidden;
}

/*----Header----*/
header{
    display: block;
    width: 100%;
    background-color: white;
    z-index: 100;
}

header #headTop{
    display: block;
    position: relative;
    padding: 10px;
}

header #BLogo{
    margin-left: 15%;
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: auto;
}

header h1{
    display:inline-block;
    vertical-align:middle;
    text-align: center;
    margin-left: 50px;
}

header #loginCorner{
    position: absolute;
    right: 15%;
    margin:auto;
    display:block;
    vertical-align:middle;
    text-align: right;
    font-size: 12px;
}

header #loginBtn{
    position: absolute;
    right: 15%;
    bottom: 10px;
}

header #mainNavigation{
    margin: 0;
    background-color: rgba(22, 22, 22, 0.82);
    padding-left: 10%;
}

.dropbtn {
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 7px 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-right: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 7px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #e1e1e1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    border-bottom: solid 4px #05bb05;
    padding-bottom: 3px;
}

#logoutDown{
    min-width: max-content;
    left: 8px;
}

#logoutDown a{
    background-color: #f9f9f9;
    color: black;
    padding: 7px 10px;
    text-decoration: none;
    display: block;
    border: none;
    text-align: left;
    font-size: 12px;
}

#logoutDown a:hover{
    background-color: #e1e1e1;
}

.dropdown-content button:hover {background-color: #f1f1f1}

.dWorking{
    background-color: #9dcc66;
}

.dOff{
    background-color: #b21a28;
    color : white;
}

.dNoRost{
    background-color: #cccbc7;
}

.rosterDay{
    border-radius: 5px;
    padding: 7px 5px;
    font-weight: 600;
    width: 9.7% !important;
    margin: 0.15%;
}

.rosterDay div{
    margin: auto;
}

.minusBtn{
    width: 15px;
    margin: 0px 7px;
    border-radius: 25%;
    background-color: #f14757;
    padding: 3px;
}

.plusBtn{
    width: 15px;
    margin: 0px 7px;
    border-radius: 25%;
    background-color: chartreuse;
    padding: 3px;
}

/*---Main---*/
main {
    display: block;
    position: fixed;
    width: 85%;
    right: 0;
    padding: 0.75% 0.75% 0 0.75%;
    height: calc(100% - 103.6px);
    overflow-y: auto !important;
    overflow-x: hidden;
}

.shadowWhite{
    width: 100%;
    display: block;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.53);
    padding: 3%;
    margin-bottom: 15px;
    height: fit-content;
    overflow-y: hidden;
}

/**-----side menu-----**/
aside{
    display: block;
    text-align: right;
    font-weight: 600;
    position: fixed;
    background-color: rgba(22, 22, 22, 0.91);
    color: #f8f6ef !important;
    width: 15%;
    height: calc(100% - 103.6px);
    margin-left: auto;
    margin-right: 0;
}

aside hr{
    display: block;
    border-block-color: #e1e0db;
    width: 80%;
    margin: 0 auto 10px auto;
}

aside .sideButton{
    position: relative;
    text-align: right;
    font-weight: normal;
    border: none;
    font-size: larger;
    background-color: transparent;
    color: inherit;
    border-right: solid 6px transparent;
    padding: 6px;
    text-decoration: none;
    cursor: pointer;
}

aside .sideButton:hover{
    color: lightgrey;
    animation: slideLeft 2s ease-in-out infinite;
}

.selectedSide{
    border-right: solid 6px #05bb05 !important;
}

.sideHead{
    font-size: large !important;
    padding: 12px !important;
    border-bottom: solid 2px #05bb05;
}
.sideCluster{
    padding: 8px;
}

/**-------------------Teams----------------------**/
.fixedOffButton{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 80px;
    height: 60px;
    margin: 10px 10px 10px 0;
    border-radius: 5px;
    color: #f8f6ef;
    background-color: #9dcc66;
    font-size: 13px;
}

.fixedOffButton b{
    text-align: center;
    width: 100%;
}

.fixedOffButton:hover{
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.6);
}

.fixedOffOff{
    background-color: #b21a28;
}

.rostJob{
    display: flex;
    align-items: center;
    width: 150px;
    height: 30px;
    border: solid 1px #54514e;
    padding: 5px;
    background-color: white !important;
}

.rostJob input{
    width: 115px;
    background-color: inherit !important;
    border: none;
}

.rostJob input:focus{
    outline: none;
}

#allJobs{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    max-height: 92px;
    height: 92px;
    background-color: #eeeeee;
}

.rostJob:hover .parentHoverShow{
    visibility: visible;
}

.parentHoverShow{
    visibility: hidden;
}

/**--------------------Staff--------------------------**/
#filter input, #filter select{
    width: 100%;
    padding: 5px;
    font-size: 12px;
}

.selRow:hover .parentHoverShow{
    visibility: visible;
}

#selectedList{
    text-align: left;
}

/**-------------------Attendance----------------------**/
.slider{
    --tumbback: #54514e;
    -webkit-appearance: none;
    height: 5px;
    background: #989797;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 20px;
    /*margin: 20px 10px !important;*/
    margin: 10px 8px !important;
    width: 70%;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 25px;
    background: var(--tumbback);
    cursor: pointer;
    /*border-radius: 5px*/;
}

.slider::-moz-range-thumb {
    width: 8px;
    height: 25px;
    background: var(--tumbback);
    cursor: pointer;
    /*border-radius: 5px*/;
}

input[type=range] {
    pointer-events: none;
}

input[type=range]::-webkit-slider-thumb {
    pointer-events:auto;
}

.mediumPoint{
    font-size: medium !important;
    cursor: pointer;
}

.grayOut{
    color: #989797 !important;
    font-weight: normal !important;
}

.present{
    color : #018d01;
    font-weight: bold;
}

.absent{
    color: #e00000;
    font-weight: bold;
}

.appText{
    display: block;
    color: #03626e !important;
}

/**-------------------Roster----------------------**/
#rosterBody .hasBeen, #rosterBody select{
    display: block;
    width: 9.5%;
    margin: 0.25%;
    border-radius: 5%;
    border: none;
}

#rosterBody .hasBeen{
    padding: 10px 6px;
    overflow-x: hidden;
    white-space: nowrap;
}

#rosterBody select{
    padding: 10px 2px;
    font-weight: 600;
    font-size: inherit;
}

#rosterBody select option{
    padding: 10px 10px;
    background-color: white;
    color: black;
}

#rosterBody .appointment{
    align-self: center !important;
    width: 10%;
    border-radius: 5%;
    border: dashed 2px;
    padding: 1px;
}

#rosterBody .appointment > *{
    width: 100%;
    border-radius: 5%;
}

#rosterBody optgroup{
    font-weight: normal;
}

/********************************************************************************************************
Components
*********************************************************************************************************/
/* Main button style*/

.button{
    background-color: #025b02;
    color: white;
    font-weight: 500;
    padding: 5px;
    border: none;
    font-size: 12px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.button:hover{
    background-color: #3ead5c;
}


/* Team/Department button */
.teamButton{
    color: #54514e;
    display: block;
    font-size: 13px !important;
    font-style: inherit;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 249, 249, 0.85);
    border: solid 1px rgba(211, 211, 211, 0.79);
    margin: 1px;
    padding: 8px;
    vertical-align: middle;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.teamButton h3{
    color: #656360;
}

.teamButton:hover{
    background-color: #eeeeee;
    box-shadow: 0 3px 6px 0px rgba(0,0,0,0.6);
}

.teamButton span, .teamButton div span{
    margin: 8px 0 !important;
}

.teamButton *{
    margin-top: 5px;
}

/* Button with no background or border which greys up when hovered*/
.steltButton {
    border: none;
    background-color: transparent;
    vertical-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
}

.steltButton:hover{
    color: gray;
}

/* Clear button, used to highlight a svg image button */
.clearButton{
    width: 30px;
    height: 30px;
    position:relative;
    margin: 2px;
    background-color: transparent;
    border: none;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 15%;
}

.clearButton:hover{
    border-radius: 15%;
    background-color: #eeeeee;
    /*box-shadow: 0 5px 10px 0px rgba(0,0,0,0.6);*/
}

.clearButton img {
    padding: 3px;
    width: 100%;
    height: auto;
    position:absolute;
    top: 50%;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Switch Button */
.absSelect{
    list-style: none;
    background-color: #f9f9f9;
    /*background-color: #e0e0e0;*/
    /*width: 100%;
    max-width: 100%;*/
    padding: 2px 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,
    "Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji",
    "Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 16px;
    border: solid 1px #cbd5e0;
    display: flex;
    justify-content: space-around;
}

.absSelect li{
    display: inline-block;
    margin: 1px 4px;
    width: 100% !important;
}

.absSelect li input:checked + label {
    background-color: white;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2),0 2px 3px 0 rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}

.absSelect li input:not(:checked) + label {
    --bg-opacity: 0;
    box-shadow: none;
    color: #90959f !important;
}

.absSelect li input:not(:checked) + label:hover {
    color: #54514e !important;
}

.absSelect li input{
    display: none;
}

.absSelect li label{
    display: inline-block;
    font-weight: 600 !important;
    padding: 3px 6px;
    cursor: pointer;
    /*color: #1d222c !important;*/
    color : #000000 !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: center !important;
}

.absSelect + select{
    margin: 0 5px;
    padding: 5px;
    font-weight: 600;
    display: none;
}

.vertSelect{
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: wrap !important;
}
.vertSelect li{
    max-width: 100% !important;
}

/********************************************************************************************************
Generally applicable classes
*********************************************************************************************************/
/* flex box default */
.fullFlex{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: center;
    min-height: 0;
    min-width:  0;
}

.columnFlex{
    display: flex;
    flex-direction: column;
}

.fullFlex *{
    align-self: center;
}

.fullFlex label{
    display: inline-block;
}

.fullFlex div{
    align-self: flex-start;
}

.break{
    flex-basis: 100%;
    width: 100%;
    height: 0;
}

/*cut off too long*/
.nowrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Brigthens a component when hovered*/
.opaque:hover{
    opacity: 1;
}

.opaque{
    opacity: 0.5;
}

/* Grey out everything */
.inActive, .inActive *{
    color: #919191 !important;
}

.grayBack{
    background-color: #edf0f3;
}

/* highlights a clickable component */
.clickable:hover{
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.hidden{
    visibility: hidden;
}

.collapse{
    visibility: hidden;
    height: 0;
    width: 0;
    display: none;
    margin: 0 !important;
}

/* Prevents the user from highlighting element */
.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Used to display a crop picker number */
.cpo{
    color: #4b4bef;
    font-weight: bolder;
}

/* Alignment within element */
.rightAlign{
    margin-left: auto;
    text-align: right;
}
.leftAlign{
    margin-right: auto;
    text-align: left;
}
.centerAlign{
    align-self: center;
    text-align: center;
    margin: auto;
}

/* Spacing */
.topSpace{
    margin-top: 10px;
    align-self: center;
}

/* Font */
.lightText{
    color: #919191;
}

/* Decoration */
.header{
    border-bottom:  solid 1px #54514e;
    margin-bottom: 7px;
    margin-top: 30px;
}

.headerLarge{
    border-bottom: solid 2px #54514e;
    padding: 3px;
}

/****************************************************************************************************
Animations
*****************************************************************************************************/
.floatContent {
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    /*border-radius: 10%;*/
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
        transform: translatey(0px);
    }
    50% {
        box-shadow: 0 15px 15px 0px rgba(0,0,0,0.2);
        transform: translatey(-10px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
        transform: translatey(0px);
    }
}

#loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 80px !important;
    height: 80px !important;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Soft slide*/
@keyframes leftSlide {
    0% {
        padding-right: 6px;
    }
    100% {
        padding-right: 20px;
    }
}

/********************************************************************************************************
Tool tip
*********************************************************************************************************/
.tooltip {
    position: relative;
    /*display: inline-block;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.72);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    font-size: 12px;
    z-index: 5;

    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition-delay: 1s;
    transition: opacity 1s;
}

.tooltip .top{
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .top::after{
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip .bottom{
    top: 100%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip .bottom::after{
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip .left {
    top: -5px;
    right: 105%;
}

.tooltip .left::after{
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.tooltip .right {
    top: -5px;
    left: 105%;
}

.tooltip .right::after{
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/********************************************************************************************************
Overlay
*********************************************************************************************************/
#overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.5);
    text-align: center;
}

#prompt{
    margin: 0;
    padding: 30px;
    background-color: white;
    width: 40%;
    max-height: 95%;
    position: absolute;
    box-shadow: 0 5px 10px 0px rgba(0,0,0,0.6);
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

#prompt div{
    margin: 0 auto;
    max-height: 100%;
    width: 100%;
}

#promptImg{
    height: 150px;
    width: auto;
}

#overContent{
    height: calc(100% - 60px);
}


