@import url(https://fonts.googleapis.com/css?family=Montserrat:400,300,300italic,400italic,700,700italic,500&display=swap);

html,
body {
    background-color: #F0F0F0;
}

* {
    font-family: 'Montserrat', Helvetica, sans-serif;
    /* color: #333447; Admin navbar icon link color*/
    line-height: 1.5;
}

.menu {
    list-style-type: none;
    margin-top: 32px;
    padding: 0;
    background-color: #c5c5c580;
}

.menu li {
    display: inline-block;
}

.menu a {
    color: #616161;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
}

.menu a:hover {
    background-color: #4CAF5020;
}

.menu a.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

a .material-icons {
    font-variant-caps: normal;
}

.card-h100 {
    height: 100%;
    display: flex;
    flex-direction: column;
}
  
.card-content-h100 {
    flex-grow: 1;
}

.card-footer-h100 {
    margin-top: auto;
  }
  

/* POSITIONING */

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Rich text content (Trix / Lexxy) */

.trix-button-group {
    margin-right: 1rem;
}

.trix-button-group--history-tools {
    margin-right: 0;
}


.lexxy-my-content,
lexxy-editor {
    line-height: 1.5;
}

.lexxy-my-content *,
lexxy-editor * {
    box-sizing: border-box;
}

.lexxy-my-content a,
lexxy-editor a {
    text-decoration: none;
    color: rgb(var(--bs-success-rgb));
}

.map-image {
    opacity: 1;
    display: block;
    width: 100%;
    height: 300px;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

#map-container:hover .map-image {
    opacity: 0.3;
}

#map-container:hover .middle {
    opacity: 1;
}