body{
    font-size: 18px;
    height: 100%;
    padding: 0;
    margin: 0;
}

.content-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper-header, .wrapper-footer {
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.wrapper-content {
    flex-grow: 1;
}


/** GENERAL **/
.page-navbar {
    border-radius: 0 0 4px 4px;
}

.zero-border-radius {
    border-radius: 0 0 0 0;
}


.loader {
    height: 4px;
    width: 100%;

    border-radius: 0 0 4px 4px;

    --c:no-repeat linear-gradient(rgb(1, 55, 202) 0 0);
    background: var(--c),var(--c),rgba(1, 55, 202, 0.329);
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}

.clickable {
    cursor: pointer;
}

/** DASHBOARD **/

.criteria-tree-container {
    /* border-right: 1px solid lightgrey; */
    max-height: 900px;
}


.glyphicon-time:before {
    vertical-align: text-bottom;
}


/** SIGHTING **/

.sighting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    /* border-bottom: 1px solid lightgrey; */
}

.sighting-header-heading, 
.sighting-header-intermediary {
    font-size: 45px;
}


.sighting-header-intermediary > img {
    display: inline-block;
    vertical-align: middle;
    height: 50px;
}

.sighting-header-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sighting-header-button-container > button:not(:last-child) {
    margin-right: 20px;
}

.collapse > .criterion:not(:last-child) {
    /* border-bottom: 1px solid lightgrey; */
}

.criterion {
    padding: 0 12px 0 12px;
    margin: 10px 0 10px 0;
}

.selected {
    background-color: lightgrey;
}


/* .criterion:not(.selected):hover +  {
    background-color: black;
} */



/** SIGHTING TAB **/

.tooltip.custom-font-size .tooltip-inner {
    font-size: 0.7em;
}

.tooltip.custom-font-size {
    width:160px;
}

.tooltip.criteria-tooltip {
    width:300px;
    max-width: 300px;
}

.tooltip.criteria-tooltip .tooltip-inner {
    font-size: 0.7em;
    width:300px;
    max-width: 300px;
}

.snippet-container {
}

.conclusion-box > .input-group {
    width: 100%;
}

.conclusion-box > .btn-group {
    width: 100%;
    box-sizing: content-box;
}

.snippet {
    position: relative;
    display: flex;

    font-size: 0.9em;
}

.snippet-tools {
    height: 0;
    padding: 0;
    overflow: hidden;
    /* transition: height 0.2s ease-in-out, padding 0.1s ease 0.1s; */
}

.toolbox-open {
/*     height: 104px; */
    height: auto;
    padding: 10px;
    overflow:visible
}

.snippet-tools-btn-group {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.snippet-tools:hover {
    left: 0;
}


.snippet-bad {
    background-color: lightcoral;
}

.snippet-neutral {
    
}

.snippet-good {
    background: lightgreen;
}

.sighting-hint {
    text-align: center;
    margin: 20px 0 20px 0;
}

.sighting-delete-button {
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 17px;
}

.criteria-card-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: wrap;
}

.criteria-card {
    width: 300px;   
    margin: 10px 25px;
    position: relative;
    white-space: normal;
}

.criteria-card-accept {
    background-color: lightgreen;
    border-color: green;
}

.criteria-card-reject {
    background-color: lightcoral;
    border-color: red;
}

.sighting-criteria-fulfillment-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    height:100%;
    width:100%;
    
    margin-left:-15px;
}

.chevron-placeholder {
    width: 20px;
}

.sighting-glyphicon-ring {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    border: 5px solid;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    text-align: center;
}

.sighting-glyphicon-ring > .glyphicon {
    display: block;
    font-size: 30px;
}

.criterion-card-menu {
    position: absolute;
    top: 0;
    right: -30px;
}

.criterion-card-menu > .btn-group {
    display: flex;
    flex-direction: column;
}

.gallery-image-card {
    display:flex;
    flex-direction:column;
    justify-content:center;
    
    width:100%;
    height:150px;
    
    overflow: hidden;
    
    box-shadow: black 1px 1px 4px -1px; 
    margin-bottom: 5px;
}

.smaller-accordion-heading .panel-title {
    font-size: 15px;
    line-height: 23px;
}

.smaller-accordion-heading .panel-group {
    margin-bottom: 0
}

.smaller-accordion-heading .panel-heading {
    height: 33px;
    padding: 7px;
}

.snippet-container a:hover {
    text-decoration: none;
}

.snippet-container a {
    text-decoration: none;
}

/* SETTINGS VIEW */

.user-settings-table td {
    padding:  10px;
}

.user-settings-table td:first-child {
    text-align: right;
}

.user-settings-table td > label {
    margin: 0;
}