:root {
    --background-color: #fafafa;
    --background-color-dark: #aaa;
    --background-color-darker: #777;
    --disabled-color: #f0f0f0;
    --highlight: #f0f0f0;
    --highlight-dark: #33333333;
    --primary: #D198B7;
    --primary-light: #D198B788;
    --primary-dark: #c087a6;
    --primary-text: #222;
    --main-text: #222;
    --main-text-alt: #222;
    --primary-subtext: #777;
    --secondary: #2E6748;
    --secondary-light: #2E674888;
    --secondary-dark: #1D5637;
    --error: #EF4036;
    --error-light: #EF403688;
    --success: #2E6748;
    --focus-color: #4CB7C7;

    --navigation-height: 100px;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body, html {
    margin: 0;
    padding: 0;
}

/*body {*/
/*    background-color: #CCCCCC99;*/
/*}*/

img {
    max-width: 100%;
    object-fit: contain;
}

img.cover {
    object-fit: cover;
}

h1, h2, h3, h4, h5 {
    font-family: "Roboto Light", sans-serif;
    line-height: 1.0;
    color: var(--primary-text);
}

h1 > span, h2 > span, h3 > span, h4 > span, h5 > span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
}

span, p {
    color: var(--main-text);
}

span.alt, p.alt {
    color: var(--main-text-alt);
}

h1.center, h2.center, h3.center, h4.center, h5.center {
    text-align: center;
}

.primary {
    color: var(--primary);
}

.primary-background {
    background-color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.secondary-background {
    background-color: var(--secondary);
}

.black {
    color: #000;
}

.italic {
    font-style: italic;
}

.tooltip {
    background-color: #fff !important;
    box-shadow: 0 0 5px 4px #0000000a;
    opacity: 0;
    transition: opacity 250ms;
    padding: 10px;
}

.tooltip.show {
    opacity: 1;
}

.tooltip:not(.show) {
    pointer-events: none;
}

a, a.primary {
    color: var(--primary);
    transition: all 200ms ease-out;
    line-height: normal;
}

a i.fa, .ql-snow .ql-tooltip a {
    color: var(--secondary);
    transition: all 200ms;
    /*font-size: 22px;*/
}

a i.fa {
    color: inherit;
}

a i.fa:not(.smol) {
    font-size: inherit;
}

a i.fa.animated {
    margin-left: 5px;
    transition: transform 300ms ease-in-out;
}

a:hover i.fa.animated {
    transform: rotateX(180deg) translateX(5px);
}

a:hover:not(.social-media), a:hover:not(.social-media) i.fa:not(.alt) {
    text-decoration: none;
    cursor: pointer;
    /*color: var(--primary);*/
}

i.fa.alt {
    color: #fff;
}

i.fa.no-interaction {
    color: inherit;
}

.animated {
    transition: all 300ms ease-in-out;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.block-text {
    padding: 20px;
    margin-top: 20px;
    max-width: 400px;
}

.block-text.x2 {
    max-width: 800px;
}

.block-text h2, h2.block-text {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 20px;
}

.block-text p {
    font-size: 22px;
    font-weight: 100;
    line-height: 120%;
    margin: 20px 0;
}

.block-text.white {
    color: white;
}

.upper {
    text-transform: uppercase;
}

.upper {
    text-transform: lowercase;
}

.centered-text p,
.centered-text span,
.centered-text h1,
.centered-text h2,
.centered-text h3 {
    text-align: center;
}

.bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

span.bold {
    font-size: inherit;
}

.dark {
    color: #222;
}

a.active {
    font-family: 'Roboto', sans-serif;
}

a:hover {
    cursor: pointer;
}

a, a.primary {
    color: var(--primary);
}

a:not(.secondary):hover, a.primary:hover,
a:not(.secondary):hover>p, a.primary:hover>p,
a:not(.secondary) h5, a.primary h5 {
    color: var(--primary-dark);
}

a:not(.primary):hover, a.secondary:hover,
a:not(.primary):hover>p, a.secondary:hover>p,
a:not(.primary) h5, a.secondary h5 {
    color: var(--secondary-dark);
}

a.main {
    color: var(--main-text)  !important;
}

a.main > * {
    color: var(--main-text)  !important;
}

.max-header-height {
    max-height: 100px;
    overflow: hidden;
}

.overflow-header {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 5px;
    padding-bottom: 2px;
}

.overflow-header.single-line {
    -webkit-line-clamp: 1;
}

.navigation-header a {
    font-size: 22px;
    transition: color 200ms ease-in-out;
}

p {
    margin: 0 0 10px 0;
}

.two-line-overflow {
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

i.fa.large {
    font-size: 22px;
}

.large {
    font-size: 125%;
}

.smol {
    font-size: 14px;
}

.smoller {
    font-size: 12px;
}

.massive-emoji {
    font-size: 125px;
}

.large-emoji {
    font-size: 85px;
}

p.error, span.error, i.fa.error {
    margin: 10px;
    color: var(--error);
    font-weight: bold;
    transition: opacity 200ms ease-in-out;
}

p.success, span.success, i.fa.success {
    color: var(--success);
    font-weight: bold;
    transition: opacity 200ms ease-in-out;
}

div.bottom-shadow {
    box-shadow: 0 4px 19px 2px #00000022;
}

div.screen-container {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

div.main-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

div.main-container > div.main {
    flex: 1;
}

div.main-container > div.footer {
    flex-shrink: 0;
}

div.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: #CCCCCC99;*/
    /*justify-content: center;*/
}

div.center-full-screen {
    margin-top: 110px;
    height: calc(100vh - 260px);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
}

div.full-body-container {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.lightgray-background {
    background-color: #f8f8f8;
}

div.background-highlight {
    background-color: var(--highlight);
}

div.background-color {
    background-color: var(--background-color);
}

.strikethrough:not(tr) {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

.strikethrough:not(tr)::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0 auto;
    border-bottom: 1px solid var(--background-color-dark);
    width: 100%;
    z-index: -1;
}

.strikethrough:not(tr) > .line-behind-title {
    background: var(--background-color);
    z-index: 1;
    padding: 0 10px;
}

div.bl-flex-row {
    flex-direction: row;
    display: flex;
}

div.wrap {
    display: flex;
    flex-wrap: wrap;
}

.block {
    display: block;
}

div.bl-flex-column {
    flex-direction: column;
    display: flex;
}

div.bl-flex-column-center {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.bl-flex-column-spaced, div.flex-column-spaced {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

div.bl-flex-column-top {
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    /*align-items: center;*/
}

div.bl-flex-column-center-bottom {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

div.bl-flex-column-right {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

div.bl-flex-column-left {
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
}

div.bl-flex-row-center {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: flex;
}

div.bl-flex-row-spaced {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

div.bl-flex-row-center-left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

div.bl-flex-row-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    display: flex;
}

div.bl-flex-row-left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

.flex-children > * {
    flex: 1;
    display: flex;
}

div.horizontal-container {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

.no-interaction {
    pointer-events: none;
}

div.text-container {
    width: 100%;
    background: #FFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
}

div.sm-max-width {
    width: 100%;
    max-width: 325px;
}

div.md-max-width {
    width: 100%;
    max-width: 500px;
}

div.lg-max-width {
    width: 100%;
    max-width: 850px;
}

div.xl-max-width {
    width: 100%;
    max-width: 1200px;
}

div.md-max-height {
    max-height: 400px;
}

div.lg-max-height {
    max-height: 700px;
}

div.xl-max-height {
    max-height: 1000px;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-hidden {
    overflow: hidden;
}

.margin-left {
    margin-left: 10px;
}

.margin-left.x2 {
    margin-left: 20px;
}

.margin-top {
    margin-top: 20px;
}

.margin-top.x1 {
    margin-top: 30px;
}

.margin-top.x2 {
    margin-top: 40px;
}

.margin-top.x3 {
    margin-top: 60px;
}

.margin-top.x4 {
    margin-top: 80px;
}

.margin-top.x8 {
    margin-top: 160px;
}

.margin-top.smol {
    margin-top: 10px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-bottom.x2 {
    margin-bottom: 40px;
}

.margin-bottom.x4 {
    margin-bottom: 80px;
}

.margin-bottom.smol {
    margin-top: 10px;
}

.margin-right {
    margin-right: 10px;
}

.margin-right.x2 {
    margin-right: 20px;
}

.margin {
    margin: 20px;
}

.margin.x2 {
    margin: 40px;
}

.padded {
    padding: 20px;
}

.padded-bottom, .padding-bottom {
    padding-bottom: 20px;
}

.padded-bottom.large, .padding-bottom.large {
    padding-bottom: 150px;
}

.padded-top {
    padding-top: 20px;
}

.padded.x2 {
    padding: 40px;
}

.padded.x3 {
    padding: 60px;
}

.padded.x4 {
    padding: 80px;
}

.padded-left {
    padding-left: 10px;
}

.padded-left.x2 {
    padding-left: 20px;
}

.padded-right {
    padding-right: 10px;
}

.padded-right.x2 {
    padding-right: 20px;
}

.padded-side, .padded-side-not-small {
    padding: 0 20px;
}

.padded-side.x2, .padded-side-not-small.x2 {
    padding: 0 40px;
}

.padded-not-side, .padded-not-side-small {
    padding: 10px 0;
}

.padded-not-side.x2 {
    padding: 20px 0;
}

.margin-side {
    margin: 0 10px;
}

.margin-side.x2 {
    margin: 0 20px;
}

div.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.center-top {
    display: flex;
    flex: 1;
    justify-content: center;
}

div.center-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    /*align-items: center;*/
}

div.offset-top {
    position: relative;
    top: -20vw;
}

div.inline {
    display: inline;
}

.shadow {
    box-shadow: 0 0 20px 10px #00000033;
}

.shadow-small {
    box-shadow: 0 0 7px 2px #00000011;
}

.shadow-small-onhover {
    transition: all 275ms;
}

.shadow-small-onhover:hover {
    box-shadow: 0 0 7px 2px #00000011;
}

.leftline {
    border-left: 1px solid var(--highlight);
    padding: 5px 15px;
}

.leftline.dark {
    border-color: var(--highlight-dark);
}

.flex {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-row-nowrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

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

div.flex-column-reverse {
    flex-direction: column-reverse;
    display: flex;
}

div.flex-column-center {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.flex-column-top {
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    /*align-items: center;*/
}

div.flex-column-center-bottom {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

div.flex-column-right {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

div.flex-column-left {
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

div.flex-center,
div.flex-row-center {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: flex;
}

div.flex-row-spaced {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

div.flex-row-center-left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

div.flex-row-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    display: flex;
}

div.flex-row-left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

.border-red {
    border: 1px solid red;
}

.border-light {
    border: 1px solid var(--highlight) !important; /* NOTE: the important tag here is only used to ignore the stylization of "_borders.scss" (wherever thats coming from) */
    border-radius: 5px;
    /*padding: 10px;*/
}

.border {
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    /*padding: 10px;*/
}

.border.secondary {
    border: 1px solid var(--secondary) !important;
}

.border.primary {
    border: 1px solid var(--primary) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--highlight) !important;
}

.border-top {
    border-top: 1px solid var(--highlight) !important;
}

.border-top-primary {
    border-top: 1px solid var(--primary) !important;
}

.border-bottom-round {
    border: 1px solid var(--highlight) !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.border-round {
    border-radius: 5px;
}

.underline {
    border-bottom: 1px solid var(--highlight);
}

.underline.primary {
    border-bottom-color: var(--primary);
}

.overline {
    padding-top: 10px;
    border-top: 1px solid #EEE;
}

.overline-dark {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.underline.dashed, .overline.dashed, .overline-dark.dashed {
    border-bottom-style: dashed;
}

.drag-drop-container {
    border: 1px solid var(--highlight);
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 300ms;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100px;
    max-height: 75vh;
    padding: 15px;
    background-color: #fff;
}

.drag-drop-container > * {
    pointer-events: none;
}

.progress-indicator {
    background-color: var(--secondary);
    width: 0%;
    height: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.progress-indicator.small {
    height: 10%;
    top: unset;
}

.progress-indicator.animate {
    transition: all 200ms ease-out;
}

/*<!-- Aspect ratio 1080x1920, or 0.5625 -->*/
.hero-image, .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    min-height: 250px;
}

.hero-container .logo {
    position: absolute;
    top: 0.2vh;
    width: 15vw;
    min-width: 80px;
    /*height: 200px;*/
    z-index: 1;
}

div.hero-image-text {
    position: absolute;
    bottom: 5px;
    right: 15px;
}

div.hero-image-text > h4 {
    color: #feede4;
    font-size: 1.5rem;
}

.floating-image {
    position: absolute;
    z-index: 0;
}

.grayscale {
    filter: grayscale(100%);
}

.whitesplash {
    color: #f8f8f8 !important;
}

.logo.clickable, .clickable, .cursor-hover, .pointer-onhover {
    cursor: pointer;
}

.light-background-hover {
    transition: 275ms ease-out;
}

.light-background-hover:hover {
    background-color: var(--highlight);
}

.clickable > i.fa {
    color: var(--primary);
}

.media-text {
    background-color: #CCCCCC44;
}

.media-text.gradient {
    background-image: linear-gradient(#CCCCCC44, #FFF 100%);
}

.text-spacing {
    letter-spacing: 2px;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

div.background-fade {
    /*background: linear-gradient(to bottom, rgba(48, 48, 48, 0) 0%, rgba(48, 48, 48, 0.5) 25%, rgba(48, 48, 48, 0.67) 50%, rgba(48, 48, 48, 0.5) 75%, rgba(48, 48, 48, 0) 100%);*/
    box-shadow: 0 0 30px 30px #77777766;
    background-color: #77777766;
}

div.light-background-fade {
    /*background: linear-gradient(to bottom, rgba(48, 48, 48, 0) 0%, rgba(48, 48, 48, 0.5) 25%, rgba(48, 48, 48, 0.67) 50%, rgba(48, 48, 48, 0.5) 75%, rgba(48, 48, 48, 0) 100%);*/
    box-shadow: 0 0 30px 30px #f3f3f366;
    background-color: #f3f3f366;
}

div.dark-background-fade {
    /*background: linear-gradient(to bottom, rgba(48, 48, 48, 0) 0%, rgba(48, 48, 48, 0.5) 25%, rgba(48, 48, 48, 0.67) 50%, rgba(48, 48, 48, 0.5) 75%, rgba(48, 48, 48, 0) 100%);*/
    box-shadow: 0 0 30px 30px #33333355;
    background-color: #33333355;
}

div.offset-navigation {
    margin-top: 100px;
}

/* MARK: Navigation */
div.navigation-header {
    height: var(--navigation-height);
    width: 100vw;
    padding: 0 10px;
    /*background-color: #FFFFFF;*/
    position: fixed;
    z-index: 9;
    top: 0;
    transition: all 100ms;
}

div.navigation-header .logo {
    height: 100%;
}

div.navigation-header .hamburger {
    cursor: pointer;
    color: #666;
    padding: 5px;
    z-index: 2;
    /*opacity: 0;*/
    /*transition: all 250ms;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 40px;
    height: 40px;
    position: relative;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

div.navigation-header .hamburger span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #888;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

div.navigation-header .hamburger span:nth-child(1) {
    top: 0;
}

div.navigation-header .hamburger span:nth-child(2), div.navigation-header .hamburger span:nth-child(3) {
    top: 13px;
}

div.navigation-header .hamburger span:nth-child(4) {
    top: 26px;
}

div.navigation-header .hamburger.open span:nth-child(1) {
    top: 13px;
    width: 0;
    left: 50%;
}

div.navigation-header .hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

div.navigation-header .hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

div.navigation-header .hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

div.navigation-header .hamburger:hover {
    color: #000;
    /*box-shadow: 0 0 15px 5px #0000000a;*/
}

div.navigation-header .side-panel {
    position: absolute;
    left: 100vw;
    width: 200px;
    height: 100vh;
    top: 0;
    padding: 100px 0 0 0;
    z-index: 1;
    background-color: #FFFFFFcc;
    box-shadow: 0 0 15px 5px #0000000a;
    display: block;
}

div.navigation-header .side-panel.active {
    left: calc(100vw - 200px);
}

div.navigation-header .side-panel li {
    /*padding: 5px 5px 15px 5px;*/
    list-style: none;
    background-color: #FFF;
}

div.navigation-header .side-panel li a {
    padding: 10px;
    display: flex;
    flex: 1;
}

div.navigation-header .side-panel li:last-child {
    height: 150px;
    background: linear-gradient(#FFF 30%, #FFFFFF00);
}

.position-absolute {
    position: absolute !important;
}

.position-absolute.bottom, .position-fixed.bottom {
    bottom: 10px;
}

.position-absolute.fill {
    inset: 0;
}

.bottom.x2 {
    bottom: 30px
}

.position-absolute.left, .position-fixed.left {
    left: 10px;
}

.left.x2 {
    left: 30px;
}

.round {
    border-radius: 5px;
}
.round.x2 {
    border-radius: 10px;
}

.round.full {
    border-radius: 50%;
}

/* MARK: Image Gradient */

div.image-gradient-container {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

div.image-gradient-container img {
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

div.image-gradient-container:hover img {
    -webkit-transform: scale(1.25);
	transform: scale(1.25);
    -webkit-filter: blur(5px);
	filter: blur(5px);
}

div.image-gradient-container:hover h4 {
    -webkit-transform: scale(1.25);
	transform: scale(1.25);
}

div.image-gradient-container:hover .gradient-overlay {
    background-color: #000000bb;
}

div.image-gradient-container div.outline {
    border: 1px solid #DDD;
    border-radius: inherit;
    margin: 15px;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
}

div.image-gradient-container .center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

div.image-gradient-container h4 {
    z-index: 2;
    color: #DDD;
    letter-spacing: 2px;
    text-align: center;
    margin: 5px;
    transition: transform 300ms ease-in-out;
}

div.gradient-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #00000088;
    border-radius: inherit;
    transition: background-color 300ms ease-in-out;
}

.gradient-underlay {
    position: absolute;
    /*top: 0;*/
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: #00000088;
    border-radius: inherit;
    transition: background-color 300ms ease-in-out;
}

.fill-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* MARK: Card styles */
:root {
    --card-background-color: #fff;
    --card-border-color: var(--highlight);
}

.card {
    background-color: var(--card-background-color);
    border: 1px solid var(--card-border-color);
    border-radius: 5px;
    padding: 20px;
}


/* MARK: toggle button */
:root {
    --toggle-width: 60px;
    --toggle-padding: 4px;
    --toggle-padding-side: 1px;
    --toggle-button-width: 30px;
    --toggle-color: #ddd;
    --toggle-color-active: var(--primary);
    --toggle-color-active-highlight: var(--primary-dark);
    --toggle-color-button: #fff;
    --toggle-transition-duration: 250ms;
}

.toggle-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.toggle-container > span {
    margin-left: 10px;
    font-weight: bold;
    opacity: 0.4;
    transition: opacity var(--toggle-transition-duration) ease-in-out;
}

.toggle-container > .toggle.active + span {
    opacity: 1;
}

.toggle-container input {
    display: none !important;
}

.toggle {
    height: var(--toggle-button-width);
    width: var(--toggle-width);
    min-width: var(--toggle-width);
    background-color: var(--toggle-color);
    padding: var(--toggle-padding);
    border-radius: calc(var(--toggle-button-width) / 2);
    position: relative;
    transition: all var(--toggle-transition-duration) ease-in-out;
    border: 0;
}

.toggle:not(.disabled):hover {
    cursor: pointer;
}

.toggle.disabled:hover {
    cursor: not-allowed;
}

.toggle .toggle-button {
    background-color: var(--toggle-color-button);
    width: calc(var(--toggle-button-width) - calc(var(--toggle-padding) * 2));
    border-radius: calc(var(--toggle-button-width) / 2);
    position: absolute;
    left: calc(var(--toggle-padding) + var(--toggle-padding-side));
    top: var(--toggle-padding);
    bottom: var(--toggle-padding);
    transition: transform var(--toggle-transition-duration) ease-in-out;
}

.toggle.active {
    background-color: var(--toggle-color-active);
}

.toggle.active:hover {
    background-color: var(--toggle-color-active-highlight);
}

.toggle.active .toggle-button {
    transform: translateX(calc(var(--toggle-width) - var(--toggle-button-width) - calc(var(--toggle-padding) / 2) - calc(var(--toggle-padding-side) * 2)));
}

/* MARK: Animations */

.format-date-onload {
    opacity: 0;
}

.animate-on-enter {
    opacity: 0;
    transition: all 1000ms;
    transition-timing-function: ease-out;
}

.animate-on-enter.fast {
    transition: all 500ms;
}

.opacity {
    transition: opacity 200ms ease-in-out;
    opacity: 1;
}

.opacity.hide {
    opacity: 0;
}

.animate-on-enter.animate {
    opacity: 1;
}

.animate-offset-on-enter {
    top: 25px;
    position: relative;
    transition: all 1000ms;
    transition-timing-function: cubic-bezier(1, 1, 4, 4);
}

.animate-offset-on-enter.x2 {
    top: 50px;
}

.animate-offset-on-enter.animate {
    transform: translateY(-25px);
}

.animate-offset-on-enter.animate.x2 {
    transform: translateY(-50px);
}

.animate-offset-horizontal-on-enter {
    left: 25px;
    position: relative;
    transition: all 1000ms;
    transition-timing-function: cubic-bezier(1, 1, 4, 4);
}

.animate-offset-horizontal-on-enter.x2 {
    left: 50px;
}

.animate-offset-horizontal-on-enter.animate {
    transform: translateX(-25px);
}

.animate-offset-horizontal-on-enter.animate.x2 {
    transform: translateX(-50px);
}

.transition-delay-long {
    transition-delay: 1800ms !important;
}

.transition-delay-medium {
    transition-delay: 1000ms !important;
}

.text-bubble-on-enter > span:empty {
    width: 5px;
}

.text-bubble-on-enter > span {
    display: inline-block;
}

.text-bubble-on-enter.animate > span {
    animation: bubbleText 750ms ease-in-out;
}

@keyframes bubbleText {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
        color: #000;
        font-weight: bold;
    }
    100% {
        transform: scale(1.0);
    }
}

.shimmer{
    padding: 0 40px;
    text-align: center;
    color: #ffffff19;
    /*color: #fff;*/
}

.shimmer {
  background: -webkit-gradient(linear,left top,right top,from(#222),to(#222),color-stop(.5,#fff));
  background: -moz-gradient(linear,left top,right top,from(#222),to(#222),color-stop(.5,#fff));
  background: gradient(linear,left top,right top,from(#222),to(#222),color-stop(.5,#fff));
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
    /*-webkit-animation-direction: alternate-reverse;*/
    /*-moz-animation-direction: alternate-reverse;*/
  background-repeat: repeat;
  background-position: 0 0;
  background-color: #222;
}

@-moz-keyframes shimmer {
    0% { background-position: top left; }
    100% { background-position: top right; }
}

@-webkit-keyframes shimmer {
    0% { background-position: top left; }
    100% { background-position: top right; }
}

@-o-keyframes shimmer {
    0% { background-position: top left; }
    100% { background-position: top right; }
}

@keyframes shimmer {
    0% { background-position: top left; }
    100% { background-position: top right; }
}

@keyframes grow-shrink {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}

@keyframes shake-horizontal {
  0% { transform: translateX(-2px) rotate(-1deg); }
  33% { transform: translateX(2px) rotate(1deg); }
  67% { transform: translateX(-2px) rotate(-1deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

.shake-horizontal {
    animation: shake-horizontal 333ms;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-2px, -4px) rotate(-2deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-2px, 4px) rotate(-2deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-2px, -2px) rotate(2deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake-excessive {
  0% { transform: translate(100px, 100px) rotate(0deg); }
  10% { transform: translate(-200px, -400px) rotate(-20deg); }
  20% { transform: translate(-300px, 000px) rotate(10deg); }
  30% { transform: translate(300px, 200px) rotate(0deg); }
  40% { transform: translate(100px, -100px) rotate(15deg); }
  50% { transform: translate(-200px, 400px) rotate(-20deg); }
  60% { transform: translate(-300px, 100px) rotate(40deg); }
  70% { transform: translate(300px, 100px) rotate(-100deg); }
  80% { transform: translate(-200px, -200px) rotate(25deg); }
  90% { transform: translate(100px, 200px) rotate(0deg); }
  100% { transform: translate(100px, -200px) rotate(50deg); }
}

.shake-excessive {
    animation: shake-excessive 2s infinite;
}

@keyframes text-glow-aggressive {
  0% { text-shadow: #fff 0 0 15px; }
  33% { text-shadow: #EF4036 0 0 15px; }
  67% { text-shadow: #DAA520 0 0 15px; }
  100% { text-shadow: #8B4513 0 0 15px; }
}

/* MARK: Quill overrides */
.ql-toolbar {
    border: 1px solid var(--highlight) !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #fff;
}

.ql-picker-options > span:not(:last-child) {
    font-family: 'Belleza', sans-serif;
    line-height: 1.0;
}

.ql-picker-options > span:last-child {
    font-family: 'Roboto Light', sans-serif;
    line-height: 1.0;
}

.ql-snow .ql-out-bottom {
  visibility: visible;
}

/* MARK: Lightgallery overrides */

.lightgallery-projects {
    display: none; /* Hide gallery initially until lightgallery-configuration.js file loads */
}

.menu-arrow {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    top: calc(50% - 20px);
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 5px 4px #0000001a;
    z-index: 1;
    transition: opacity 225ms ease-in-out;
    opacity: 0;
}

.menu-arrow > i {
    color: gray;
    position: relative;
    font-size: 25px;
}

.menu-arrow.left > i {
    left: -3px;
}

.menu-arrow.right > i {
    right: -2px;
}

.menu-arrow:hover {
    cursor: pointer;
}

.menu-arrow.left {
    left: 5px;
}

.menu-arrow.right {
    right: 5px;
}

.inherit-color {
    color: inherit !important;
}

/* TODO - figure out odd vs even children */
/*#lightgallery img:nth-child(1) {*/
/*    margin-right: 5px;*/
/*    border: 1px solid #cccccc77;*/
/*}*/

/*#lightgallery img:nth-child(0) {*/
/*    margin-left: 5px;*/
/*    border: 1px solid #cccccc77;*/
/*}*/

/* MARK - input and buttons */
div.input-container:not(.textarea) {
    height: 45px;
}

div.input-container {
    height: auto;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    transition: 200ms all ease-in-out;
}

div.input-container:not(.inline) {
    flex: 1;
}

div.input-container.alt {
    margin-top: 10px;
    /*height: auto;*/
    border-radius: 5px;
    border: 1px solid var(--highlight);
    background-color: #fff;
}

div.input-container.inline {
    display: inline-flex;
}

div.input-container.focus {
    border: 1px solid var(--focus-color);
}

div.input-container.focus i.fa {
    color: var(--focus-color);
}

div.input-container.error {
    border: 1px solid var(--error-light);
}

div.input-container.error i.fa {
    color: var(--error-light);
}

/*div.input-container.error + div.input-container.textarea {*/
/*    margin-top: 45px;*/
/*}*/

div.input-container.error + span.error {
    color: var(--error);
    font-size: 14px;
    top: -10px;
    /*left: 45px;*/
    position: relative;
}

div.input-container.inline p, div.input-container.inline input[type=checkbox] {
    margin-top: 10px;
}

div.input-container.alt:not(.inline) {
    margin-top: 30px;
}

div.input-container.alt.m:not(.inline) {
    margin-top: 10px;
}

div.input-container:not(.alt) > div:first-child {
    margin-right: 15px;
}

div.input-container.disabled {
    background-color: var(--disabled-color);
}

div.input-container.alt > div:first-child:not(:last-child) {
    padding: 5px 10px;
    border-right: 1px solid var(--highlight);
    /*background-color: #fff;*/
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

div.input-container.error > div:first-child:not(:last-child) {
    border-color: var(--error);
}

div.input-container > div:last-child {
    margin: 0;
    flex: 1;
    position: relative;
}

div.input-container > div:last-child:not(.textarea) {
    padding: 5px;
}

div.input-container input, div.input-container textarea {
    width: 100%;
    background-color: transparent;
}

div.input-container textarea, .ql-editor {
    border: 0;
    outline: none;
    flex: 1;
    overflow: hidden;
    padding: 10px;
}

.admin-main div.input-container textarea {
    min-height: 300px;
    resize: none;
}

div.input-container.textarea.fixed.small {
    height: 100px;
}

div.input-container.textarea.fixed {
    height: 300px;
    overflow: scroll;
}

/*div.input-container textarea:focus {*/
/*    border: 1px solid var(--highlight);*/
/*    border-radius: 5px;*/
/*}*/

div.input-container.alt label:not(.inline) {
    top: 10px;
}

div.input-container label:not(.inline), div.input-container textarea {
    /*color: #777;*/
    display: block;
    font-size: 16px;
}

div.input-container label:not(.inline) {
    left: 10px;
    position: absolute;
    margin-bottom: 2px;
    top: 15px;
    z-index: 1;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    -webkit-transition: transform 150ms ease-out, font-size 150ms ease-out;
}

div.input-container.disabled label:hover, input:disabled {
    cursor: not-allowed;
}

div.input-container label:not(.disabled):hover {
    cursor: text;
}

div.input-container label.inline {
    padding: 10px 20px;
    margin: 0;
}

div.input-container label.inline:hover {
    cursor: pointer;
}

div.input-container input[type=checkbox] {
    width: unset;
    flex: none;
    padding: 10px;
}

div.input-container + p {
    margin-left: 10px;
    display: initial;
}

input.form_input {
    border-width: 0;
    display: inline-block;
    border-bottom: 1px solid #F5F5F5;
    padding: 15px 5px 5px 5px;
    outline: 0;
    flex: 1;
    box-shadow: 0 1px 0 0 #e5e5e5;
    transition: box-shadow 150ms ease-out;
}

input.center {
    text-align: center;
}

/* TODO - style checkboxes */
/*input.form_input[type="checkbox"] {*/
/*    color: var(--secondary);*/
/*    background-color: var(--secondary);*/
/*}*/

div.input-container.alt input.form_input {
    border: 0;
    box-shadow: none;
    padding: 5px;
}

div.input-container.alt input.form_input::placeholder,
div.input-container.alt textarea.form_input::placeholder,
div.input-container.alt.disabled input.form_input {
    opacity: 0.5;
}

div.input-container.alt input.form_input + label {
    pointer-events: none;
}

input.form_input.fixed + label:not(.inline),
textarea.form_input + label:not(.inline),
input.form_input:focus + label:not(.inline),
input.form_input:not(:placeholder-shown) + label:not(.inline),
div.input-container.alt select + label:not(.inline) {
    transform: translateY(-115%);
    -webkit-transform: translateY(-115%);
    font-size: .75em;
}

div.input-container.alt input.form_input.fixed + label:not(.inline),
div.input-container.alt textarea.form_input + label:not(.inline),
div.input-container.alt input.form_input:focus + label:not(.inline),
div.input-container.alt input.form_input:not(:placeholder-shown) + label:not(.inline),
div.input-container.alt select + label:not(.inline) {
    transform: translateY(-165%);
    -webkit-transform: translateY(-165%);
    color: var(--primary-subtext);
    font-weight: bold;
}

select, input, textarea {
    padding: 5px 10px;
    color: var(--main-text);
    border-radius: 5px;
    border: 1px solid var(--highlight);
    display: inherit;
    background-color: #fff;
    transition: 200ms border ease-out;
}

select.error, input.error {
    border: 1px solid var(--error-light);
}

select.inline {
    height: 35px;
}

select.text-only:not(.lightgray-background) {
    border: 0;
    border-bottom: 1px solid var(--highlight);
    background: none;
    text-align: center;
}

button.arrow-button {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: 0;
    border-radius: 10px;
    background-color: var(--secondary-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

button.arrow-button:hover {
    cursor: pointer;
}

button.arrow-button > i {
    color: white;
}

a.submit-button {
    height: unset !important;
    text-decoration: none;
    padding: 10px 20px !important;
}

a.submit-button:not(.disabled):not(:disabled):hover {
    color: #ffffff;
}

.submit-button:not(.text) {
    /*width: 100%;*/
    height: 40px;
    padding: 5px 15px;
    border: 0;
    font-size: 16px;
    /*margin-top: 15px;*/
    border-radius: 10px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 200ms ease-in-out;
}

.submit-button:not(.disabled):not(:disabled):hover {
    cursor: pointer;
}

.submit-button.text {
    border: none;
    background: none;
    outline: none;
    color: var(--primary);
    transition: color, filter 200ms;
}

.submit-button.text.secondary {
    color: var(--secondary);
}

.submit-button.text.error, i.fa.fa-user.error {
    color: var(--error);
    font-weight: bold;
}

.submit-button.text:not(.disabled):not(:disabled):hover {
    filter: brightness(0.875);
}

.submit-button:not(.text).secondary {
    background-color: var(--secondary);
}

.submit-button:not(.text).tertiary {
    background-color: var(--tertiary);
}

.submit-button:disabled, .submit-button.disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.submit-button.disabled {
    background-color: var(--main-text);
}

.submit-button.disabled.alt {
    background-color: var(--main-text-alt);
}

.submit-button:not(.hollow):not(.text) i.fa {
    color: white !important;
    margin-right: 10px;
}

.submit-button.hollow i.fa {
    color: inherit;
    padding: 5px;
}

.submit-button.hollow:disabled {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.submit-button.hollow.secondary:disabled {
    color: var(--secondary-light);
    border-color: var(--secondary-light);
}

.submit-button.hollow.tertiary:disabled {
    color: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
}

.submit-button:not(.disabled):not(:disabled):not(.hollow):not(.text):not(.scale-hover):hover {
    background-color: var(--primary-dark);
}

.submit-button.hollow:not(.disabled):not(:disabled):not(.scale-hover):hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.submit-button.hollow.secondary:not(.disabled):not(:disabled):not(.scale-hover):hover {
    color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.submit-button.secondary:not(.disabled):not(:disabled):not(.hollow):not(.scale-hover):not(.text):hover {
    background-color: var(--secondary-dark);
}

.submit-button.hollow.tertiary:not(.disabled):not(:disabled):not(.scale-hover):hover {
    color: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
}

.submit-button.tertiary:not(.disabled):not(:disabled):not(.hollow):not(.scale-hover):not(.text):hover {
    background-color: var(--tertiary-dark);
}

.submit-button.hollow {
    border: 1px solid var(--primary);
    background-color: #fff;
    color: var(--primary);
}

.submit-button.secondary.hollow {
    border: 1px solid var(--secondary);
    background-color: #fff;
    color: var(--secondary);
}

.submit-button.inline {
    width: unset;
    height: unset;
    margin: unset;
    padding: 3px 20px;
    font-size: 14px;
    border-radius: 5px;
}

p > span.newspaper-print {
    font-size: 120%;
    font-weight: normal;
}

h3 > span.newspaper-print {
    font-size: 200%;
    font-weight: normal;
}

/* Mark: Tables */
table {
    width: 100%;
    border: 1px solid var(--highlight);
    border-radius: 5px;
}

table tr.selected {
    border: 1px solid var(--secondary-light);
}

table tr > * {
    padding: 10px;
}

table tr:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

table tr:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

table tr {
    background-color: inherit;
}

table tr:nth-child(2n+1) {
    background-color: var(--highlight);
}

.hidden {
    display: none !important;
}

.show-small-only {
    display: none !important;
}

.sm-image-height {
    max-height: 350px;
}

.md-image-height {
    max-height: 500px;
}

.lg-image-height {
    max-height: 625px;
}

.sm-image-height > img, .md-image-height > img, .lg-image-height > img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MARK: blog/portfolio/etc */
.blog-post.preview {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

div > div.bottom-gradient {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffffcc 60%, #fff 90%);
}

.background-fill {
    background-color: #fff;
}

.background-primary {
    background-color: var(--primary);
}

.background-primary-alt {
    background-color: var(--primary-alt);
}

.background-highlight {
    background-color: var(--highlight);
}

.background-secondary {
    background-color: var(--secondary);
}

.primary-fill {
    background-color: var(--primary);
}

.primary-fill.hollow {
    background-color: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.show-on-hover {
    opacity: 0;
    z-index: 2;
    transition: opacity 250ms ease-in-out;
}

.show-on-hover.quick {
    transition: opacity 75ms ease-in;
}

div:hover > .show-on-hover {
    opacity: 1;
}

.couple-width {
    transition: width 200ms ease-in-out;
}

/* MARK: Cards/product rows/portfolio items */
.feature-card {
    border-radius: 10px;
    border: 1px solid var(--highlight);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.scale-hover {
    transition: all 150ms ease-in-out;
}

.scale-hover:hover, .scale-hover.active {
    transform: scale(1.01);
    cursor: pointer;
    box-shadow: 0 0 5px 4px #0000000a;
}

.scale-hover.large:hover, .scale-hover.large.active {
    transform: scale(1.1);
}

/*@keyframes wiggle {*/
/*    0% { transform: rotate(0deg); }*/
/*   80% { transform: rotate(0deg); }*/
/*   85% { transform: rotate(5deg); }*/
/*   95% { transform: rotate(-5deg); }*/
/*  100% { transform: rotate(0deg); }*/
/*}*/

@keyframes wiggle {
  0% { transform: rotate(1deg); }
  50% { transform: rotate(-1deg); }
  100% { transform: rotate(1deg); }
}

.wiggle {
    display: inline-block;
    animation: wiggle 300ms infinite;
}

.wiggle:not(.active) {
    animation: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

i.fa.fa-spinner {
    animation: rotate 1s linear infinite;
}

.feature-card > h3 {
    text-align: center;
    margin: 0;
    border-bottom: 1px solid var(--highlight);
}

.feature-card > div:not(.bottom-gradient) i.fa:first-child, .feature-card > div:not(.bottom-gradient) i.far:first-child {
    font-size: 32px;
    margin-right: 20px;
    color: var(--secondary);
}

.tag {
    display: inline-block;
    height: 26px;
    border-radius: 13px;
    background-color: var(--main-text-alt);
    border: 1px solid var(--main-text-alt);
    color: #f3f3f3;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 15px;
    margin: 5px 5px 5px 0;
    font-family: 'Roboto', sans-serif;
    line-height: 16px;
    transition: all 250ms ease-in-out;
    pointer-events: none;
}

.tag.selectable {
    pointer-events: all;
}

.tag.selectable:hover {
    cursor: pointer;
}

.tag.selectable i {
    margin-left: 10px;
    font-size: inherit;
    color: inherit;
}

.tag.selectable:not(.selected) i {
    display: none;
}

.tag.alt, .tag.selectable:not(.selected) {
    background-color: transparent;
    color: var(--main-text-alt);
}

.stamp-container {
    border-radius: 8px;
}

.stamp-container > *:first-child {
    border: 4px solid #Ef4036;
    border-radius: 8px;
    transform: rotateZ(-25deg);
    color: #EF4036;
    text-transform: uppercase;
    padding: 8px 24px;
    margin: 0;
    background-color: #ffffffcc;
}

/* MARK: Bootstrap overrides */
form .alert {
    margin-top: 10px;
    transition: 250ms all;
    opacity: 1;
    display: inherit;
}

.alert h5 {
    color: inherit;
}

.alert p {
    color: inherit;
}

.alert p:last-child:not(:first-child) {
    margin: 10px 0 0 0;
}

.alert .leftline {
    border-color: inherit;
    color: inherit;
}

.alert:empty {
    display: none;
    opacity: 0;
}

/* MARK: Modals */
.bl-modal-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -10;
    opacity: 0;
    background-color: #0000005d;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 250ms ease-in-out;
}

.bl-modal-container.visible {
    opacity: 1;
    z-index: 9;
}

.bl-modal {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid var(--highlight);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*min-height: 200px;*/
    min-width: 335px;
    max-width: 425px;
    margin: 20px;
}

.bl-modal > * {
    padding: 15px 20px;
    margin: 0;
}

.bl-modal > h3 {
    text-align: center;
    margin: 0;
    border-bottom: 1px solid var(--highlight);
}

.bl-modal > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bl-modal button {
    flex: 1;
}

.bl-modal button:first-child {
    margin-right: 10px;
}

.bl-modal button:last-child {
    margin-left: 10px;
}

/* MARK: Screen resizing */
/* Small */
@media screen and (max-width: 40em) {
    .flex-small {
        flex: 1;
    }

    .display-block-sm {
        display: block;
    }

    .massive-emoji {
        font-size: 80px;
    }

    .lightgallery-projects img {
        width: 100%;
    }

    .floating-image {
        display: none !important;
    }

    .no-padding-side-small {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .center-small {
        display: flex;
        justify-content: center !important;
    }

    .hero-container h4 {
        font-size: 1.5rem;
        margin-left: 10px;
    }

    .margin-bottom-small {
        margin-bottom: 20px;
    }

    div.text-container {
        padding: 20px 10px;
    }

    div.screen-container > div.main > *,
    div.screen-container div.navigation-header > * {
        padding: 0;
    }

    div.input-container.inline {
        flex: 1;
        width: 100%;
    }

    .bl-modal {
        width: 100%;
        min-width: unset;
    }

    .hide-small {
        display: none !important;
    }

    .max-width-small-only {
        max-width: 100% !important;
    }

    .offset-top-small-only {
        position: relative;
        top: -10vh;
    }

    .margin-top-small-only {
        margin-top: 50px;
    }

    .margin-top-small-only.x1 {
        margin-top: 10px;
    }

    .padded-small {
        padding: 20px;
    }

    .padded-side-not-small {
        padding-left: 0;
        padding-right: 0;
    }

    .block-text {
        width: 100%;
    }

    .show-small-only {
        display: inherit !important;
    }

    .show-not-small {
        display: none !important;
    }

    /* Only animate side-panel for mobile */
    .side-panel {
        transition: all 240ms ease-out;
    }

    .bottom.x2 {
        bottom: 15px
    }

    .left.x2 {
        left: 15px;
    }

    .small-column-reverse {
        flex-direction: column-reverse;
    }

    .sm-90-vw {
        width: 90vw;
    }

    .column-reverse-sm {
        flex-direction: column-reverse;
    }
}

/* Not small */
@media screen and (min-width: 40em) {
    .flex-not-small {
        flex: 1;
    }

    .flex-row-right-not-small {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        display: flex;
    }

    div.flex-column-right-not-small {
        flex-direction: column;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .border-small-only {
        border: 0 !important;
    }

    .padded-not-small {
        padding: 20px;
    }

    .padded-not-small.x1-5 {
        padding: 30px;
    }

    .padded-not-small.x2 {
        padding: 40px;
    }

    .margin-top-not-small {
        margin-top: 50px;
    }

    .margin-right-not-small {
        margin-right: 10px;
    }

    .show-not-small {
        display: inherit !important;
    }

    .display-flex-not-small {
        display: flex;
    }

    div.center-not-small {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Medium */
@media screen and (min-width: 40em) and (max-width:60em)  {
    #lightgallery img {
        width: calc(49% - 10px);
    }

    .column-reverse-md {
        flex-direction: column-reverse;
    }
}

/* Medium+ */
@media screen and (min-width: 40em)  {
    #lightgallery img {
        width: calc(49% - 10px);
    }

    .md-60-vw {
        width: 60vw;
    }
}

/* Large */
@media screen and (min-width: 60em) and (max-width:1200px)  {
    #lightgallery img {
        width: calc(33% - 15px);
    }
}

/* Extra Large */
@media screen and (min-width:1201px)  {
    #lightgallery img {
        width: calc(25% - 20px);
    }
}

/* MARK: Social medias/font awesome icons */
.fa {
    color: #999;
    font-size: 15px;
}

.contact-container .fa {
    color: var(--secondary-light);
    margin: 10px 10px 10px 0;
}

.fa.highlight {
    color: #999;
}

.fa.secondary {
    color: var(--secondary);
}

.fa.primary {
    color: var(--primary);
}

.fa-facebook-square, .fa-facebook, .fa-facebook-f {
    color: white;
    background-color: #3b5998;
}

.fa-twitter-square, .fa-twitter {
    color: white;
    background-color: #55acee;
}

.fa-instagram {
    color: white;
    background-color: #3f729b;
}

.fa-yelp {
    color: white;
    background-color: #af0606;
}

.fa-youtube {
    color: white;
    background-color: #bb0000;
}

.fa-linkedin-in, .fa-linkedin-square {
    color: white;
    background-color: #007bb6;
}

.social-media {
    font-size: 22px;
    width: 40px;
    height: 40px;
    margin: 10px 5px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms;
}

.social-media.alt {
    color: white;
    background-color: unset;
    text-decoration: none;
}

.social-media:not(.alt):hover {
    text-decoration: none;
    color: white;
    box-shadow: 0 0 5px 4px #0000001a;
}

.social-media.alt:hover {
    text-decoration: none;
    color: var(--primary);
}

.svg {
    background-repeat: no-repeat;
}

.leaf-heart.svg {
    background-image: url("/static/assets/images/fa/leaf-heart.c528fd3fa47b.svg");
}

.wheat-slash.svg {
    background-image: url("/static/assets/images/fa/wheat-slash.952d6811fc45.svg");
}

/* MARK: misc */
.make-it-pop {
    animation: shake 0.5s infinite, text-glow-aggressive .5s infinite alternate;
    animation-iteration-count: infinite;

    -webkit-transition: text-shadow 0.2s linear;
    -moz-transition: text-shadow 0.2s linear;
    -ms-transition: text-shadow 0.2s linear;
    -o-transition: text-shadow 0.2s linear;
    transition: text-shadow 0.2s linear;
}