@charset "UTF-8";

:root {
    --tagify-dd-color-primary: #3595f6;
    --tagify-dd-bg-color: #fff;
    --tagify-dd-item-pad: .3em .5em
}

.tagify {
    --tags-disabled-bg: #f1f1f1;
    --tags-border-color: #ddd;
    --tags-hover-border-color: #ccc;
    --tags-focus-border-color: #3595f6;
    --tag-border-radius: 3px;
    --tag-bg: #e5e5e5;
    --tag-hover: #d3e2e2;
    --tag-text-color: #000;
    --tag-text-color--edit: #000;
    --tag-pad: 0.3em 0.5em;
    --tag-inset-shadow-size: 1.1em;
    --tag-invalid-color: #d39494;
    --tag-invalid-bg: hsla(0, 42%, 70%, .5);
    --tag-remove-bg: hsla(0, 42%, 70%, .3);
    --tag-remove-btn-color: #000;
    --tag-remove-btn-bg: none;
    --tag-remove-btn-bg--hover: #c77777;
    --input-color: inherit;
    --tag--min-width: 1ch;
    --tag--max-width: auto;
    --tag-hide-transition: 0.3s;
    --placeholder-color: rgba(0, 0, 0, .4);
    --placeholder-color-focus: rgba(0, 0, 0, .25);
    --loader-size: .8em;
    --readonly-striped: 1;
    align-items: flex-start;
    border: 1px solid #ddd;
    border: 1px solid var(--tags-border-color);
    cursor: text;
    display: inline-flex;
    flex-wrap: wrap;
    line-height: 0;
    outline: 0;
    position: relative;
    transition: .1s
}

@keyframes tags--bump {
    30% {
        transform: scale(1.2)
    }
}

@keyframes rotateLoader {
    to {
        transform: rotate(1turn)
    }
}

.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
    --tags-border-color: var(--tags-hover-border-color)
}

.tagify[disabled] {
    background: var(--tags-disabled-bg);
    filter: saturate(0);
    opacity: .5
}

.tagify[disabled],
.tagify[disabled].tagify--select,
.tagify[readonly].tagify--select {
    pointer-events: none
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select),
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) {
    cursor: default
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select)>.tagify__input,
.tagify[readonly]:not(.tagify--mix):not(.tagify--select)>.tagify__input {
    margin: 5px 0;
    visibility: hidden;
    width: 0
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div,
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div {
    padding: var(--tag-pad)
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div:before,
.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div:before {
    animation: readonlyStyles 1s calc(-1s*(var(--readonly-striped) - 1)) paused
}

.tagify--loading .tagify__input>br:last-child,
.tagify[disabled] .tagify__tag__removeBtn,
.tagify[readonly] .tagify__tag__removeBtn {
    display: none
}

.tagify--loading .tagify__input:before {
    content: none
}

.tagify--loading .tagify__input:after {
    animation: rotateLoader .4s linear infinite;
    border-color: #eee #bbb #888 transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    content: "";
    content: "" !important;
    height: .7em;
    height: var(--loader-size);
    margin: -2px 0 -2px .5em;
    min-width: 0;
    opacity: 1;
    vertical-align: middle;
    width: .7em;
    width: var(--loader-size)
}

.tagify--loading .tagify__input:empty:after {
    margin-left: 0
}

.tagify+input,
.tagify+textarea {
    left: -9999em !important;
    position: absolute !important;
    transform: scale(0) !important
}

.tagify__tag {
    align-items: center;
    cursor: default;
    display: inline-flex;
    line-height: normal;
    margin: 5px 0 5px 5px;
    outline: 0;
    position: relative;
    transition: .13s ease-out;
    z-index: 1
}

.tagify__tag>div {
    border-radius: var(--tag-border-radius);
    box-sizing: border-box;
    color: var(--tag-text-color);
    line-height: inherit;
    max-width: 100%;
    padding: var(--tag-pad);
    transition: .13s ease-out;
    vertical-align: top;
    white-space: nowrap
}

.tagify__tag>div>* {
    display: inline-block;
    max-width: var(--tag--max-width);
    min-width: var(--tag--min-width);
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .8s ease, color .1s;
    vertical-align: top;
    white-space: pre-wrap
}

.tagify__tag>div>[contenteditable] {
    cursor: text;
    margin: -2px;
    max-width: 350px;
    outline: 0;
    padding: 2px;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text
}

.tagify__tag>div:before {
    animation: tags--bump .3s ease-out 1;
    border-radius: inherit;
    bottom: 0;
    bottom: var(--tag-bg-inset, 0);
    box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
    content: "";
    left: 0;
    left: var(--tag-bg-inset, 0);
    pointer-events: none;
    position: absolute;
    right: 0;
    right: var(--tag-bg-inset, 0);
    top: 0;
    top: var(--tag-bg-inset, 0);
    transition: .12s ease;
    z-index: -1
}

.tagify__tag:focus div:before,
.tagify__tag:hover:not([readonly]) div:before {
    --tag-bg-inset: -2.5px;
    --tag-bg: var(--tag-hover)
}

.tagify__tag--loading {
    pointer-events: none
}

.tagify__tag--loading .tagify__tag__removeBtn {
    display: none
}

.tagify__tag--loading:after {
    --loader-size: .4em;
    animation: rotateLoader .4s linear infinite;
    border-color: #eee #bbb #888 transparent;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    content: "";
    height: .7em;
    height: .4em;
    height: var(--loader-size);
    margin: 0 .5em 0 -.1em;
    min-width: 0;
    opacity: 1;
    vertical-align: middle;
    width: .7em;
    width: .4em;
    width: var(--loader-size)
}

.tagify__tag--flash div:before {
    animation: none
}

.tagify__tag--hide {
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    padding-left: 0;
    padding-right: 0;
    pointer-events: none;
    transform: scale(0);
    transition: var(--tag-hide-transition);
    width: 0 !important
}

.tagify__tag--hide>div>* {
    white-space: nowrap
}

.tagify__tag.tagify--noAnim>div:before {
    animation: none
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div>span {
    opacity: .5
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div:before {
    --tag-bg: var(--tag-invalid-bg);
    transition: .2s
}

.tagify__tag[readonly] .tagify__tag__removeBtn {
    display: none
}

.tagify__tag[readonly]>div:before {
    animation: readonlyStyles 1s calc(-1s*(var(--readonly-striped) - 1)) paused
}

@keyframes readonlyStyles {
    0% {
        background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
        box-shadow: none;
        filter: brightness(.95)
    }
}

.tagify__tag--editable>div {
    color: var(--tag-text-color--edit)
}

.tagify__tag--editable>div:before {
    box-shadow: 0 0 0 2px var(--tag-hover) inset !important
}

.tagify__tag--editable>.tagify__tag__removeBtn {
    pointer-events: none
}

.tagify__tag--editable>.tagify__tag__removeBtn:after {
    opacity: 0;
    transform: translateX(100%) translateX(5px)
}

.tagify__tag--editable.tagify--invalid>div:before {
    box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important
}

.tagify__tag__removeBtn {
    align-items: center;
    background: var(--tag-remove-btn-bg);
    border-radius: 50px;
    color: var(--tag-remove-btn-color);
    cursor: pointer;
    display: inline-flex;
    font: 14px/1 Arial;
    height: 14px;
    justify-content: center;
    margin-left: auto;
    margin-right: 4.6666666667px;
    order: 5;
    overflow: hidden;
    transition: .2s ease-out;
    width: 14px
}

.tagify__tag__removeBtn:after {
    content: "×";
    transition: .3s, color 0s
}

.tagify__tag__removeBtn:hover {
    background: var(--tag-remove-btn-bg--hover);
    color: #fff
}

.tagify__tag__removeBtn:hover+div>span {
    opacity: .5
}

.tagify__tag__removeBtn:hover+div:before {
    box-shadow: 0 0 0 var(--tag-inset-shadow-size) hsla(0, 42%, 70%, .3) inset !important;
    box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, hsla(0, 42%, 70%, .3)) inset !important;
    transition: box-shadow .2s
}

.tagify:not(.tagify--mix) .tagify__input br {
    display: none
}

.tagify:not(.tagify--mix) .tagify__input * {
    display: inline;
    white-space: nowrap
}

.tagify__input {
    box-sizing: inherit;
    color: var(--input-color);
    display: inline-block;
    flex-grow: 1;
    line-height: normal;
    margin: 5px;
    min-width: 110px;
    padding: var(--tag-pad);
    position: relative;
    white-space: pre-wrap
}

.tagify__input:empty:before {
    position: static
}

.tagify__input:focus {
    outline: 0
}

.tagify__input:focus:before {
    opacity: 0;
    transform: translatex(6px);
    transition: .2s ease-out
}

@supports (-ms-ime-align:auto) {
    .tagify__input:focus:before {
        display: none
    }
}

.tagify__input:focus:empty:before {
    color: rgba(0, 0, 0, .25);
    color: var(--placeholder-color-focus);
    opacity: 1;
    transform: none;
    transition: .2s ease-out
}

@-moz-document url-prefix() {
    .tagify__input:focus:empty:after {
        display: none
    }
}

.tagify__input:before {
    color: var(--placeholder-color);
    content: attr(data-placeholder);
    height: 1em;
    line-height: 1em;
    margin: auto 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    white-space: nowrap;
    z-index: 1
}

.tagify__input:after {
    color: var(--tag-text-color);
    content: attr(data-suggest);
    display: inline-block;
    max-width: 100px;
    min-width: calc(100% - 1.5em);
    opacity: .3;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: pre
}

.tagify__input .tagify__tag {
    margin: 0 1px
}

.tagify--mix {
    display: block
}

.tagify--mix .tagify__input {
    display: block;
    height: 100%;
    line-height: 1.5;
    margin: 0;
    padding: 5px;
    width: 100%
}

.tagify--mix .tagify__input:before {
    display: none;
    height: auto;
    line-height: inherit
}

.tagify--mix .tagify__input:after {
    content: none
}

.tagify--select:after {
    bottom: 0;
    content: ">";
    font: 16px monospace;
    height: 8px;
    line-height: 8px;
    opacity: .5;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
    transition: .2s ease-in-out
}

.tagify--select[aria-expanded=true]:after {
    transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2)
}

.tagify--select .tagify__tag {
    bottom: 0;
    position: absolute;
    right: 1.8em;
    top: 0
}

.tagify--select .tagify__tag div {
    display: none
}

.tagify--select .tagify__input {
    width: 100%
}

.tagify--empty .tagify__input:before {
    display: inline-block;
    opacity: 1;
    transform: none;
    transition: .2s ease-out;
    width: auto
}

.tagify--mix .tagify--empty .tagify__input:before {
    display: inline-block
}

.tagify--focus {
    --tags-border-color: var(--tags-focus-border-color);
    transition: 0s
}

.tagify--invalid {
    --tags-border-color: #d39494
}

.tagify__dropdown {
    overflow: hidden;
    position: absolute;
    transform: translateY(1px);
    z-index: 9999
}

.tagify__dropdown[placement=top] {
    margin-top: 0;
    transform: translateY(-100%)
}

.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
    border-bottom-width: 0;
    border-top-width: 1.1px
}

.tagify__dropdown[position=text] {
    box-shadow: 0 0 0 3px rgba(rgb(53, 149, 246), .1);
    box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), .1);
    font-size: .9em
}

.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
    border-width: 1px
}

.tagify__dropdown__wrapper {
    background: #fff;
    background: var(--tagify-dd-bg-color);
    border: 1px solid #3595f6;
    border-bottom-width: 1.5px;
    border-color: var(--tagify-dd-color-primary);
    border-top-width: 0;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .2);
    max-height: 300px;
    overflow: auto;
    overflow-x: hidden;
    transition: .25s cubic-bezier(0, 1, .5, 1)
}

.tagify__dropdown__header:empty {
    display: none
}

.tagify__dropdown__footer {
    display: inline-block;
    font-size: .7em;
    font-style: italic;
    margin-top: .5em;
    opacity: .5;
    padding: .3em .5em;
    padding: var(--tagify-dd-item-pad)
}

.tagify__dropdown__footer:empty {
    display: none
}

.tagify__dropdown--initial .tagify__dropdown__wrapper {
    max-height: 20px;
    transform: translateY(-1em)
}

.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
    transform: translateY(2em)
}

.tagify__dropdown__item {
    border-radius: 2px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 1px;
    max-height: 60px;
    max-width: 100%;
    outline: 0;
    padding: .3em .5em;
    padding: var(--tagify-dd-item-pad);
    position: relative;
    white-space: pre-wrap
}

.tagify__dropdown__item--active {
    background: #3595f6;
    background: var(--tagify-dd-color-primary);
    color: #fff
}

.tagify__dropdown__item:active {
    filter: brightness(105%)
}

.tagify__dropdown__item--hidden {
    margin: 0 1px;
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    pointer-events: none;
    transition: .3s !important;
    transition: var(--tagify-dd-item--hidden-duration, .3s) !important
}

.tagify__dropdown__item--hidden>* {
    opacity: 0;
    transform: translateY(-100%);
    transition: inherit
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-left: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: #007aff;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: 44px;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: -22px;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: 50%;
    width: 27px;
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    text-transform: none
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: #000;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: .2;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: 8px;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: 1;
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none
}

.swiper-horizontal>.swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50
}

.swiper-vertical>.swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50
}

.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
    border: 4px solid #007aff;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-direction: column;
    flex-wrap: wrap
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    background: #000;
    bottom: 0;
    content: "";
    filter: blur(50px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0
}

.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom
}

.glide {
    box-sizing: border-box;
    position: relative;
    width: 100%
}

.glide * {
    box-sizing: inherit
}

.glide__slides,
.glide__track {
    overflow: hidden
}

.glide__slides {
    backface-visibility: hidden;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    touch-action: pan-Y;
    transform-style: preserve-3d;
    white-space: nowrap;
    width: 100%;
    will-change: transform
}

.glide__slide,
.glide__slides--dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.glide__slide {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    height: 100%;
    white-space: normal;
    width: 100%
}

.glide__slide a {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.glide__arrows,
.glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.glide--rtl {
    direction: rtl
}

.glide__arrow {
    background-color: transparent;
    border: 2px solid hsla(0, 0%, 100%, .5);
    border-radius: 4px;
    box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
    color: #fff;
    cursor: pointer;
    display: block;
    line-height: 1;
    opacity: 1;
    padding: 9px 12px;
    position: absolute;
    text-shadow: 0 .25em .5em rgba(0, 0, 0, .1);
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .15s ease, border .3s ease-in-out;
    z-index: 2
}

.glide__arrow:focus {
    outline: none
}

.glide__arrow:hover {
    border-color: #fff
}

.glide__arrow--left {
    left: 2em
}

.glide__arrow--right {
    right: 2em
}

.glide__arrow--disabled {
    opacity: .33
}

.glide__bullets {
    bottom: 2em;
    display: inline-flex;
    left: 50%;
    list-style: none;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2
}

.glide__bullet {
    background-color: hsla(0, 0%, 100%, .5);
    border: 2px solid transparent;
    border-radius: 50%;
    box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
    cursor: pointer;
    height: 9px;
    line-height: 0;
    margin: 0 .25em;
    padding: 0;
    transition: all .3s ease-in-out;
    width: 9px
}

.glide__bullet:focus {
    outline: none
}

.glide__bullet:focus,
.glide__bullet:hover {
    background-color: hsla(0, 0%, 100%, .5);
    border: 2px solid #fff
}

.glide__bullet--active {
    background-color: #fff
}

.glide--swipeable {
    cursor: grab;
    cursor: -webkit-grab
}

.glide--dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing
}

@font-face {
    font-display: block;
    font-family: icomoon;
    font-style: normal;
    font-weight: 400;
    src: url(../55b34fbb1d3a4c543749.eot?nnqlzy);
    src: url(../55b34fbb1d3a4c543749.eot?nnqlzy#iefix) format("embedded-opentype"), url(../f62b43aa6062c8c7fe67.woff2?nnqlzy) format("woff2"), url(../98fb303568b0a39ebf6d.ttf?nnqlzy) format("truetype"), url(../3131b03e6c7aee08e325.woff?nnqlzy) format("woff"), url(../08a8ead360eed7cc0ef9.svg?nnqlzy#icomoon) format("svg")
}

[class*=" icon-"],
[class^=icon-] {
    speak: never;
    font-feature-settings: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: icomoon !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none
}

.icon-camera:before {
    content: "\e90b"
}

.icon-twitter:before {
    content: "\e90a"
}

.icon-facebook:before {
    content: "\e906"
}

.icon-instagram:before {
    content: "\e907"
}

.icon-linkedin:before {
    content: "\e908"
}

.icon-youtube:before {
    content: "\e909"
}

.icon-close:before {
    content: "\e905"
}

.icon-search:before {
    content: "\e904"
}

.icon-dropdown:before {
    content: "\e900"
}

.icon-meeting:before {
    content: "\e931"
}

.icon-safe_space:before {
    content: "\e92f"
}

.icon-no_advice:before {
    content: "\e930"
}

.icon-Get-Involved-1:before {
    content: "\e90c"
}

.icon-About-1:before {
    content: "\e90d"
}

.icon-About-2:before {
    content: "\e90e"
}

.icon-About-3:before {
    content: "\e90f"
}

.icon-Get-Involved-2:before {
    content: "\e910"
}

.icon-Get-Involved-3:before {
    content: "\e911"
}

.icon-Oplm-07:before {
    content: "\e912"
}

.icon-Oplm-08:before {
    content: "\e913"
}

.icon-Oplm-09:before {
    content: "\e914"
}

.icon-Oplm-10:before {
    content: "\e915"
}

.icon-Oplm-11:before {
    content: "\e916"
}

.icon-Oplm-12:before {
    content: "\e917"
}

.icon-Oplm-13:before {
    content: "\e918"
}

.icon-Oplm-14:before {
    content: "\e919"
}

.icon-Oplm-15:before {
    content: "\e91a"
}

.icon-Oplm-16:before {
    content: "\e91b"
}

.icon-Oplm-17:before {
    content: "\e91c"
}

.icon-Oplm-18:before {
    content: "\e91d"
}

.icon-Oplm-19:before {
    content: "\e91e"
}

.icon-Oplm-20:before {
    content: "\e91f"
}

.icon-Oplm-21:before {
    content: "\e920"
}

.icon-Oplm-22:before {
    content: "\e921"
}

.icon-Oplm-23:before {
    content: "\e922"
}

.icon-Oplm-24:before {
    content: "\e923"
}

.icon-Oplm-25:before {
    content: "\e924"
}

.icon-Oplm-26:before {
    content: "\e925"
}

.icon-Oplm-27:before {
    content: "\e926"
}

.icon-Oplm-28:before {
    content: "\e927"
}

.icon-Oplm-29:before {
    content: "\e928"
}

.icon-Oplm-30:before {
    content: "\e929"
}

.icon-Oplm-31:before {
    content: "\e92a"
}

.icon-Oplm-32:before {
    content: "\e92b"
}

.icon-Oplm-33:before {
    content: "\e92c"
}

.icon-Oplm-34:before {
    content: "\e92d"
}

.icon-Oplm-35:before {
    content: "\e92e"
}

.icon-hand:before {
    content: "\e903"
}

.icon-heart:before {
    content: "\e901"
}

.icon-light-bulb:before {
    content: "\e902"
}

:root {
    --theme-primary-color: #7ab5b0;
    --theme-primary-color-hover: rgba(122, 181, 176, .5);
    --theme-secondary-color: #a1c08a;
    --theme-terciary-color: #fbb827;
    --theme-highlight-color: #f07e24;
    --theme-black-color: #6d6e6e;
    --theme-white-color: #fff;
    --theme-cream-color: #fff0b9;
    --theme-grey-color: #c2c2c2;
    --theme-light-grey-color: #f9f9f9;
    --theme-lime-color: #eff8e9;
    --theme-mint-color: #e1f0ef;
    --theme-color-lines: var(--theme-grey-color);
    --theme-color-shadow: rgba(64, 64, 64, .16);
    --theme-font-color: var(--theme-black-color);
    --theme-bottom-lighter-grey-gradient: linear-gradient(343.38deg, #f9f9f9 41.73%, #fff 72.3%);
    --theme-size-nano: 30rem;
    --theme-size-mini: 40rem;
    --theme-size-small: 45rem;
    --theme-size-medium: 60rem;
    --theme-size-medium-large: 64rem;
    --theme-size-large: 80rem;
    --theme-large-section-size: var(--theme-size-large);
    --theme-medium-section-size: 1024px;
    --theme-small-section-size: var(--theme-size-medium);
    --theme-large-padding: 60px;
    --theme-medium-padding: 20px;
    --theme-small-padding: 20px;
    --theme-large-spacing: 40px;
    --theme-medium-spacing: 20px;
    --theme-small-spacing: 20px;
    --theme-border-radius: .75rem;
    --theme-border-radius-min: .5rem
}

@media screen and (min-width:991px) {
    :root {
        --theme-large-padding: 120px;
        --theme-medium-padding: 40px;
        --theme-small-padding: 20px;
        --theme-large-spacing: 80px;
        --theme-medium-spacing: 40px;
        --theme-small-spacing: 20px;
        --theme-border-radius: 1.5rem
    }
}

.has-primary-color {
    --color-reference: #7ab5b0;
    color: #7ab5b0 !important
}

.has-secondary-color {
    --color-reference: #a1c08a;
    color: #a1c08a !important
}

.has-tertiary-color {
    --color-reference: #fbb827;
    color: #fbb827 !important
}

.has-highlight-color {
    --color-reference: #f07e24;
    color: #f07e24 !important
}

.has-black-color {
    --color-reference: #6d6e6e;
    color: #6d6e6e !important
}

.has-white-color {
    --color-reference: #fff;
    color: #fff !important
}

.has-cream-color {
    --color-reference: #fff0b9;
    color: #fff0b9 !important
}

.has-grey-color {
    --color-reference: #c2c2c2;
    color: #c2c2c2 !important
}

.has-light-grey-color {
    --color-reference: #f9f9f9;
    color: #f9f9f9 !important
}

.has-lime-color {
    --color-reference: #eff8e9;
    color: #eff8e9 !important
}

.has-mint-color {
    --color-reference: #e1f0ef;
    color: #e1f0ef !important
}

.has-primary-background-color {
    --color-reference: #7ab5b0
}

.has-secondary-background-color {
    --color-reference: #a1c08a
}

.has-tertiary-background-color {
    --color-reference: #fbb827
}

.has-highlight-background-color {
    background-color: #7AB5B0 !important;
}

.has-black-background-color {
    --color-reference: #6d6e6e
}

.has-white-background-color {
    --color-reference: #fff
}

.has-cream-background-color {
    --color-reference: #fff0b9
}

.has-grey-background-color {
    --color-reference: #c2c2c2
}

.has-light-grey-background-color {
    --color-reference: #f9f9f9
}

.has-lime-background-color {
    --color-reference: #eff8e9
}

.has-mint-background-color {
    --color-reference: #e1f0ef
}

.has-light-yellow-background-color {
    --color-reference: rgba(255, 246, 217, 1)
}

.has-translucid-gradient-background {
    --color-reference: linear-gradient(243.94deg, rgba(122, 181, 176, 0) 36.64%, rgba(122, 181, 176, .88) 87.85%, rgba(122, 181, 176, .88) 0)
}

.has-mint-gradient-background {
    --color-reference: linear-gradient(180deg, #e1f0ef, #e7f0e0)
}

.has-jungle-gradient-background {
    --color-reference: linear-gradient(260deg, #7ab5b0 27.51%, #93bd9a 57.5%)
}

.has-warm-gradient-background {
    --color-reference: linear-gradient(101.81deg, #deebd5 0.5%, #fff8e8)
}

.has-bright-gradient-background {
    --color-reference: linear-gradient(81.64deg, #deebd5, #fff1d3)
}

.has-muted-gradient-background {
    --color-reference: linear-gradient(90deg, #f9f9f9 21.25%, hsla(0, 0%, 98%, .5))
}

.has-black-gradient-background {
    --color-reference: linear-gradient(180deg, #000000 0%, #E7F0E0 100%)
}

.has-background:not(.has-image-background) {
    background: var(--color-reference) !important
}

.has-background.has-image-background {
    background: none !important
}

.has-background.has-image-background:after {
    background: var(--color-reference) !important;
    bottom: 0;
    content: "";
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.has-heading-1-font-size {
    font-size: 2rem !important
}

.has-heading-1-font-size em {
    font-size: 2.25rem !important
}

@media screen and (min-width:991px) {
    .has-heading-1-font-size {
        font-size: 3.5rem !important
    }

    .has-heading-1-font-size em {
        font-size: 4rem !important
    }
}

.has-heading-2-font-size {
    font-size: 1.75rem !important
}

.has-heading-2-font-size em {
    font-size: 2rem !important
}

@media screen and (min-width:991px) {
    .has-heading-2-font-size {
        font-size: 3rem !important
    }

    .has-heading-2-font-size em {
        font-size: 3.5rem !important
    }
}

.has-heading-3-font-size {
    font-size: 1.5rem !important
}

.has-heading-3-font-size em {
    font-size: 1.75rem !important
}

@media screen and (min-width:991px) {
    .has-heading-3-font-size {
        font-size: 2.5rem !important
    }

    .has-heading-3-font-size em {
        font-size: 3rem !important
    }
}

.has-heading-4-font-size {
    font-size: 1.25rem !important
}

.has-heading-4-font-size em {
    font-size: 1.5rem !important
}

@media screen and (min-width:991px) {
    .has-heading-4-font-size {
        font-size: 2rem !important
    }

    .has-heading-4-font-size em {
        font-size: 2.5rem !important
    }
}

.has-heading-5-font-size {
    font-size: 1rem !important
}

.has-heading-5-font-size em {
    font-size: 1.25rem !important
}

@media screen and (min-width:991px) {
    .has-heading-5-font-size {
        font-size: 1.5rem !important
    }

    .has-heading-5-font-size em {
        font-size: 2rem !important
    }
}

.has-small-font-size {
    font-size: .75rem
}

@media screen and (min-width:991px) {
    .has-small-font-size {
        font-size: 1rem
    }
}

.is-style-nano {
    max-width: 30rem;
    max-width: var(--theme-size-nano)
}

.is-style-mini,
.is-style-nano {
    margin-left: auto;
    margin-right: auto
}

.is-style-mini {
    max-width: 40rem;
    max-width: var(--theme-size-mini)
}

.is-style-small {
    max-width: 45rem;
    max-width: var(--theme-size-small)
}

.is-style-medium,
.is-style-small {
    margin-left: auto;
    margin-right: auto
}

.is-style-medium {
    max-width: 60rem;
    max-width: var(--theme-size-medium)
}

.is-style-medium-large {
    margin-left: auto;
    margin-right: auto;
    max-width: 64rem;
    max-width: var(--theme-size-medium-large)
}

.is-style-large {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    max-width: var(--theme-size-large)
}

.has-large-padding {
    padding: 60px !important;
    padding: var(--theme-large-padding) !important
}

.has-large-vertical-padding {
    padding-bottom: 60px !important;
    padding-bottom: var(--theme-large-padding) !important;
    padding-top: 60px !important;
    padding-top: var(--theme-large-padding) !important
}

.has-large-horizontal-padding {
    padding-left: 60px !important;
    padding-left: var(--theme-large-padding) !important;
    padding-right: 60px !important;
    padding-right: var(--theme-large-padding) !important
}

.has-large-top-padding {
    padding-top: 60px !important;
    padding-top: var(--theme-large-padding) !important
}

.has-large-bottom-padding {
    padding-bottom: 60px !important;
    padding-bottom: var(--theme-large-padding) !important
}

.has-large-left-padding {
    padding-left: 60px !important;
    padding-left: var(--theme-large-padding) !important
}

.has-large-right-padding {
    padding-right: 60px !important;
    padding-right: var(--theme-large-padding) !important
}

.has-medium-padding {
    padding: 20px !important;
    padding: var(--theme-medium-padding) !important
}

.has-medium-vertical-padding {
    padding-bottom: 20px !important;
    padding-bottom: var(--theme-medium-padding) !important;
    padding-top: 20px !important;
    padding-top: var(--theme-medium-padding) !important
}

.has-medium-horizontal-padding {
    padding-left: 20px !important;
    padding-left: var(--theme-medium-padding) !important;
    padding-right: 20px !important;
    padding-right: var(--theme-medium-padding) !important
}

.has-medium-top-padding {
    padding-top: 20px !important;
    padding-top: var(--theme-medium-padding) !important
}

.has-medium-bottom-padding {
    padding-bottom: 20px !important;
    padding-bottom: var(--theme-medium-padding) !important
}

.has-medium-left-padding {
    padding-left: 20px !important;
    padding-left: var(--theme-medium-padding) !important
}

.has-medium-right-padding {
    padding-right: 20px !important;
    padding-right: var(--theme-medium-padding) !important
}

.has-small-padding {
    padding: 20px !important;
    padding: var(--theme-small-padding) !important
}

.has-small-vertical-padding {
    padding-bottom: 20px !important;
    padding-bottom: var(--theme-small-padding) !important;
    padding-top: 20px !important;
    padding-top: var(--theme-small-padding) !important
}

.has-small-horizontal-padding {
    padding-left: 20px !important;
    padding-left: var(--theme-small-padding) !important;
    padding-right: 20px !important;
    padding-right: var(--theme-small-padding) !important
}

.has-small-top-padding {
    padding-top: 20px !important;
    padding-top: var(--theme-small-padding) !important
}

.has-small-bottom-padding {
    padding-bottom: 20px !important;
    padding-bottom: var(--theme-small-padding) !important
}

.has-small-left-padding {
    padding-left: 20px !important;
    padding-left: var(--theme-small-padding) !important
}

.has-small-right-padding {
    padding-right: 20px !important;
    padding-right: var(--theme-small-padding) !important
}

.alignleft {
    margin-left: 0
}

.aligncenter,
.has-align-center {
    margin-left: auto;
    margin-right: auto
}

.alignright {
    margin-right: 0
}

.has-text-align-center {
    text-align: center
}

.has-text-align-right {
    text-align: right
}

.is-section-name {
    color: #f07e24;
    color: var(--theme-highlight-color);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 150%;
    text-transform: uppercase
}

@media screen and (min-width:991px) {
    .is-section-name {
        font-size: 1rem
    }
}

.wp-block-column {
    margin-bottom: 1rem
}

@media (min-width:991px) {
    .two-columns-form .wp-block-column:last-child {
        flex-basis: 35rem;
        flex-grow: 0;
        margin-left: 2.5rem;
        position: sticky;
        top: 5rem
    }

    .wp-block-column.sticky {
        height: 100%;
        position: sticky;
        top: 90px
    }
}

.is-flexible-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1rem 0
}

@media screen and (min-width:991px) {
    .is-flexible-list {
        flex-direction: row
    }
}

.is-flexible-list>li {
    margin-bottom: 1rem;
    margin-right: 0
}

@media screen and (min-width:991px) {
    .is-flexible-list>li {
        margin-right: 1rem
    }
}

.is-flexible-list>li>* {
    align-items: center;
    display: flex;
    justify-content: center
}

@media screen and (min-width:991px) {
    .is-flexible-list>li>* {
        align-items: center;
        display: flex
    }
}

.is-flexible-list>li:last-child {
    margin-right: 0
}

.is-flexible-list span {
    font-size: 1rem;
    font-weight: 400;
    margin-left: .25rem
}

* {
    box-sizing: border-box
}

body {
    color: #6d6e6e;
    color: var(--theme-font-color);
    font-family: Libre Franklin, sans-serif;
    margin: 0;
    padding: 0
}

a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none
}

a:not([class]):hover {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.has-white-color a {
    color: #fff0b9 !important;
    color: var(--theme-cream-color) !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 125%;
    margin: 0;
    padding: 0;
    width: 100%
}

h1 {
    font-size: 2rem
}

h1 em {
    font-size: 2.25rem
}

@media screen and (min-width:991px) {
    h1 {
        font-size: 3.5rem
    }

    h1 em {
        font-size: 4rem
    }
}

h2 {
    font-size: 1.75rem
}

h2 em {
    font-size: 2rem
}

@media screen and (min-width:991px) {
    h2 {
        font-size: 3rem
    }

    h2 em {
        font-size: 3.5rem
    }
}

h3 {
    font-size: 1.5rem
}

h3 em {
    font-size: 1.75rem
}

@media screen and (min-width:991px) {
    h3 {
        font-size: 2.5rem
    }

    h3 em {
        font-size: 3rem
    }
}

h4 {
    font-size: 1.25rem
}

h4 em {
    font-size: 1.5rem
}

@media screen and (min-width:991px) {
    h4 {
        font-size: 2rem
    }

    h4 em {
        font-size: 2.5rem
    }
}

h5 {
    font-size: 1rem
}

h5 em {
    font-size: 1.25rem
}

@media screen and (min-width:991px) {
    h5 {
        font-size: 1.5rem
    }

    h5 em {
        font-size: 2rem
    }
}

h6 {
    font-size: 1rem
}

h6 em {
    font-size: 1.25rem
}

@media screen and (min-width:991px) {
    h6 {
        font-size: 1rem
    }

    h6 em {
        font-size: 1.5rem
    }
}

li {
    line-height: 150%
}

li:not([class]) {
    font-size: 1.25rem
}

.header-menu-list li:not([class]) {
    font-size: .9rem
}

ol.is-style-list-big-numbers,
ol.is-style-list-medium-big-numbers {
    counter-reset: oplm-counter;
    list-style: none;
    margin: 0;
    padding: 2.5rem 0 0 2.5rem
}

@media screen and (min-width:991px) {

    ol.is-style-list-big-numbers,
    ol.is-style-list-medium-big-numbers {
        padding: 2.5rem 0 0 4rem
    }
}

ol.is-style-list-big-numbers li,
ol.is-style-list-medium-big-numbers li {
    counter-increment: oplm-counter;
    margin-bottom: 1.5rem;
    position: relative
}

@media screen and (min-width:991px) {

    ol.is-style-list-big-numbers li,
    ol.is-style-list-medium-big-numbers li {
        margin-bottom: 2.5rem
    }
}

ol.is-style-list-big-numbers li:not([class]):before,
ol.is-style-list-medium-big-numbers li:not([class]):before {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    content: counter(oplm-counter);
    font-family: Times New Roman, Times, serif;
    font-size: 4rem;
    font-weight: 400;
    left: -2.5rem;
    line-height: 125%;
    position: absolute;
    top: -1.25rem
}

@media screen and (min-width:991px) {

    ol.is-style-list-big-numbers li:not([class]):before,
    ol.is-style-list-medium-big-numbers li:not([class]):before {
        font-size: 5rem;
        left: -4rem;
        top: -2rem
    }
}

ol.is-style-list-big-numbers li:last-child,
ol.is-style-list-medium-big-numbers li:last-child {
    margin-bottom: 0
}

ol.is-style-list-medium-big-numbers {
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
    max-width: var(--theme-size-medium)
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

ul:not([class]) {
    list-style-type: disc;
    margin: revert;
    padding: revert
}

figure {
    margin: 0
}

figure>svg {
    height: auto;
    max-width: 100%;
    width: 100%
}

p {
    font-size: .875rem;
    line-height: 150%;
    margin: 0;
    width: 100%
}

@media screen and (min-width:991px) {
    p {
        font-size: 1.25rem
    }
}

p.has-background {
    padding: 0
}

strong {
    font-weight: 600
}

em {
    font-family: Times New Roman, Times, serif;
    font-weight: 400
}

h1+*,
h2+*,
h3+*,
h4+*,
h5+*,
h6+*,
p:not(:empty)+* {
    margin-top: .5rem
}

@media screen and (min-width:991px) {

    h1+*,
    h2+*,
    h3+*,
    h4+*,
    h5+*,
    h6+*,
    p:not(:empty)+* {
        margin-top: 1rem
    }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p:not(:empty) a {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    -webkit-text-decoration: underline;
    text-decoration: underline
}

figure.image-cover {
    overflow: hidden;
    position: relative
}

figure.image-cover.is-background-style {
    z-index: -2
}

figure.image-cover.is-background-style,
figure.image-cover>img {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

figure.image-cover>img {
    -o-object-fit: cover;
    object-fit: cover
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

:focus-visible {
    outline-color: #7ab5b0;
    outline-color: var(--theme-primary-color)
}

table {
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-color-lines);
    border-collapse: collapse;
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    display: block;
    overflow: hidden
}

@media screen and (min-width:991px) {
    table {
        width: 100%
    }
}

table tr {
    display: flex;
    flex-direction: column;
    padding: .5rem 0
}

@media screen and (min-width:991px) {
    table tr {
        display: table-row;
        padding: 0
    }
}

table tr td,
table tr th {
    display: block;
    padding: .25rem 0;
    text-align: left
}

table tr td:first-child,
table tr th:first-child {
    padding-left: 1rem
}

table tr td:last-child,
table tr th:last-child {
    padding-right: 1rem
}

@media screen and (min-width:991px) {

    table tr td,
    table tr th {
        display: table-cell;
        padding: 1rem 0
    }

    table tr td:first-child,
    table tr th:first-child {
        padding-left: 2rem
    }

    table tr td:last-child,
    table tr th:last-child {
        padding-right: 2rem
    }
}

table tr th {
    background-color: #f9f9f9;
    background-color: var(--theme-light-grey-color);
    border-bottom: 1px solid #c2c2c2;
    border-bottom: 1px solid var(--theme-color-lines)
}

table tr:first-child td,
table tr:first-child tr {
    padding-top: 1rem
}

@media screen and (min-width:991px) {

    table tr:first-child td,
    table tr:first-child tr {
        padding-top: 2rem
    }
}

table tr:last-child td,
table tr:last-child tr {
    padding-bottom: 1rem
}

@media screen and (min-width:991px) {

    table tr:last-child td,
    table tr:last-child tr {
        padding-bottom: 2rem
    }
}

table a {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.has-bottom-border-solid-line {
    border-bottom: 1px solid #f9f9f9;
    border-bottom: 1px solid var(--theme-light-grey-color)
}

.aspect-ratio-squared {
    overflow: hidden;
    position: relative;
    width: 100%
}

.aspect-ratio-squared>:first-child {
    border-radius: .5rem;
    border-radius: var(--theme-border-radius-min);
    content: "";
    display: block;
    overflow: hidden;
    padding-top: 100%;
    position: relative
}

.aspect-ratio-squared>:first-child.rounded {
    border-radius: 50%
}

.aspect-ratio-squared>:first-child>img {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.theme-label {
    background: #eff8e9;
    border-radius: 4px;
    font-size: 16px;
    line-height: 19px;
    padding: 4px 8px;
    text-transform: uppercase
}

.theme-label-wrapper {
    margin: 4px 0 8px
}

.md-padding-top {
    padding-top: 32px
}

.block {
    display: block
}

.promoter-admin-bar__icon svg {
    display: none !important;
    height: 0 !important;
    width: 0 !important
}

#mpca_export_sub_accounts,
#mpca_import_sub_accounts,
#mpca_signup_url {
    display: none
}

.mepr_error {
    background-color: transparent !important;
    border: none !important
}

.form-table#two-factor-options {
    background-color: #f9f9f9;
    background-color: var(--theme-light-grey-color);
    border-radius: 0;
    display: table;
    margin-bottom: 2em
}

.form-table#two-factor-options tr {
    display: table-row
}

.form-table#two-factor-options td,
.form-table#two-factor-options th {
    display: table-cell
}

.form-table#two-factor-options .two-factor-methods-table {
    background-color: #f9f9f9;
    background-color: var(--theme-light-grey-color);
    border: none;
    border-radius: 0;
    border-spacing: 0
}

.form-table#two-factor-options .two-factor-methods-table tbody tr {
    background: #f9f9f9;
    background: var(--theme-light-grey-color)
}

.form-table#two-factor-options .two-factor-methods-table tbody td,
.form-table#two-factor-options .two-factor-methods-table tbody th {
    border: 0;
    padding: 1em
}

.theme-section {
    padding: 2.5rem 1rem;
    position: relative
}

@media screen and (min-width:991px) {
    .theme-section {
        padding: 5rem
    }
}

.theme-section.no-padding {
    padding: 0
}

@media screen and (min-width:991px) {
    .theme-section.no-padding {
        padding: 0
    }
}

.theme-section.is-style-medium .theme-container {
    max-width: 60rem;
    max-width: var(--theme-size-medium)
}

@media screen and (min-width:991px) {
    .theme-section.is-style-medium .theme-container {
        padding-left: 0;
        padding-right: 0
    }
}

.theme-section.is-style-row .theme-container {
    flex-direction: row
}

.theme-section.is-style-column .theme-container,
.theme-section.is-style-row-to-column .theme-container {
    flex-direction: column
}

@media screen and (min-width:991px) {
    .theme-section.is-style-row-to-column .theme-container {
        flex-direction: row
    }
}

.theme-section.is-style-column-to-row .theme-container {
    flex-direction: row
}

@media screen and (min-width:991px) {
    .theme-section.is-style-column-to-row .theme-container {
        flex-direction: column
    }
}

.theme-section .theme-container {
    display: flex;
    flex-flow: nowrap;
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-size-large);
    width: 100%
}

.theme-section .theme-container.columns {
    flex-direction: column
}

.theme-section .theme-container.regular {
    display: block
}

.theme-section.has-top-alignment .theme-container {
    align-items: flex-start
}

.theme-section.has-center-alignment .theme-container {
    align-items: center
}

.theme-section.has-bottom-alignment .theme-container {
    align-items: flex-end
}

.theme-section.is-center-justified .theme-container {
    justify-content: center
}

.theme-section.has-large-spacing .theme-container>*+* {
    margin-top: 40px;
    margin-top: var(--theme-large-spacing)
}

@media screen and (min-width:991px) {
    .theme-section.has-large-spacing .theme-container>*+* {
        margin-left: 40px;
        margin-left: var(--theme-large-spacing);
        margin-top: 0
    }
}

.theme-section.has-medium-spacing .theme-container>*+* {
    margin-top: 20px;
    margin-top: var(--theme-medium-spacing)
}

@media screen and (min-width:991px) {
    .theme-section.has-medium-spacing .theme-container>*+* {
        margin-left: 20px;
        margin-left: var(--theme-medium-spacing);
        margin-top: 0
    }
}

.theme-section.has-small-spacing .theme-container>*+* {
    margin-top: 20px;
    margin-top: var(--theme-small-spacing)
}

@media screen and (min-width:991px) {
    .theme-section.has-small-spacing .theme-container>*+* {
        margin-left: 20px;
        margin-left: var(--theme-small-spacing);
        margin-top: 0
    }
}

.theme-section.not-logged {
    padding-top: 0
}

.gform_wrapper,
.pms-form,
.theme-form {
    --theme-form-box-shadow: 0px 2px 8px rgba(64, 64, 64, .16);
    color: #6d6e6e;
    color: var(--theme-black-color);
    font-size: 1rem;
    line-height: 1.5rem
}

.gform_wrapper:not(.is-searchbox):not(.is-newsletter_wrapper),
.pms-form:not(.is-searchbox):not(.is-newsletter_wrapper),
.theme-form:not(.is-searchbox):not(.is-newsletter_wrapper) {
    background-color: #fff;
    background-color: var(--theme-white-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    padding: 1.5rem
}

@media screen and (min-width:991px) {

    .gform_wrapper:not(.is-searchbox):not(.is-newsletter_wrapper),
    .pms-form:not(.is-searchbox):not(.is-newsletter_wrapper),
    .theme-form:not(.is-searchbox):not(.is-newsletter_wrapper) {
        padding: 2.5rem
    }
}

.gform_wrapper>.gform_wrapper,
.gform_wrapper>.pms-form,
.gform_wrapper>.theme-form,
.pms-form>.gform_wrapper,
.pms-form>.pms-form,
.pms-form>.theme-form,
.theme-form>.gform_wrapper,
.theme-form>.pms-form,
.theme-form>.theme-form {
    padding: 0 !important
}

.gform_wrapper .gfield:not(.hidden_label) input:not([type=submit]),
.gform_wrapper .gfield:not(.hidden_label) textarea,
.pms-form .gfield:not(.hidden_label) input:not([type=submit]),
.pms-form .gfield:not(.hidden_label) textarea,
.theme-form .gfield:not(.hidden_label) input:not([type=submit]),
.theme-form .gfield:not(.hidden_label) textarea {
    margin: .25rem 0 0
}

.gform_wrapper input:not([type=submit]):not([type=checkbox]),
.gform_wrapper textarea,
.pms-form input:not([type=submit]):not([type=checkbox]),
.pms-form textarea,
.theme-form input:not([type=submit]):not([type=checkbox]),
.theme-form textarea {
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color);
    border-radius: .5rem;
    border-radius: var(--theme-border-radius-min);
    box-shadow: var(--theme-form-box-shadow);
    color: #6d6e6e;
    color: var(--theme-black-color);
    font-size: 1rem;
    outline: none;
    padding: .75rem !important;
    width: 100%
}

.gform_wrapper input:not([type=submit]):not([type=checkbox])[type=radio],
.gform_wrapper textarea[type=radio],
.pms-form input:not([type=submit]):not([type=checkbox])[type=radio],
.pms-form textarea[type=radio],
.theme-form input:not([type=submit]):not([type=checkbox])[type=radio],
.theme-form textarea[type=radio] {
    display: none !important
}

.gform_wrapper input:not([type=submit]):not([type=checkbox])[type=radio]:checked+label,
.gform_wrapper textarea[type=radio]:checked+label,
.pms-form input:not([type=submit]):not([type=checkbox])[type=radio]:checked+label,
.pms-form textarea[type=radio]:checked+label,
.theme-form input:not([type=submit]):not([type=checkbox])[type=radio]:checked+label,
.theme-form textarea[type=radio]:checked+label {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    border-color: #e1f0ef;
    border-color: var(--theme-mint-color)
}

.gform_wrapper input:not([type=submit]):not([type=checkbox])[type=radio]+label,
.gform_wrapper textarea[type=radio]+label,
.pms-form input:not([type=submit]):not([type=checkbox])[type=radio]+label,
.pms-form textarea[type=radio]+label,
.theme-form input:not([type=submit]):not([type=checkbox])[type=radio]+label,
.theme-form textarea[type=radio]+label {
    border: 1px solid #f9f9f9;
    border-color: var(--theme-light-grey-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    box-shadow: var(--theme-form-box-shadow);
    cursor: pointer;
    max-width: none !important;
    padding: 24px;
    position: relative;
    text-align: center;
    width: 100%
}

.gform_wrapper .theme-button,
.gform_wrapper input[type=submit],
.pms-form .theme-button,
.pms-form input[type=submit],
.theme-form .theme-button,
.theme-form input[type=submit] {
    background-color: transparent;
    border: 2px solid #f07e24;
    border: 2px solid var(--theme-highlight-color);
    color: #f07e24;
    color: var(--theme-highlight-color);
    margin: 0 auto
}

.gform_wrapper .tagify,
.gform_wrapper select,
.pms-form .tagify,
.pms-form select,
.theme-form .tagify,
.theme-form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27 fill=%27none%27%3E%3Cpath fill=%27%236D6E6E%27 fill-rule=%27evenodd%27 d=%27M9.348 1.359 4.872 5.707.642 1.348l.717-.696 3.534 3.641L8.652.642z%27 clip-rule=%27evenodd%27/%3E%3C/svg%3E");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color);
    border-radius: .5rem;
    border-radius: var(--theme-border-radius-min);
    box-shadow: var(--theme-form-box-shadow);
    color: #6d6e6e;
    color: var(--theme-black-color);
    font-size: 1rem;
    height: 2.625rem;
    padding: 0 .75rem
}

.gform_wrapper .tagify::-ms-expand,
.gform_wrapper select::-ms-expand,
.pms-form .tagify::-ms-expand,
.pms-form select::-ms-expand,
.theme-form .tagify::-ms-expand,
.theme-form select::-ms-expand {
    display: none
}

.form-aside-container {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    display: flex;
    flex: 0 0 auto;
    flex-flow: column nowrap;
    margin-top: 20px;
    padding: 40 20px;
    width: 100%
}

@media screen and (min-width:991px) {
    .form-aside-container {
        width: 400px
    }
}

.form-aside-container>:not(:last-child) {
    margin-bottom: 16px
}

.form-aside-container>p {
    font-size: 1rem;
    line-height: 1.25rem
}

.form-aside-container>ol {
    font-size: 1rem;
    line-height: 1.5rem
}

.theme-sign-form {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    margin-bottom: 0
}

.theme-sign-form .wp-block-site-logo {
    margin-bottom: 1.5rem
}

.theme-sign-form #pms_login,
.theme-sign-form .pms-account-subscription-details-table,
.theme-sign-form .theme-section {
    padding: 1.5rem
}

@media screen and (min-width:991px) {

    .theme-sign-form #pms_login,
    .theme-sign-form .pms-account-subscription-details-table,
    .theme-sign-form .theme-section {
        padding: 2.5rem
    }
}

.theme-sign-form #pms_login .login-remember #rememberme,
.theme-sign-form .pms-account-subscription-details-table .login-remember #rememberme,
.theme-sign-form .theme-section .login-remember #rememberme {
    width: revert
}

.theme-sign-form #pms_login .login-remember label,
.theme-sign-form .pms-account-subscription-details-table .login-remember label,
.theme-sign-form .theme-section .login-remember label {
    display: inline
}

.theme-sign-form #pms_login .login-extra,
.theme-sign-form .pms-account-subscription-details-table .login-extra,
.theme-sign-form .theme-section .login-extra {
    background: #f9f9f9;
    border-radius: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    padding: 1.25rem 1rem;
    text-align: center
}

.theme-sign-form #pms_login .login-extra a,
.theme-sign-form .pms-account-subscription-details-table .login-extra a,
.theme-sign-form .theme-section .login-extra a {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.theme-sign-form #pms_login .login-extra>span,
.theme-sign-form .pms-account-subscription-details-table .login-extra>span,
.theme-sign-form .theme-section .login-extra>span {
    margin: 0 1rem
}

.theme-sign-form .sticky {
    padding: 2.5rem
}

.theme-sign-form .theme-form {
    border-radius: 0
}

@media screen and (min-width:600px) {
    .theme-sign-form .theme-form {
        min-height: 100vh
    }

    .theme-sign-form .sticky {
        padding-left: 0
    }
}

.theme-sign-form .pms-subscription-plan-auto-renew {
    width: 100%
}

@media screen and (min-width:766px) {
    .theme-sign-form.odd-columns>.is-vertically-aligned-center {
        align-self: flex-start;
        display: flex;
        height: calc(100vh - 180px)
    }

    .theme-sign-form.odd-columns>.is-vertically-aligned-center>.wp-block-group {
        align-self: center
    }
}

.stay-connected form {
    flex-direction: column
}

.stay-connected form .gfield {
    margin-bottom: 8px !important
}

.stay-connected form .gform_footer {
    display: revert;
    margin-top: 20px !important
}

.stay-connected form .gform_footer .gform_button {
    margin: 0 auto
}

.mc-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem
}

input.mce_inline_error {
    border-color: #f07e24 !important;
    border-color: var(--theme-highlight-color) !important
}

div.mce_inline_error {
    background-color: #fff !important;
    background-color: var(--theme-white-color) !important;
    color: #f07e24 !important;
    color: var(--theme-highlight-color) !important;
    margin: .25rem 0 0 !important;
    padding: 0 !important;
    z-index: 1
}

.indicates-required {
    font-size: .75rem;
    margin: 1rem 0
}

.edit-profile-avatar {
    align-items: center;
    display: flex
}

.edit-profile-avatar input[type=file] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: flex;
    font-size: 1rem;
    padding: .5rem 0;
    width: 100%
}

.edit-profile-avatar input[type=file]::file-selector-button {
    display: none
}

.edit-profile-avatar input[type=file].icon-camera:before {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content
}

.pms-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem
}

.pms-field.pms-field-subscriptions {
    flex-flow: row wrap
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan {
    flex: 1 0 auto;
    margin-bottom: 5px;
    margin-top: 5px
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan label {
    border: 1px solid #f9f9f9;
    border-color: var(--theme-light-grey-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    box-shadow: var(--theme-form-box-shadow);
    cursor: pointer;
    height: 100%;
    max-width: none !important;
    padding: 24px;
    position: relative;
    text-align: center;
    width: 100%
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan label.selected {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    border-color: #e1f0ef;
    border-color: var(--theme-mint-color)
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan label>* {
    display: block
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan:first-child {
    margin-left: 0
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan .pms-subscription-plan-trial {
    display: none
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan .pms-subscription-plan-name {
    font-size: 1rem;
    font-weight: 400
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan .pms-subscription-plan-price .pms-divider:first-child {
    display: none
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan-auto-renew {
    margin-top: 1rem
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan-auto-renew label {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr
}

.pms-field.pms-field-subscriptions>.pms-subscription-plan-auto-renew label input[name=pms_recurring] {
    margin-right: 1rem;
    margin-top: 0
}

.pms-field.pms-field-subscriptions>#pms-subscription-plans-discount {
    display: flex !important;
    flex: 1 1 auto;
    flex-wrap: wrap;
    padding: 1rem 0
}

.pms-field.pms-field-subscriptions>#pms-subscription-plans-discount label {
    width: 100%
}

.pms-field.pms-field-subscriptions>#pms-subscription-plans-discount #pms_subscription_plans_discount_code {
    flex: 1;
    margin-right: 5px
}

.pms-field.pms-field-subscriptions>#pms-subscription-plans-discount-messages-wrapper {
    border: none !important;
    flex: 1;
    flex-basis: 100%;
    padding: 0 !important
}

.pms-field.pms-field-type-heading>* {
    font-size: 1rem
}

@media screen and (min-width:991px) {
    .pms-field.pms-field-type-heading>* {
        font-size: 1.5rem
    }
}

.pms-field .pms-field-description {
    font-size: .75rem;
    margin: .5rem 0
}

.pms-field .pms-field-input-container .chosen-container .chosen-single {
    background: #fff;
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color);
    border-radius: .5rem;
    border-radius: var(--theme-border-radius-min);
    box-shadow: var(--theme-form-box-shadow);
    color: #6d6e6e;
    color: var(--theme-black-color);
    font-size: 1rem;
    height: revert;
    outline: none;
    padding: .5rem !important;
    width: 100%
}

.pms-field .pms-field-input-container .chosen-container.chosen-with-drop .chosen-single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.pms-form .pms-user-login-field {
    display: none
}

.pms-form .pms-field.pms-group-description-field.pms-group-memberships-field,
.pms-form .pms-field.pms-group-name-field.pms-group-memberships-field,
.pms-form .pms-gm-message.pms-gm-message__purchase {
    display: none !important
}

.pms-form .pms-section-billing-details.pms-billing-details {
    display: flex;
    flex-direction: column
}

.pms-form .pms-section-billing-details.pms-billing-details .pms-billing-country {
    order: 1
}

.pms-form .pms-field-section,
.pms-form .pms-form-fields-wrapper {
    margin-bottom: 2.5rem
}

.pms-form .pms-form-fields-wrapper .pms-field.pms-gdpr-field input[name=user_consent] {
    width: revert
}

.pms-form .pms-form-fields-wrapper .pms-field.pms-field-subscriptions {
    margin-top: 2rem
}

#pms_billing_state_chosen {
    width: 100% !important
}

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

@media screen and (min-width:991px) {
    .pms-field.pms-field-subscriptions>.pms-subscription-plan {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 0
    }
}

.gform_wrapper .gsection_title {
    font-size: .875rem
}

@media screen and (min-width:991px) {
    .gform_wrapper .gsection_title {
        font-size: 1.25rem
    }
}

.gform_wrapper .gsection_description {
    font-size: .75rem
}

@media screen and (min-width:991px) {
    .gform_wrapper .gsection_description {
        font-size: .875rem
    }
}

.gform_heading {
    display: none
}

.gfield_radio {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start
}

.gfield_radio .gchoice {
    flex: 1 1 auto
}

.gfield_radio .gchoice:not(:last-of-type) {
    margin-right: 8px
}

.gfield {
    margin-bottom: 8px !important
}

.gfield.gfield_html {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    padding: 40px
}

.gfield.gsection {
    border-bottom: none !important;
    padding: 0 !important
}

.gfield.gsection:not(:first-of-type) {
    margin-top: 24px
}

.gfield:not(.hidden_label) label,
.gfield:not(.hidden_label)>.gfield_label {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.25rem !important;
    margin-bottom: 8px
}

.gfield.hidden_label label {
    display: none
}

.gform_fields {
    gap: 0 !important
}

.gfield_description {
    border: none !important;
    overflow-y: auto !important
}

.gform_footer {
    margin: 24px 0 0 !important;
    padding: 0 !important;
    text-align: center
}

input[value=video]+label {
    align-items: center;
    display: flex !important;
    flex-flow: column nowrap
}

input[value=video]+label:before {
    background-image: url(../d605af438f197381f38c.svg);
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 36px;
    width: 36px
}

input[value=written]+label {
    align-items: center;
    display: flex !important;
    flex-flow: column nowrap
}

input[value=written]+label:before {
    background-image: url(../283e8d7e62cf2076d8c4.svg);
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 36px;
    width: 36px
}

.ginput_container.ginput_container_fileupload input[type=file] {
    border: none;
    bottom: 0;
    box-shadow: none;
    cursor: pointer;
    left: 0;
    opacity: 0;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    position: absolute;
    right: 0;
    top: 0
}

.border-dashed {
    border: 1px dashed #c2c2c2;
    border: 1px dashed var(--theme-grey-color);
    border-radius: 8px;
    position: relative;
    text-align: center
}

@media screen and (min-width:991px) {
    .border-dashed {
        padding: 40px 120px
    }
}

.gform_fileupload_rules {
    margin-top: 0 !important;
    padding-top: 0 !important
}

.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
    padding-top: 0 !important
}

.gform_wrapper.gravity-theme * {
    flex: 1 1 auto
}

.video-upload-wrapper .ginput_complex>span {
    display: none
}

.gform_card_icon_container div.gform_card_icon {
    max-width: 40px
}

.is-newsletter {
    display: flex
}

.is-newsletter .gform_body {
    flex: 1
}

.is-newsletter br,
.is-newsletter p:empty {
    display: none
}

.is-newsletter .gfield {
    margin-bottom: 0 !important
}

.is-newsletter .gform_footer {
    align-items: center;
    display: flex;
    flex: 0;
    margin: 0 !important
}

.is-newsletter .gform_footer p {
    display: none
}

.is-newsletter .gform_footer .gform_button {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border: none;
    color: #fff;
    color: var(--theme-white-color);
    margin-left: .5rem;
    padding: .5rem 1.5rem
}

.gchoice label sub {
    display: block
}

.donation-options-grid .gfield_radio {
    grid-auto-rows: 1fr
}

.donation-options-grid .gfield_radio>.gchoice {
    height: 100%;
    width: 100%
}

.donation-options-grid .gfield_radio>.gchoice>label {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%
}

.donation-options-grid .gfield_radio>.gchoice>label>sub {
    font-size: 10px;
    line-height: 16px
}

.StripeElement {
    border: 1px solid #c2c2c2 !important;
    border: 1px solid var(--theme-grey-color) !important;
    border-radius: .5rem !important;
    border-radius: var(--theme-border-radius-min) !important;
    box-shadow: var(--theme-form-box-shadow) !important;
    color: #6d6e6e !important;
    color: var(--theme-black-color) !important;
    font-size: 1rem !important;
    outline: none;
    padding: .75rem !important
}

.StripeElement--focus {
    border: inherit
}

.is-searchbox fieldset {
    align-items: center;
    border: none;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0
}

.is-searchbox .field-large {
    max-width: 30rem
}

.is-searchbox .field-medium {
    width: 10rem
}

.is-searchbox .tagify {
    --tag-pad: 5px 3px;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    max-width: 24em;
    min-width: 10em;
    overflow-x: auto;
    padding: 0;
    width: auto
}

.is-searchbox .tagify::-webkit-scrollbar {
    height: 2px;
    width: 0
}

.is-searchbox .tagify::-webkit-scrollbar-track {
    border-radius: 100px;
    opacity: 0
}

.is-searchbox .tagify::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 100px
}

.is-searchbox .tagify__input:before {
    display: none
}

.is-searchbox .tagify--empty .tagify__input:before {
    display: block
}

.is-searchbox .theme-button {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border: none;
    color: #fff;
    color: var(--theme-white-color);
    margin-left: 0;
    padding: .5rem 1.5rem
}

.is-searchbox .field-element,
.is-searchbox input:not([type=submit]) {
    margin: 0 .5rem 0 0
}

@media screen and (max-width:766px) {
    .is-searchbox {
        width: 100%
    }

    .is-searchbox fieldset {
        flex-direction: column
    }

    .is-searchbox fieldset .tagify,
    .is-searchbox fieldset input.field-element,
    .is-searchbox fieldset select.field-medium {
        margin: 0 0 .8rem;
        max-width: revert;
        width: 100%
    }
}

@media screen and (max-width:960px) {
    .theme-upcoming-speakers.wp-block-columns {
        flex-direction: column-reverse
    }

    .theme-upcoming-speakers.wp-block-columns .wp-block-column.is-vertically-aligned-center {
        align-self: auto
    }

    .theme-upcoming-speakers .theme-form .alignright {
        margin-right: auto
    }

    .theme-upcoming-speakers .theme-form .theme-section:first-of-type {
        padding-bottom: 0
    }
}

.theme-upcoming-speakers .theme-form .theme-section:first-of-type {
    padding-bottom: 0
}

.theme-upcoming-speakers .theme-form .gform_confirmation_wrapper {
    padding: 1.5rem
}

@media screen and (min-width:991px) {
    .theme-upcoming-speakers .theme-form .gform_confirmation_wrapper {
        padding: 2.5rem
    }
}

.theme-upcoming-speakers .gform_wrapper.gravity-theme .ginput_complex {
    display: block
}

.theme-donation-form .ginput_container.ginput_container_radio .gfield_radio {
    grid-gap: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr))
}

.theme-donation-form .ginput_container.ginput_container_radio .gfield_radio .gfield-choice-input:checked+label {
    font-weight: 600 !important
}

.theme-donation-form .gfield_html,
.theme-donation-form .margin-top {
    margin-top: 20px !important
}

.theme-donation-form .gfield_checkbox>div {
    align-items: center;
    display: flex
}

.theme-donation-form .gfield_checkbox>div input.gfield-choice-input {
    margin: 0 .25rem 0 0 !important;
    max-width: revert;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: revert
}

.theme-donation-form .donation_monthly legend {
    display: none !important
}

.theme-donation-form .gform_wrapper.gravity-theme .gform_footer {
    display: block
}

.wp-block-buttons {
    margin-top: 1rem
}

@media screen and (min-width:991px) {
    .wp-block-buttons {
        margin-top: 1.5rem
    }
}

.theme-button,
.tribe-common a.theme-button,
.tribe-common button.theme-button,
.wp-block-button__link,
input[type=submit] {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border: 2px solid var(--color-primary-color);
    border-radius: 10px;
    box-shadow: none;
    color: #fff;
    color: var(--theme-white-color);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    padding: .75rem 1.5rem;
    width: auto
}

@media screen and (min-width:991px) {

    .theme-button,
    .tribe-common a.theme-button,
    .tribe-common button.theme-button,
    .wp-block-button__link,
    input[type=submit] {
        font-size: 1.25rem;
        line-height: 1.25rem;
        padding: 1rem 2rem
    }
}

.theme-button:hover,
.tribe-common a.theme-button:hover,
.tribe-common button.theme-button:hover,
.wp-block-button__link:hover,
input[type=submit]:hover {
    cursor: pointer;
    filter: brightness(.9)
}

.tribe-common a.theme-button {
    max-width: -moz-max-content;
    max-width: max-content
}

.is-style-outline>.wp-block-button__link,
.tribe-common button.theme-button.is-outline {
    background-color: transparent;
    color: var(--color-reference)
}

.chosen-container {
    max-width: 100%
}

.theme-footer,
.theme-footer li,
.theme-footer p {
    font-size: .85rem;
    line-height: 1.15rem
}

.theme-footer>.theme-container {
    flex-direction: column
}

.theme-footer .footer-columns-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap
}

.theme-footer .footer-columns-container .theme-logo {
    width: 15rem
}

@media screen and (min-width:991px) {
    .theme-footer .footer-columns-container {
        flex-direction: row
    }
}

.footer-column {
    flex: 1 1 auto;
    min-width: 1px
}

.footer-column+.footer-column {
    margin-top: 48px
}

@media screen and (min-width:991px) {
    .footer-column+.footer-column {
        margin-left: 48px;
        margin-top: 0
    }

    .footer-column:first-of-type {
        max-width: 45%
    }

    .footer-column:last-of-type {
        max-width: calc(55% - 48px)
    }
}

.footer-column h6 {
    text-transform: uppercase
}

.footer-social {
    margin: 1rem 0
}

.social-media-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.social-media-list>li {
    margin-bottom: 16px
}

.social-media-list>li:not(:last-of-type) {
    margin-right: 16px
}

.social-media-list>li>a {
    align-items: center;
    display: flex;
    flex-flow: row nowrap
}

.footer-navigation-container,
.footer-partners-container {
    margin-top: 40px
}

@media screen and (min-width:991px) {

    .footer-navigation-container,
    .footer-partners-container {
        margin-top: 50px
    }
}

.footer-partners-container {
    margin-top: 32px;
    text-align: center
}

@media screen and (min-width:991px) {
    .footer-partners-container {
        margin-top: 42px
    }
}

.footer-partners-container h6 {
    margin-bottom: 1.25rem;
    text-transform: uppercase
}

.partners-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: center;
    width: 100%
}

.partners-list>li:not(:last-of-type) {
    margin-right: 0
}

.partners-list>li img {
    max-width: 5rem
}

.social-media-list span {
    display: none
}

.social-media-list [class^=icon-] {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 4px
}

.social-media-list [class^=icon-]:before {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

@media screen and (min-width:991px) {
    .social-media-list span {
        display: inline-block
    }
}

.footer-newsletter {
    border-radius: 16px;
    padding: 20px
}

.footer-newsletter p {
    margin-bottom: 0;
    margin-top: 0
}

.footer-newsletter p+p {
    margin-top: 4px
}

.footer-newsletter a {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border: none;
    border-radius: 2rem;
    color: #fff !important;
    color: var(--theme-white-color) !important;
    display: inline-block;
    margin-top: 1rem !important;
    padding: .5rem 1.5rem;
    -webkit-text-decoration: none !important;
    text-decoration: none !important
}

@media screen and (min-width:991px) {
    .footer-newsletter {
        padding: 40px
    }
}

.footer-mission>.theme-logo+* {
    margin-top: 24px
}

.footer-navigation-container {
    font-size: .75rem;
    line-height: 1.5rem;
    text-align: center
}

.footer-navigation-container .footer-menu {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-transform: uppercase
}

.footer-navigation-container .footer-menu>li:first-of-type {
    flex: 1 1 100%
}

.footer-navigation-container .footer-menu>li:not(:last-of-type) {
    margin-right: 16px
}

@media screen and (min-width:991px) {
    .footer-navigation-container .footer-menu {
        flex-wrap: nowrap
    }

    .footer-navigation-container .footer-menu>li:first-of-type {
        flex: initial
    }
}

.footer-navigation-container>p {
    font-size: inherit;
    line-height: 1rem
}

.footer-navigation-container>*+* {
    margin-top: 16px
}

.footer-disclaimer {
    margin-top: 2.5rem
}

@media screen and (min-width:991px) {
    .footer-disclaimer {
        margin-top: 5rem
    }
}

.theme-header-navigation-container {
    --vertical-padding: 10px;
    --horizontal-padding: 20px;
    --nav-side-menu: 20px;
    --nav-menu-spacing: 8px;
    --mobile-visibility: flex;
    --desktop-visibility: none;
    background-color: #fff;
    background-color: var(--theme-white-color);
    color: #6d6e6e;
    color: var(--theme-black-color);
    flex-flow: row nowrap;
    position: sticky;
    top: 0;
    z-index: 999
}

@media screen and (min-width:396px) {
    .theme-header-navigation-container {
        --nav-menu-spacing: 16px
    }
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container {
        --nav-menu-spacing: 36px;
        --mobile-visibility: none;
        --desktop-visibility: flex
    }
}

@media screen and (min-width:1280px) {
    .theme-header-navigation-container {
        --nav-side-menu: calc(50% - 640px);
        --horizontal-padding: 0
    }
}

.theme-header-navigation-container p {
    margin: 0
}

.theme-header-navigation-container .header-navigation-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-large-section-size);
    padding: 20px;
    width: 100%
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container .header-navigation-wrapper {
        flex-flow: row nowrap
    }
}

.theme-header-navigation-container .header-navigation-wrapper>:not(:last-child) {
    margin-right: var(--nav-menu-spacing)
}

.theme-header-navigation-container .header-navigation-wrapper>.header-burger-stack-wrapper {
    margin-right: 0
}

.theme-header-navigation-container .header-navigation-wrapper .header-logo-wrapper {
    width: 7.5rem
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container .header-navigation-wrapper .header-logo-wrapper {
        width: 10rem
    }
}

.theme-header-navigation-container .header-navigation-wrapper>a:hover+.nav-menu-dropdown-element {
    max-height: 80vh
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    overflow: visible;
    text-transform: none;
    transition-duration: .15s;
    transition-property: opacity, filter;
    transition-timing-function: linear
}

@media screen and (min-width: 991px) {
    .theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper {
        display: none;
    }
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open:hover,
.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper:hover {
    opacity: .7
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner,
.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner:after,
.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner:before {
    background-color: #c2c2c2;
    background-color: var(--theme-grey-color)
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-box {
    display: inline-block;
    height: 22px;
    position: relative;
    width: 26px
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner {
    display: block;
    margin-top: -1px;
    top: 50%
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner,
.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:after,
.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:before {
    background-color: #c2c2c2;
    background-color: var(--theme-grey-color);
    border-radius: 0;
    height: 2px;
    position: absolute;
    transition-duration: .15s;
    transition-property: transform;
    transition-timing-function: ease;
    width: 26px
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:after,
.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:before {
    content: "";
    display: block
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:before {
    top: -8px
}

.theme-header-navigation-container .header-navigation-wrapper .hamburger-inner:after {
    bottom: -8px
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper .hamburger-inner {
    transition-duration: 75ms;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19)
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner:before {
    opacity: 0;
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s
}

.theme-header-navigation-container .header-navigation-wrapper .header-burger-stack-wrapper.open .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s
}

@media screen and (max-width:367px) {
    .theme-header-navigation-container .header-navigation-wrapper .header-menu-container {
        white-space: nowrap
    }
}

@media screen and (max-width:412px) {
    .theme-header-navigation-container .header-navigation-wrapper .header-menu-container {
        white-space: nowrap
    }

    .theme-header-navigation-container .header-navigation-wrapper .login-container {
        margin-left: 8px
    }
}

.theme-header-navigation-container .header-menu-container {
    display: flex
}

.theme-header-navigation-container .header-menu-container .header-menu-list {
    font-weight: 500;
    text-transform: uppercase;
    color: #F07E24;
    list-style-type: none !important;
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    font-size: .9rem;
    line-height: 1.25rem
}

.theme-header-navigation-container .header-menu-container .header-menu-list>li:not(:last-of-type) {
    margin-right: var(--nav-menu-spacing)
}

.theme-header-navigation-container .header-menu-container .header-menu-list>li:hover .sub-menu {
    max-height: 90vh
}

.theme-header-navigation-container .header-menu-container .header-menu-list>li:hover.has-children>a:after {
    transform: rotate(180deg)
}

.theme-header-navigation-container .header-menu-container .header-menu-list>li.has-children>a:after {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    content: "\e900";
    font-family: icomoon !important;
    font-size: .8rem;
    margin-left: 5px;
    transform: rotate(0deg);
    transition: transform .3s ease-in-out
}

@media screen and (max-width:990px) {
    .theme-header-navigation-container .header-menu-container .header-menu-list>li:not(.login-container) {
        display: none
    }
}

.theme-header-navigation-container .header-menu-container .sub-menu {
    font-size: 1rem;
    line-height: 2.25rem;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition: max-height .3s ease-in-out
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container {
    background: linear-gradient(90deg, #f9f9f9, hsla(0, 0%, 98%, .9) 50%, hsla(0, 0%, 98%, 0));
    position: relative;
    padding: 10px;
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container.has-solid-background {
    background: #fef9f2;
    width: 200px;
    text-align: center;
    border-bottom-left-radius: 10px 10px;
    border-bottom-right-radius: 10px 10px;
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container>.sub-menu-wrapper {
    margin: 0 auto;
    max-width: 64rem;
    max-width: var(--theme-size-medium-large);
    padding: 1rem 0;
    position: relative
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container>.sub-menu-wrapper>*+* {
    margin-top: 16px
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container>.sub-menu-wrapper li:hover .nav-item-image {
    display: block
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container>.sub-menu-wrapper li:hover h4 {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.theme-header-navigation-container .header-menu-container .sub-menu>.sub-menu-container>.sub-menu-wrapper li:hover p {
    font-weight: 700
}

.theme-header-navigation-container .header-menu-container .sub-menu>li {
    margin-bottom: 18px
}

.theme-header-navigation-container .header-menu-container .sub-menu>li:first-child {
    margin-top: 28px
}

.theme-header-navigation-container .header-menu-container .sub-menu>li:last-child {
    margin-bottom: 28px
}

.theme-header-navigation-container .header-burger-stack-wrapper {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-flow: column nowrap;
    padding: 2px;
    width: 30px
}

.theme-header-navigation-container .header-burger-stack-wrapper>.burger-stack-element {
    background-color: #c2c2c2;
    background-color: var(--theme-grey-color);
    height: 2px;
    max-width: 100%;
    transition: max-width .1s linear;
    width: 100%
}

.theme-header-navigation-container .header-burger-stack-wrapper>.burger-stack-element:not(:last-of-type) {
    margin-bottom: 6px
}

.theme-header-navigation-container .header-burger-stack-wrapper.open .burger-stack-element:first-of-type {
    max-width: 50%
}

.theme-header-navigation-container .header-burger-stack-wrapper.open .burger-stack-element:nth-of-type(2) {
    max-width: 70%
}

.theme-header-navigation-container .header-burger-stack-wrapper.open+.header-dropdown-container {
    max-height: 80vh
}

.theme-header-navigation-container .header-dropdown-container {
    background: #fff;
    background: var(--theme-white-color);
    font-size: 1.75rem;
    left: 0;
    line-height: 2.25rem;
    max-height: 0;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height .3s ease-in-out
}

.theme-header-navigation-container .header-dropdown-container>li {
    display: flex;
    flex-flow: column nowrap
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 64rem;
    max-width: var(--theme-size-medium-large);
    padding: 2.5rem 0;
    width: 100%
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper {
        flex-direction: row
    }
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-main {
    margin-bottom: 1rem
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-main {
        border-right: 1px solid #c2c2c2;
        border-right: 1px solid var(--theme-color-lines);
        margin-right: 5rem;
        max-width: -moz-fit-content;
        max-width: fit-content;
        padding-right: 5rem
    }
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 1.25rem;
    overflow-y: auto;
    padding: 0 3rem
}

@media screen and (min-width:991px) {
    .theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-list {
        font-size: 1.5rem;
        line-height: 2rem;
        max-height: -moz-fit-content;
        max-height: fit-content;
        padding: 0
    }
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-list>.menu-item.menu-item-has-children>a {
    font-size: .75rem;
    line-height: 1.25rem
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .header-dropdown-list .login-container.header {
    display: none
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .has-children>a {
    font-size: .75rem;
    font-weight: 200;
    line-height: 1rem;
    margin-bottom: 20px
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .has-children>.sub-menu {
    position: relative
}

.theme-header-navigation-container .header-dropdown-container .header-dropdown-wrapper .has-children>.sub-menu>li:not(:last-of-type) {
    margin-bottom: 18px
}

.theme-header-navigation-container .icon-search {
    font-size: 1.5rem
}

.item-mega-menu {
    align-items: center;
    color: #F07E24;
    flex-flow: row nowrap;
    max-width: 32rem;
    font-weight: 500;
}

.item-mega-menu>h4 {
    font-size: 16px;
    width: auto
}

.item-mega-menu>p {
    font-size: .75rem;
    font-style: italic;
    line-height: 1.25rem;
    margin-left: 16px;
    white-space: nowrap
}

.item-mega-menu .nav-item-image {
    border-radius: 1rem;
    bottom: 1rem;
    display: none;
    max-width: 22rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 1rem
}

.item-mega-menu .nav-item-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.nav-menu-dropdown-element {
    font-size: 1.75rem;
    left: 0;
    line-height: 2.25rem;
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--nav-side-menu);
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height .3s ease-in-out
}

.nav-menu-search-container>.icon-search {
    cursor: pointer
}

.nav-menu-search-container>.icon-search.open+.nav-menu-dropdown-element {
    max-height: 100%
}

.nav-menu-search-container>.icon-search+.nav-menu-dropdown-element {
    background-color: #f9f9f9;
    background-color: var(--theme-light-grey-color)
}

.nav-menu-search-container>.nav-menu-dropdown-element {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    top: 0;
    z-index: 1
}

.nav-menu-search-container>.nav-menu-dropdown-element>.nav-menu-dropdown-element-wrapper {
    align-items: center;
    color: #c2c2c2;
    color: var(--theme-grey-color);
    display: flex;
    flex-flow: row nowrap;
    width: 100%
}

.nav-menu-search-container>.nav-menu-dropdown-element>.nav-menu-dropdown-element-wrapper>.search-form {
    align-items: center;
    display: flex;
    max-width: 100%
}

@media screen and (min-width:991px) {
    .nav-menu-search-container>.nav-menu-dropdown-element>.nav-menu-dropdown-element-wrapper>.search-form {
        flex: 1
    }
}

.nav-menu-search-container>.nav-menu-dropdown-element>.nav-menu-dropdown-element-wrapper>.search-form>input[type=search] {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 1.5rem;
    line-height: 2rem;
    outline: none;
    width: 100%
}

.nav-menu-search-container>.nav-menu-dropdown-element>.nav-menu-dropdown-element-wrapper>.icon-close {
    cursor: pointer;
    flex: 0 1 auto;
    font-size: 1rem;
    margin-left: 20px
}

.login-container {
    align-items: center;
    background-color: #fff;
    background-color: var(--theme-white-color);
    flex-flow: row nowrap;
    padding: 0
}

.login-container>:not(:last-of-type) {
    margin-right: var(--nav-menu-spacing)
}

.login-container.header {
    display: flex;
}

@media screen and (min-width: 800px) {
    .login-container.header {
        display: flex;
    }
}

.login-container.dropdown {
    display: var(--desktop-visibility);
    padding: 1.5rem 0
}

.login-container a:not([class]) {
    color: #f07e24;
    color: var(--theme-highlight-color)
}

@media screen and (min-width:991px) {
    .login-container {
        padding: 0
    }

    .login-container a:first-child {
        position: relative;
        color: #7AB5B0;
    }

    .login-container a:first-child:after {
        border-right: solid 1px #c2c2c2;
        border-right: solid 1px var(--theme-color-lines);
        bottom: 0;
        content: "";
        height: 1.5rem;
        margin: auto;
        position: absolute;
        right: -1.1rem;
        top: 0
    }
}

@media screen and (max-width:990px) {
    .login-container a.theme-button {
        padding: .75rem .825rem
    }
}

.header-min {
    padding: 1rem 0
}

.header-min .theme-logo {
    line-height: 0
}

.header-min .theme-logo img {
    height: 3.5rem
}

@media screen and (min-width:991px) {
    .header-min .theme-logo img {
        height: 5rem
    }
}

.theme-archive-container {
    display: flex;
    flex-flow: column nowrap;
    padding-bottom: 40px
}

.theme-archive-container>article {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    border-radius: 8px;
    color: #6d6e6e;
    color: var(--theme-black-color);
    padding: 12px 22px
}

.theme-archive-container>article:not(:last-of-type) {
    margin-bottom: 10px
}

.theme-archive-container>article>h3 {
    margin-bottom: 5px
}

.theme-archive-container>article>p {
    font-size: 1rem;
    line-height: 1.25rem
}

.theme-archive-container>h2 {
    color: #f07e24;
    color: var(--theme-highlight-color)
}

.theme-archive-container>h2:not(:last-of-type) {
    margin-bottom: 20px
}

.theme-archive-pagination {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-top: 70px;
    width: 100%
}

.theme-archive-pagination>.theme-button:not(:last-of-type) {
    margin-right: 15px
}

.theme-container.archive-story,
.theme-container.archive-support,
.theme-container.archive-toolkit {
    flex-direction: column;
    padding-top: 80px
}

.theme-container.archive-story h2,
.theme-container.archive-support h2,
.theme-container.archive-toolkit h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 20px;
    text-align: center
}

@media screen and (min-width:766px) {

    .theme-container.archive-story h2,
    .theme-container.archive-support h2,
    .theme-container.archive-toolkit h2 {
        font-size: 48px;
        font-weight: 400;
        line-height: 60px;
        margin-bottom: 40px
    }
}

.theme-container.blog-articles {
    grid-gap: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
    margin-top: 1rem
}

@media screen and (min-width:991px) {
    .theme-container.blog-articles {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 2.5rem;
        margin-top: 2.5rem
    }

    .theme-container.blog-articles .card-archive:first-of-type {
        display: grid;
        grid-auto-flow: dense;
        grid-column: 1/4;
        grid-template-columns: repeat(2, 1fr);
        min-height: 25rem
    }

    .theme-container.blog-articles .card-archive:first-of-type .card-content {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .theme-container.blog-articles .card-archive:first-of-type .card-feature-img {
        grid-column-start: 2;
        height: 100%
    }
}

.header-blog {
    height: 45vh;
    width: 100%
}

.header-blog img {
    align-content: center;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    width: 100%
}

.single-post .post-title {
    margin: 1rem 0
}

@media screen and (min-width:991px) {
    .single-post .post-title {
        margin: 1.5rem 0
    }
}

.single-post .author {
    display: flex;
    margin-bottom: 1rem
}

.single-post .author .avatar {
    margin-right: .5rem
}

.single-post .post-content {
    margin-top: 1.5rem
}

@media screen and (min-width:991px) {
    .single-post .post-content {
        margin-top: 2.5rem
    }
}

.single-post .post-content blockquote {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    margin: 2.5rem auto;
    padding: 1.5rem;
    width: 100%
}

.single-post .post-content blockquote p {
    font-size: 1.25rem
}

@media screen and (min-width:991px) {
    .single-post .post-content blockquote {
        padding: 2.5rem
    }
}

.related-items .related-item {
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
    max-width: 60rem;
    max-width: var(--theme-size-medium)
}

.related-items .related-item img {
    border-radius: .5rem;
    border-radius: var(--theme-border-radius-min);
    height: 5rem;
    -o-object-fit: cover;
    object-fit: cover;
    width: 5rem
}

.related-items .related-item .related-data {
    margin-left: 1.25rem
}

.related-items .related-item .related-data .related-meta {
    font-size: .8rem
}

.related-items .related-item .related-data a {
    color: #6d6e6e;
    color: var(--theme-black-color);
    -webkit-text-decoration: none;
    text-decoration: none
}

.main-account {
    --text-color: #6d6e6e;
    grid-gap: 3rem;
    display: grid
}

@media screen and (min-width:1200px) {
    .main-account {
        grid-template-columns: minmax(872px, 1fr) minmax(250px, 360px)
    }
}

.main-account main>section:not(:last-child) {
    margin-bottom: 1rem
}

.main-account.container {
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-large-section-size);
    padding: 20px;
    width: 100%
}

@media screen and (min-width:1280px) {
    .main-account.container {
        padding: 40px 0
    }
}

.main-account .hero-cta-blog-per-month {
    background: linear-gradient(260deg, #7ab5b0 27.51%, #93bd9a 57.5%);
    border-radius: 10px;
    color: #fff;
    padding: max(20px, min(5vw, 60px)) max(20px, min(10%, 72px));
    text-align: center
}

.main-account .hero-cta-blog-per-month a.theme-button {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    border: 0;
    color: #6d6e6e;
    display: inline-block;
    font-weight: 600;
    padding: 1rem 2rem
}

.main-account .hero-cta-blog-per-month a.theme-button:hover {
    cursor: pointer;
    opacity: .5
}

.main-account .latest-posts {
    border-radius: .5rem;
    padding: max(28px, min(5vw, 80px)) max(20px, min(10%, 40px))
}

.main-account .latest-posts .title-section {
    color: #7ab5b0
}

.main-account .latest-posts #blog-entries {
    grid-gap: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))
}

.main-account .latest-posts #blog-entries>.blog-item {
    width: revert
}

.main-account .latest-posts #blog-entries>.blog-item:first-child {
    display: revert
}

.main-account .latest-posts #blog-entries>.blog-item:first-child .img-blogi {
    height: 15rem
}

.main-account .latest-posts #blog-entries>.blog-item:first-child .img-blogi img {
    border-radius: .5rem .5rem 0 0
}

.main-account .latest-posts #blog-entries>.blog-item:first-child .txt-blogi {
    padding: 40px
}

.main-account .latest-posts #blog-entries>.blog-item:first-child .txt-blogi h3 {
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin-bottom: .5rem
}

.main-account .upcoming-events {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    border-radius: .5rem
}

.main-account .upcoming-events .header-upcoming-events {
    padding: .3rem .5rem
}

.main-account .upcoming-events .header-upcoming-events .tabs {
    margin-top: 1rem
}

.main-account .upcoming-events .header-upcoming-events .tabs .item-tab {
    color: #c2c2c2;
    display: inline-block
}

.main-account .upcoming-events .header-upcoming-events .tabs .item-tab.active {
    color: #7ab5b0
}

.main-account .upcoming-events .header-upcoming-events .tabs .item-tab:not(.active):hover {
    color: hsla(0, 0%, 76%, .855);
    cursor: pointer
}

.main-account .upcoming-events .header-upcoming-events .tabs .border-separator:before {
    border-right: 1px solid #ccc;
    content: "";
    font-size: 1.5rem;
    margin: 0 .8rem;
    position: relative
}

@media screen and (min-width:991px) {
    .main-account .upcoming-events .header-upcoming-events .tabs {
        margin-top: 1.825rem
    }

    .main-account .upcoming-events .header-upcoming-events .tabs .border-separator:before {
        font-size: 2rem;
        margin: 0 1.5rem
    }
}

.main-account .upcoming-events .tribe-events-l-container {
    min-height: 0 !important;
    min-height: auto !important
}

.main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-top: 2rem
}

@media screen and (min-width:991px) {
    .main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row {
        flex-direction: row
    }
}

.main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag {
    display: none
}

@media screen and (min-width:991px) {
    .main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-date-tag {
        display: block
    }
}

.main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event {
    display: flex;
    padding: 0 1rem
}

@media screen and (min-width:991px) {
    .main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event {
        padding: 0
    }
}

.main-account .upcoming-events .tribe-events-calendar-list .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event .tribe-events-calendar-list__event-details {
    flex: initial;
    padding-left: 0;
    width: auto
}

.main-account .upcoming-events .tribe-common.tribe-events .tribe-common-l-container.tribe-events-l-container {
    padding-top: 0
}

.main-account .upcoming-events.show-rsvp .tribe-event-ticket__is-ticket,
.main-account .upcoming-events.show-ticket .tribe-event-ticket__is-rsvp {
    display: none
}

@media screen and (min-width:540px) {
    .main-account .upcoming-events {
        padding: 0 1.25rem
    }
}

.main-account aside {
    color: #6d6e6e
}

.main-account aside>div:not(:last-child),
.main-account aside>section:not(:last-child) {
    margin-bottom: 1rem
}

.main-account aside .account-main-menu {
    background: #f9f9f9;
    border-radius: .5rem;
    padding: 20px
}

.main-account aside .account-main-menu .user-preview {
    align-items: center;
    display: flex;
    margin-bottom: 40px
}

.main-account aside .account-main-menu .user-preview .profile-avatar {
    margin-right: 1rem;
    position: relative
}

.main-account aside .account-main-menu .user-preview .profile-avatar .avatar {
    border-radius: 100%;
    height: 80px;
    width: 80px
}

.main-account aside .account-main-menu .user-preview .profile-avatar .edit-profile-avatar {
    background-color: #fff;
    background-color: var(--theme-white-color);
    border: none;
    border-radius: 50%;
    bottom: 0;
    font-size: 1rem;
    height: 1.5rem;
    position: absolute;
    right: 0;
    width: 1.5rem
}

.main-account aside .account-main-menu nav ul li a.current {
    color: #ed8727
}

.main-account aside .account-main-menu nav ul li:not(:last-of-type) {
    margin-bottom: 1rem
}

.main-account aside .path-so-far .title-path {
    padding: 1rem 1.25rem
}

.main-account aside .path-so-far .title-path h5 {
    font-size: 1rem
}

.main-account aside .path-so-far .attended-events {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    border-radius: .5rem;
    padding: 1.25rem 1rem
}

.main-account aside .path-so-far .attended-events .count-meetings {
    align-items: center;
    color: #7ab5b0;
    display: flex;
    line-height: revert
}

.main-account aside .path-so-far .attended-events .count-meetings span {
    font-size: 2.25rem;
    margin-right: .5rem
}

label {
    display: block;
    font-size: .9em
}

.tagify {
    --placeholder-color: var(--text-color);
    --tag-pad: 5px 3px;
    border: 1px solid #c2c2c2;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 8px;
    padding: 0;
    width: 100%
}

.tagify__tag>div>* {
    white-space: pre
}

button:hover {
    opacity: .5
}

section {
    height: auto !important
}

#page-forms .container-forms {
    padding: 1rem 2rem !important
}

nav.pms-account-navigation {
    margin-bottom: 30px
}

nav.pms-account-navigation ul li {
    display: inline-block;
    margin-right: 3%
}

.tribe-common.tribe-events,
.tribe-events-single {
    --tec-font-family-sans-serif: "Libre Franklin", sans-serif;
    --color-accent-primary: var(--theme-primary-color);
    --color-accent-primary-active: var(--theme-primary-color);
    --color-accent-primary-hover: var(--theme-mint-color);
    --tec-color-text-primary: var(--theme-font-color);
    --tec-color-text-event-title: var(--theme-font-color);
    --tec-color-text-secondary: var(--theme-font-color);
    --tec-color-text-events-title: var(--theme-highlight-color);
    --tec-color-icon-secondary: var(--theme-primary-color);
    --tec-color-icon-disabled: var(--theme-grey-color);
    --tec-color-accent-primary: var(--theme-primary-color);
    --tec-color-button-primary: var(--theme-primary-color);
    --tec-color-link-accent-hover: var(--theme-primary-color);
    --tec-color-accent-primary-hover: var(--theme-primary-color-hover);
    --tec-font-size-7: 2rem;
    --tec-color-background-events-bar-submit-button: var(--theme-primary-color);
    --tec-color-background-events-bar-submit-button-hover: var(--theme-primary-color);
    --tec-color-accent-primary-week-event: var(--theme-mint-color);
    --tec-color-background: var(--theme-white-color);
    --color-accent-primary-week-event-featured-hover: var(--theme-mint-color);
    --color-accent-primary-week-event-hover: var(--theme-mint-color);
    font-family: Libre Franklin, sans-serif
}

.has-background .tribe-common.tribe-events {
    --tec-color-accent-primary-week-event: var(--theme-white-color);
    --tec-color-background: var(--theme-mint-color)
}

.tribe-common.tribe-events .tribe-common-h4 {
    font-weight: 300
}

.tribe-common.tribe-events .tribe-common-cta {
    background-color: transparent;
    border: 2px solid #7ab5b0;
    border: 2px solid var(--theme-primary-color);
    border-radius: 100px;
    color: #7ab5b0;
    color: var(--theme-primary-color);
    font-size: .75rem;
    padding: .25rem .5rem
}

.tribe-common.tribe-events .tribe-common-c-btn,
.tribe-common.tribe-events .tribe-common-c-btn:hover {
    border-radius: 5rem
}

.tribe-common.tribe-events .tribe-common-c-btn-border-small {
    background-color: transparent;
    border: 2px solid #7ab5b0;
    border: 2px solid var(--theme-primary-color);
    border-radius: 100px;
    color: #7ab5b0;
    color: var(--theme-primary-color);
    font-size: 1.25rem
}

.tribe-common.tribe-events .tribe-common-l-container.tribe-events-l-container {
    padding: 2rem 0
}

.tribe-common.tribe-events .tribe-events-calendar-list .tribe-events-calendar-list__event {
    flex-direction: row;
    justify-content: flex-start
}

@media screen and (max-width:876px) {
    .tribe-common.tribe-events .tribe-events-calendar-list .tribe-events-calendar-list__event .tribe-events-calendar-list__event-details {
        margin-bottom: 1.2rem;
        width: 100%
    }
}

.tribe-common.tribe-events .tribe-events-calendar-list span {
    color: #6d6e6e;
    color: var(--theme-font-color)
}

.tribe-common.tribe-events .tribe-events-calendar-list .tribe-events-calendar-list__event-date-tag-weekday {
    font-size: 1rem
}

.tribe-common.tribe-events .tribe-events-calendar-list .tribe-common-h4--min-medium {
    font-size: 2rem;
    font-weight: 400
}

.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-rsvp,
.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-ticket {
    margin-left: 0;
    margin-right: 0
}

.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-rsvp>.tribe-events-calendar-list__event-date-tag,
.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-rsvp>.tribe-events-calendar-list__event-wrapper,
.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-ticket>.tribe-events-calendar-list__event-date-tag,
.tribe-common.tribe-events .tribe-events-calendar-list .tribe-event-ticket__is-ticket>.tribe-events-calendar-list__event-wrapper {
    padding-left: 0
}

.tribe-common.tribe-events .column-right {
    display: flex
}

.tribe-common.tribe-events .column-right .speaker-info {
    margin-right: 1.5rem
}

.tribe-common.tribe-events .column-right .speaker-info .speaker-profile {
    border-radius: 100%;
    display: block;
    height: 125px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 125px
}

@media screen and (max-width:540px) {
    .tribe-common.tribe-events .column-right .speaker-info .speaker-profile {
        height: 80px;
        width: 80px
    }
}

.tribe-common.tribe-events .column-right .decline-action {
    text-align: center
}

.tribe-common.tribe-events .column-right .decline-action>div {
    margin-bottom: 8px
}

.tribe-common.tribe-events .column-right .decline-action button.decline-button {
    background: #f9f9f9;
    border: 0;
    border-radius: 100px;
    color: #6d6e6e;
    padding: .5rem 1.5rem
}

.tribe-common.tribe-events .hosted-by {
    display: flex
}

.tribe-common.tribe-events .hosted-by .host-image {
    border-radius: 100%;
    height: 24px;
    margin-right: 4px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 24px
}

.tribe-common.tribe-events .tribe-events-c-small-cta__price {
    display: none
}

.tribe-common.tribe-events .tribe-events-header__breadcrumbs {
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-size-large);
    padding: 2rem 1rem
}

@media screen and (min-width:991px) {
    .tribe-common.tribe-events .tribe-events-header__breadcrumbs {
        padding: 2rem 0
    }
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-size-large);
    padding: 0 1rem
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-picture,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-picture {
    margin: 0 auto;
    max-width: 30rem;
    max-width: var(--theme-size-nano);
    overflow: hidden
}

@media screen and (min-width:768px) {

    .tribe-common.tribe-events .tribe-events-pro-organizer__meta,
    .tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta {
        flex-direction: row;
        padding: 0
    }

    .tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-picture,
    .tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-picture {
        margin-right: 1rem;
        min-width: 15rem;
        padding-bottom: 20px
    }
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-data,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-data {
    padding: 2rem 0
}

@media screen and (min-width:991px) {

    .tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-data,
    .tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-data {
        max-width: 50rem;
        padding: 5rem 3.5rem
    }
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-data .profile-activity,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-data .profile-activity {
    margin: 1.25rem 0 !important
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-data .profile-activity .tribe-events-pro-organizer__meta-custom,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-data .profile-activity .tribe-events-pro-organizer__meta-custom {
    align-items: center;
    display: flex
}

.tribe-common.tribe-events .tribe-events-pro-organizer__meta .profile-data .profile-activity .tribe-events-pro-organizer__meta-custom .theme-icon,
.tribe-common.tribe-events.tribe-events-view--speaker .tribe-events-pro-organizer__meta .profile-data .profile-activity .tribe-events-pro-organizer__meta-custom .theme-icon {
    font-size: 1.25rem;
    height: 1.25rem;
    margin-right: .5rem;
    width: 1.25rem
}

.tribe-common.tribe-events .tribe-custom-profile-resources {
    max-width: 80rem;
    max-width: var(--theme-size-large);
    padding: 2rem 1rem
}

@media screen and (min-width:991px) {
    .tribe-common.tribe-events .tribe-custom-profile-resources {
        margin: 0 auto !important;
        padding: 5rem 0
    }
}

.tribe-common.tribe-events .tribe-custom-profile-resources .resources-items {
    display: flex;
    margin-top: 1rem
}

@media screen and (min-width:991px) {
    .tribe-common.tribe-events .tribe-custom-profile-resources .resources-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-top: 2.5rem
    }
}

.tribe-common.tribe-events .tribe-custom-profile-resources .resources-items .resource-item {
    display: flex
}

.tribe-common.tribe-events .tribe-custom-profile-resources .resources-items .resource-item .resource-item-image {
    max-width: 5.25rem
}

.tribe-common.tribe-events .tribe-custom-profile-resources .resources-items .resource-item .resource-item-data {
    padding: .25rem 1rem
}

.tribe-common.tribe-events .tribe-custom-profile-resources .resources-items .resource-item .resource-item-data p {
    font-size: .75rem
}

.tribe-common.tribe-events .theme-quotes {
    margin: 0 auto !important;
    max-width: 80rem;
    max-width: var(--theme-size-large);
    padding: 5rem 1rem
}

@media screen and (min-width:991px) {
    .tribe-common.tribe-events .theme-quotes {
        padding: 5rem 0
    }
}

.tribe-common.tribe-events .theme-quotes .theme-quote {
    margin: 0 auto !important
}

.tribe-common.tribe-events .tribe-custom-events-list {
    margin: 0 auto !important;
    max-width: 80rem;
    max-width: var(--theme-size-large);
    padding: 2rem 1rem
}

@media screen and (min-width:991px) {
    .tribe-common.tribe-events .tribe-custom-events-list {
        padding: 2rem 0
    }
}

.tribe-common.tribe-events.tribe-events-view--speaker div.tribe-events-header__breadcrumbs.tribe-events-c-breadcrumbs {
    margin-bottom: 0
}

@media screen and (max-width:767px) {

    .tribe-common.tribe-events.tribe-events-view--speaker div.tribe-events-header__breadcrumbs.tribe-events-c-breadcrumbs .tribe-events-c-breadcrumbs__list-item-link,
    .tribe-common.tribe-events.tribe-events-view--speaker div.tribe-events-header__breadcrumbs.tribe-events-c-breadcrumbs .tribe-events-c-breadcrumbs__list-item-text {
        font-size: 24px
    }
}

.tribe-common.tribe-events .tribe-events-pro .tribe-events-pro-week-day-selector__next-icon-svg,
.tribe-common.tribe-events .tribe-events-pro .tribe-events-pro-week-day-selector__prev-icon-svg {
    height: 25px;
    width: 35px
}

.tribe-common.tribe-events .tribe-events-pro .tribe-events-pro-week-grid__event-link:hover {
    background-color: var(--tec-color-background) !important
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-item,
.event-tickets .tribe-tickets__tickets-item.tribe-tickets__submit-inline-item {
    border-top: 0;
    grid-template-columns: 1fr auto auto auto
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-item .tribe-tickets__tickets-item-quantity,
.event-tickets .tribe-tickets__tickets-item.tribe-tickets__submit-inline-item .tribe-tickets__tickets-item-quantity {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-item.has-ticket>div,
.entry .entry-content .event-tickets .tribe-tickets__tickets-item>div,
.event-tickets .tribe-tickets__tickets-item.tribe-tickets__submit-inline-item.has-ticket>div,
.event-tickets .tribe-tickets__tickets-item.tribe-tickets__submit-inline-item>div {
    align-self: center
}

.tribe-common.event-tickets .tribe-tickets__rsvp-wrapper {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: var(--tec-spacer-6);
    padding: 0 !important
}

.tribe-common.event-tickets .tribe-tickets__rsvp-message {
    background-color: #eff8e9 !important;
    background-color: var(--theme-lime-color) !important
}

.tribe-common.event-tickets .tribe-tickets__rsvp-message.tribe-tickets__rsvp-message--success,
.tribe-common.event-tickets .tribe-tickets__rsvp-message.tribe-tickets__rsvp-message--success+.tribe-tickets__rsvp .tribe-tickets__rsvp-title {
    display: none
}

.tribe-common.event-tickets .tribe-tickets__rsvp-message-link {
    color: #7ab5b0 !important;
    color: var(--theme-primary-color) !important
}

.tribe-common.event-tickets .tribe-tickets__rsvp {
    display: flex;
    flex-direction: column;
    padding: 0 !important
}

.tribe-common.event-tickets .tribe-tickets__rsvp .tribe-tickets__rsvp-attendance {
    display: none
}

.tribe-common.event-tickets .tribe-tickets__rsvp .tribe-tickets__rsvp-actions-wrapper,
.tribe-common.event-tickets .tribe-tickets__rsvp .tribe-tickets__rsvp-details-wrapper {
    width: 100%
}

.tribe-common.event-tickets .tribe-tickets__rsvp .tribe-tickets__rsvp-actions-success-going-check-icon {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color)
}

.tribe-common.event-tickets .tribe-tickets__rsvp-form-content {
    margin: 0 !important
}

.tribe-common.event-tickets .tribe-tickets__rsvp-form-content .tribe-tickets__rsvp-form-buttons {
    padding-top: 0 !important
}

.event-tickets .tribe-tickets__rsvp-form-wrapper {
    padding: 0 !important
}

.tribe-events-pg-template {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    max-width: none !important
}

.tribe-events-pg-template .tribe-events-single {
    margin: 0 auto;
    max-width: 60rem;
    max-width: var(--theme-size-medium)
}

.tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem
}

@media screen and (min-width:991px) {
    .tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid {
        flex-direction: row
    }
}

.tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid .tribe-events-event-image {
    align-self: stretch;
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    max-height: 10rem;
    max-width: 40rem;
    overflow: hidden
}

@media screen and (min-width:991px) {
    .tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid .tribe-events-event-image {
        margin-bottom: 0;
        max-height: none
    }
}

.tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid .tribe-events-event-image img {
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid .tribe-events-event-image+.tribe-custom-hero-data {
    max-width: 30rem;
    max-width: var(--theme-size-nano)
}

@media screen and (min-width:991px) {
    .tribe-events-pg-template .tribe-events-single .tribe-custom-hero-grid .tribe-events-event-image+.tribe-custom-hero-data {
        padding-left: 2rem
    }
}

.tribe-events-pg-template .tribe-events-single .tribe-events-single-event-description {
    max-width: 45rem;
    max-width: var(--theme-size-small)
}

.tribe-events-pg-template .tribe-events-single .tribe-events-schedule__datetime span {
    font-weight: 400
}

.tribe-events-pg-template .tribe-events-cal-links {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
}

.hosted-by {
    display: flex;
    margin-bottom: .5rem;
    margin-top: 0
}

.hosted-by .pic-hosts {
    align-items: center;
    display: flex;
    margin-right: 3px
}

.hosted-by .host-image {
    border-radius: 100%;
    height: 24px;
    margin-right: 4px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 24px
}

.hosted-by p a {
    color: #6d6e6e !important
}

#tribe-tickets__tickets-form.tribe-tickets__tickets-form {
    background-color: revert;
    border: revert;
    margin: revert;
    max-width: revert;
    padding: revert
}

.recurringinfo,
.tribe-events-calendar-month__calendar-event-datetime-recurring-link,
.tribe-events-calendar-month__calendar-event-tooltip-datetime-recurring-link,
.tribe-events-pro-week-grid__event-datetime-recurring-icon,
.tribe-events-pro-week-grid__event-tooltip-datetime-recurring-icon,
.tribe-events-pro-week-mobile-events__event-datetime-recurring-link,
.tribe-events-virtual-single-marker,
.tribe-events-virtual-virtual-event,
.tribe-link-view-attendee {
    display: none !important
}

.tribe-events-virtual-event .tribe-events-schedule h2.tribe-events-schedule__datetime,
.tribe-events-virtual-event .tribe-events-schedule span.tribe-events-schedule__time.tribe-events-schedule__time--start {
    color: #6d6e6e;
    font-family: Libre Franklin, sans-serif
}

.tribe-common .tribe-events-pro-organizer__meta-custom b,
.tribe-common .tribe-events-pro-organizer__meta-custom strong {
    font-weight: 500
}

@media screen and (max-width:1291px) {

    .single-tribe_ext_speaker .tribe-common--breakpoint-medium.tribe-events .tribe-events-header,
    .single-tribe_organizer .tribe-common--breakpoint-medium.tribe-events .tribe-events-header,
    .tribe-common.tribe-events.tribe-events-view .tribe-custom-events-list,
    .tribe-common.tribe-events.tribe-events-view>.tribe-common-l-container.tribe-events-l-container {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.tribe-events-sub-nav li a {
    background: none
}

.archive-support>.theme-archive-container .support-element {
    display: flex
}

.archive-support>.theme-archive-container .support-element:not(:last-child) {
    margin-bottom: 44px
}

.archive-support>.theme-archive-container .support-element .img-support {
    padding: 20px 40px
}

.archive-support>.theme-archive-container .support-element .txt-support>h2 {
    color: #6d6e6e;
    font-size: 2.5rem
}

.archive-support>.theme-archive-container .support-element .txt-support p {
    color: #6d6e6e
}

.archive-support>.theme-archive-container .support-element .txt-support p:not(:last-child) {
    margin-bottom: .5rem
}

.archive-support>.theme-archive-container .support-element .txt-support a {
    color: #7ab5b0
}

@media screen and (max-width:766px) {
    .archive-support>.theme-archive-container .support-element {
        flex-direction: column
    }

    .archive-support>.theme-archive-container .support-element .img-support {
        padding: 16px 0
    }
}

.wrapper-to-card {
    grid-gap: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: 100%
}

@media screen and (min-width:991px) {
    .wrapper-to-card {
        grid-gap: 2.5rem
    }
}

.card-archive {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border-radius: 1.5rem;
    color: #fff;
    color: var(--theme-white-color);
    overflow: hidden
}

.card-archive .card-feature-img {
    height: 240px;
    position: relative
}

.card-archive .card-feature-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

.card-archive .card-feature-img.is-video a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.card-archive .card-feature-img.is-video a:after {
    border-bottom: 38px solid transparent;
    border-left: 64px solid hsla(0, 0%, 100%, .75);
    border-top: 38px solid transparent;
    bottom: 0;
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0
}

.card-archive .card-feature-img.is-video a:hover:after {
    border-left-color: hsla(0, 0%, 100%, .55)
}

.card-archive .card-content {
    padding: 2rem 1.5rem
}

.card-archive .card-content .card-heading {
    margin-bottom: 1rem
}

.card-archive .card-content .card-heading .card-author {
    display: block;
    margin-top: .75rem;
    text-transform: uppercase
}

.card-archive .card-content .card-heading .card-date {
    display: block;
    font-size: .75rem;
    margin-bottom: .5rem;
    text-transform: capitalize
}

.card-archive .card-content .card-tags {
    font-size: .75rem;
    margin-top: 1rem
}

@media screen and (min-width:991px) {
    .card-archive .card-content .card-heading .card-title {
        font-size: 1.5rem
    }

    .card-archive .card-content>p {
        font-size: 1rem
    }
}

.has-background .card-archive {
    background-color: #fff;
    background-color: var(--theme-white-color);
    color: var(--theme-text-color)
}

.latest-posts #blog-entries .card-archive .card-content .card-title {
    font-size: 1.1rem
}

@media screen and (min-width:991px) {
    .latest-posts #blog-entries .card-archive .card-content .card-heading .card-title {
        font-size: 1.2rem
    }
}

.card-single {
    font-size: 1.25rem;
    line-height: 2rem;
    padding: 2.5rem;
    text-align: center
}

.card-single.outline {
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius)
}

@media screen and (max-width:1280px) {
    .share-your-story {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width:960px) {
    .share-your-story .wp-block-columns {
        display: block
    }

    .share-your-story .wp-block-columns .wp-block-column {
        margin: 0
    }

    .share-your-story .wp-block-columns .wp-block-column:first-of-type {
        margin-bottom: 1.5rem
    }
}

@media screen and (min-width:1280px) {
    .share-your-story {
        margin: 0 auto;
        max-width: 1280px;
        padding-left: 0;
        padding-right: 0
    }
}

.share-your-story .theme-section {
    border-radius: .5rem
}

.share-your-story .theme-section .theme-container {
    line-height: 30px
}

.share-your-story .theme-section .theme-container h1:first-of-type,
.share-your-story .theme-section .theme-container h2:first-of-type,
.share-your-story .theme-section .theme-container h3:first-of-type,
.share-your-story .theme-section .theme-container h4:first-of-type,
.share-your-story .theme-section .theme-container h5:first-of-type,
.share-your-story .theme-section .theme-container h6:first-of-type,
.share-your-story .theme-section .theme-container p:first-of-type,
.share-your-story .theme-section .theme-container ul:first-of-type {
    margin-left: 20px;
    margin-left: var(--theme-small-spacing)
}

.share-your-story .theme-section .theme-container h1:not(:last-child),
.share-your-story .theme-section .theme-container h2:not(:last-child),
.share-your-story .theme-section .theme-container h3:not(:last-child),
.share-your-story .theme-section .theme-container h4:not(:last-child),
.share-your-story .theme-section .theme-container h5:not(:last-child),
.share-your-story .theme-section .theme-container h6:not(:last-child),
.share-your-story .theme-section .theme-container p:not(:last-child),
.share-your-story .theme-section .theme-container ul:not(:last-child) {
    margin-bottom: 16px
}

.share-your-story .ginput_container_consent input {
    display: inline;
    max-width: revert;
    width: revert
}

.share-your-story .ginput_container_consent label {
    display: inline
}

.breadcrumbs li {
    display: inline-block
}

.breadcrumbs li:not(:last-of-type) {
    margin-right: .5rem
}

.wp-block-columns.light-background {
    background: linear-gradient(180deg, #e1f0ef, #e7f0e0);
    -moz-column-gap: 5%;
    column-gap: 5%;
    padding: 80px 5%;
    width: 100%
}

.wp-block-columns.light-background .wp-block-column:not(:first-child) {
    margin-left: 0
}

.wp-block-columns.light-background div#gform_wrapper_2 {
    background-color: #fff;
    border-radius: 30px;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    width: 100%
}

#gform_fields_2 legend.gfield_label {
    color: #f07e24;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px auto;
    padding: 0 !important;
    text-align: center;
    text-transform: uppercase
}

.wp-block-columns.light-background ol {
    padding-left: 2.8rem
}

.wp-block-columns.light-background ol li {
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative
}

.wp-block-columns.light-background ol li::marker {
    color: #7ab5b0;
    font-family: Times New Roman, Times, serif;
    font-size: 3em;
    font-weight: 400;
    left: 0;
    position: absolute;
    top: 0
}

label#label_2_1_0,
label#label_2_1_1 {
    background-color: #7ab5b0;
    color: #fff
}

.mepr_updated {
    background-color: #7ab5b0 !important;
    border: none !important;
    color: #fff !important;
    margin-bottom: 2rem;
    padding: 1rem !important
}

#mpca-add-sub-user-btn {
    background: transparent;
    border: 2px solid #7ab5b0;
    border-radius: 2rem;
    color: #7ab5b0;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding: 1rem 2rem
}

.mpca-fat-bottom,
.mpca-fat-top {
    margin-bottom: 2rem
}

#mpca-add-sub-user-form label {
    margin-bottom: .75rem
}

#mpca-add-sub-user-form label:first-of-type {
    margin-bottom: 0
}

#mpca-add-sub-user-form label:nth-of-type(2) {
    margin-top: .75rem
}

.mpca-search:has(#mpca_sub_account_search) {
    display: none
}

.mpca-sub-account-page-info {
    margin-bottom: .75rem
}

.mp_wrapper table.mepr-account-table {
    border: none !important;
    border-radius: 0
}

.mp_wrapper table.mepr-account-table th {
    font-size: .75rem;
    letter-spacing: normal;
    padding: .5rem .75rem;
    text-transform: uppercase
}

#mpca_sub_accounts_used h4 {
    font-size: 1.25rem
}

.mpca-add-sub-user input[type=submit] {
    margin-top: 1rem !important
}

.badges-earned {
    grid-gap: 1rem .8rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(109px, 1fr));
    padding: 1rem 0
}

.badges-earned .badge {
    text-align: center
}

.badges-earned .badge:not(.earned) {
    filter: grayscale(100%);
    opacity: .6
}

.badges-earned .badge .icon-badge {
    background-position: 50%;
    background-size: cover;
    border-radius: 72px;
    display: inline-block;
    height: 72px;
    width: 72px
}

.badges-earned .badge .icon-badge.icon-badge_founder {
    background-image: url(../23a17bcd1b2429edd425.png)
}

.badges-earned .badge .icon-badge.icon-badge_donor {
    background-image: url(../6f164c054d99e5365dcc.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_3 {
    background-image: url(../a5926016bd7a41220808.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_5 {
    background-image: url(../f1267c67a28d1cd13162.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_10 {
    background-image: url(../25f75c4d820ca1d2f949.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_15 {
    background-image: url(../9fdd6b18862123c91c91.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_25 {
    background-image: url(../23ad733103ffb30b8f56.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_50 {
    background-image: url(../48a260b97113f757c33d.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_75 {
    background-image: url(../d42cece040fbb9a07d5e.png)
}

.badges-earned .badge .icon-badge.icon-badge_streak_100 {
    background-image: url(../c89e488997fbef7ff3ce.png)
}

.badges-earned .badge .icon-badge.icon-badge_special_event {
    background-image: url(../547f7dcfa32a46a745bf.png)
}

.badges-earned .badge .name-badge {
    font-size: 12px
}

.pms-account-subscription-details-table td:first-child {
    font-size: .75rem;
    padding-right: 1rem;
    text-transform: uppercase;
    white-space: nowrap
}

.pms-account-subscription-details-table td:last-child {
    width: 100%
}

.pms-group-dashboard .pms-gm-edit-details,
.pms-group-dashboard .pms-members-table__wrap,
.pms-group-dashboard h3:last-of-type,
.pms-group-dashboard>p:first-of-type {
    display: none
}

.pms-group-dashboard>h3 {
    font-size: 1.5rem;
    margin: 2rem 0 .5rem
}

@media screen and (min-width:991px) {
    .pms-group-dashboard #pms-members-table td:last-of-type {
        white-space: nowrap
    }
}

.pms-group-dashboard .pms-form {
    padding: 0 !important
}

@media screen and (min-width:991px) {
    #pms-payment-history tr>:nth-of-type(2) {
        padding-left: 1rem;
        width: 15%
    }

    #pms-payment-history tr>:nth-of-type(3) {
        width: 60%
    }

    #pms-payment-history tr>:nth-of-type(4) {
        width: 20%
    }

    #pms-payment-history tr>:nth-of-type(5) {
        width: 15%
    }
}

.pms-account-subscription-action-link,
.pms-remove,
.pms-resend {
    border: 1px solid #f07e24;
    border: 1px solid var(--theme-highlight-color);
    border-radius: 2rem;
    color: #f07e24;
    color: var(--theme-highlight-color);
    display: inline-block;
    margin-right: .25rem;
    padding: .5rem 1rem
}

.pms-account-subscription-action-link__change,
.pms-resend {
    border-color: #7ab5b0;
    border-color: var(--theme-primary-color);
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.pms-account-subscription-action-link:last-child,
.pms-account-subscription-action-link__change,
.pms-payment-id {
    display: none
}

@media screen and (max-width:990px) {

    #pms-members-table thead,
    #pms-payment-history thead {
        left: -9999px;
        position: absolute;
        top: -9999px
    }

    #pms-members-table tbody,
    #pms-payment-history tbody {
        display: block
    }

    #pms-members-table tbody tr,
    #pms-payment-history tbody tr {
        border-bottom: 1px solid #c2c2c2;
        border-bottom: 1px solid var(--theme-color-lines);
        display: flex;
        flex-direction: column
    }

    #pms-members-table tbody tr:last-of-type,
    #pms-payment-history tbody tr:last-of-type {
        border-bottom: none
    }

    #pms-members-table tbody td,
    #pms-payment-history tbody td {
        display: flex;
        padding-left: 1rem;
        width: 100% !important
    }

    #pms-members-table tbody td.pms-members-list__actions,
    #pms-payment-history tbody td.pms-members-list__actions {
        flex-direction: column
    }

    #pms-members-table tbody td.pms-members-list__actions a,
    #pms-payment-history tbody td.pms-members-list__actions a {
        margin-top: .5rem;
        text-align: center
    }

    #pms-members-table tbody td:before,
    #pms-payment-history tbody td:before {
        white-space: nowrap;
        width: 30%
    }

    #pms-members-table td:first-of-type:before {
        content: "Email"
    }

    #pms-members-table td:nth-of-type(2):before {
        content: "Name"
    }

    #pms-members-table td:nth-of-type(3):before {
        content: "Status"
    }

    #pms-members-table td:nth-of-type(4):before {
        content: "Actions"
    }

    #pms-payment-history td:first-of-type:before {
        content: "ID"
    }

    #pms-payment-history td:nth-of-type(2):before {
        content: "Amount"
    }

    #pms-payment-history td:nth-of-type(3):before {
        content: "Date"
    }

    #pms-payment-history td:nth-of-type(4):before {
        content: "Status"
    }

    #pms-payment-history td:nth-of-type(5):before {
        content: "Invoice"
    }
}

.empty-upcoming {
    padding: 2.5rem;
    text-align: center
}

.empty-upcoming p {
    margin: 0
}

.wppb-user-forms {
    padding: 0
}

.wppb-user-forms.wppb-register-user ul {
    list-style: none;
    padding: 0
}

.wppb-user-forms.wppb-register-user .wppb-form-field {
    margin-bottom: 1rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field span.wppb-description-delimiter {
    font-size: .75rem;
    line-height: 1.25rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-default-username {
    display: none
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans h4:first-of-type {
    display: none;
    margin-bottom: 1rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan {
    flex: 1 1;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-top: 0;
    min-width: 250px
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan span.pms-subscription-plan-name {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan span.pms-subscription-plan-price {
    display: block;
    font-size: .75rem;
    line-height: 1rem
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan span.pms-subscription-plan-price span.pms-divider:first-of-type,
.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan span.pms-subscription-plan-trial {
    display: none
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan label {
    border: 1px solid #f9f9f9;
    border-color: var(--theme-light-grey-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    box-shadow: var(--theme-form-box-shadow);
    cursor: pointer;
    height: 100%;
    max-width: none !important;
    overflow: hidden;
    padding: 24px;
    position: relative;
    text-align: center;
    width: 100%
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan label [type=checkbox] {
    display: none
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan [type=checkbox]+span {
    display: inline-block;
    padding: 1em
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan :checked+span {
    display: inline-block
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan.has-1-plans {
    margin-right: 0
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-subscription-plan.has-1-plans input[type=hidden][name=subscription_plans]+label {
    background: hsla(96, 52%, 94%, .341);
    border-color: #e1f0ef;
    border-color: var(--theme-mint-color);
    border-width: 1px
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans #pms-subscription-plans-discount {
    flex: 1 1 auto
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans #pms-subscription-plans-discount input[type=text] {
    flex: 1;
    margin-right: 1rem;
    padding: 1rem !important
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans #pms-subscription-plans-discount input[type=submit] {
    display: inline;
    margin: revert
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-subscription-plans .pms-gm-message.pms-gm-message__purchase {
    display: none !important
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-checkbox-terms-and-conditions label[for=i_agree_terms_and_conditions] input {
    width: revert
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-checkbox-terms-and-conditions .agree_to_terms {
    font-size: .9em
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-checkbox-terms-and-conditions .agree_to_terms a {
    color: #7ab5b0
}

.wppb-user-forms.wppb-register-user .pms-field.pms-group-description-field.pms-group-memberships-field,
.wppb-user-forms.wppb-register-user .pms-field.pms-group-name-field.pms-group-memberships-field {
    display: none !important
}

.wppb-user-forms.wppb-register-user .wppb-form-field.wppb-send-credentials-checkbox {
    display: none
}

.wppb-user-forms.wppb-register-user .pms-field-section.pms-section-billing-details {
    display: flex;
    flex-direction: column
}

.wppb-user-forms.wppb-register-user .pms-field-section.pms-section-billing-details .pms-field.pms-billing-state select {
    width: 100%
}

.wppb-user-forms.wppb-register-user .pms-field-section.pms-section-billing-details .pms-field.pms-billing-country {
    order: 1
}

#wppb_form_general_message.wppb-error,
#wppb_form_general_message.wppb-success,
.wppb-form-error.wppb-error {
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color);
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    display: inline-block;
    padding: 1.5rem
}

@media screen and (min-width:991px) {

    #wppb_form_general_message.wppb-error,
    #wppb_form_general_message.wppb-success,
    .wppb-form-error.wppb-error {
        padding: 2.5rem
    }
}

#wppb_register_pre_form_message.alert {
    display: inline-block;
    padding: 1.5rem
}

@media screen and (min-width:991px) {
    #wppb_register_pre_form_message.alert {
        padding: 1.5rem 2.5rem
    }
}

.pms-subscription-plan label.selected {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    border-color: #e1f0ef;
    border-color: var(--theme-mint-color)
}

.wppb-checkbox-terms-and-conditions input[type=checkbox] {
    width: auto
}

.wppb-user-forms input[type=checkbox] {
    width: auto !important
}

@media screen and (min-width:991px) {
    .wppb-user-forms {
        padding: 0
    }
}

@media screen and (min-width:501px) {
    #pms-renew-subscription-form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap
    }
}

#pms-renew-subscription-form input[name=pms_redirect_back],
#pms-renew-subscription-form input[name=pms_renew_subscription] {
    margin-bottom: 1rem
}

#pms-renew-subscription-form>ul {
    flex: 1 1 100%
}

#pms-renew-subscription-form #pms-subscription-plans-discount {
    flex: 0 0 100%
}

#pms-renew-subscription-form #pms_subscription_plans_discount_code {
    margin-right: 10px
}

#pms-renew-subscription-form #pms-apply-discount.pms-submit.button {
    display: inline
}

a.download-link {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    display: block;
    margin: .875rem auto;
    text-align: center;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    width: -moz-fit-content;
    width: fit-content
}

aside.download-box {
    border: none;
    box-shadow: none;
    max-width: 100%;
    width: 400px
}

aside.download-box .download-count {
    display: none
}

aside.download-box img {
    aspect-ratio: 16/9;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

aside.download-box .download-box-content h1,
aside.download-box .download-box-content h2,
aside.download-box .download-box-content h3,
aside.download-box .download-box-content h4 {
    font-size: 1.25rem
}

aside.download-box a.download-button {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    background-image: none;
    border: 2px solid var(--color-primary-color);
    border-radius: 7rem;
    box-shadow: none;
    color: #fff;
    color: var(--theme-white-color);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: .75rem 1.5rem;
    text-shadow: none;
    width: auto;
    width: -moz-fit-content;
    width: fit-content
}

aside.download-box a.download-button small {
    display: none
}

aside.download-box a.download-button:hover {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    background-image: none;
    cursor: pointer;
    filter: brightness(.9)
}

.wp-block-column a.download-box,
.wp-block-column aside.download-box {
    width: 100%
}

.theme-flexible-content,
.theme-flexible-content>.block-editor-inner-blocks>.block-editor-block-list__layout {
    display: flex;
    flex-flow: row nowrap
}

.theme-flexible-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.theme-card,
.theme-flexible-content>.theme-card {
    flex: 0 1 auto
}

.theme-cards {
    grid-gap: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem
}

.theme-cards.has-template-rows {
    display: block
}

.theme-cards.has-template-rows .theme-card-icon {
    align-items: center;
    display: flex;
    padding: .5rem
}

.theme-cards.has-template-rows .theme-card-icon .theme-icon {
    align-items: center;
    display: flex;
    font-size: 2rem;
    height: 64px;
    justify-content: center;
    margin-right: .5rem;
    min-width: 64px;
    padding: 0;
    width: 64px
}

.theme-cards.has-template-rows .theme-card-icon .card-content {
    margin-top: 0
}

@media screen and (min-width:991px) {
    .theme-cards {
        gap: 2.5rem;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
        padding: 0
    }

    .theme-cards.has-template-columns-2 {
        grid-template-columns: 1fr 1fr
    }

    .theme-cards.has-template-columns-3 {
        grid-template-columns: 1fr 1fr 1fr
    }
}

.theme-cards .theme-card {
    background-color: #7ab5b0;
    background-color: var(--theme-primary-color);
    border-radius: .75rem;
    color: #fff;
    color: var(--theme-white-color);
    overflow: hidden;
    position: relative
}

@media screen and (min-width:991px) {
    .theme-cards .theme-card {
        border-radius: 1.5rem
    }
}

.theme-cards .theme-card>.card-image {
    height: 7rem;
    margin: 0;
    z-index: 1
}

@media screen and (min-width:991px) {
    .theme-cards .theme-card>.card-image {
        height: 12.5rem
    }
}

.theme-cards .theme-card>.wp-block-image:not(.card-image) {
    aspect-ratio: 10/8;
    height: auto;
    width: 100%
}

.theme-cards .theme-card>.wp-block-image:not(.card-image) img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.theme-cards .theme-card .card-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .75rem .5rem 1rem
}

@media screen and (min-width:991px) {
    .theme-cards .theme-card .card-content {
        padding: 1.5rem
    }
}

.theme-cards .theme-card-icon {
    border-radius: .75rem;
    border-radius: var(--theme-border-radius);
    padding: 1rem
}

@media screen and (min-width:991px) {
    .theme-cards .theme-card-icon {
        padding: 2.5rem
    }
}

.theme-cards .theme-card-icon .card-content {
    margin-top: .5rem
}

.theme-cards .theme-card-icon .card-content>* {
    margin: 0 0 .5rem
}

.theme-cards .theme-card-icon .card-content>:last-child {
    margin: 0
}

.theme-cards .theme-card-icon.is-style-outline {
    border: 1px solid #c2c2c2;
    border: 1px solid var(--theme-grey-color)
}

.two-columns-form .theme-cards {
    grid-template-columns: 1fr 1fr
}

.theme-icon {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    font-size: 4rem;
    height: 112px;
    justify-content: center;
    padding: 1.5rem;
    width: 112px
}

.theme-icon.is-style-small {
    font-size: 2rem
}

.theme-icon.is-style-medium {
    font-size: 8rem
}

.theme-icon.is-style-large {
    font-size: 16rem
}

.theme-icon.is-style-extra-large {
    font-size: 32rem
}

.theme-user-wrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly
}

@media screen and (min-width:991px) {
    .theme-user-wrapper {
        flex-wrap: nowrap
    }
}

.theme-user-wrapper>figure {
    border-radius: 80px;
    flex: 0 0 auto;
    height: 80px;
    width: 80px
}

.theme-user-wrapper>.user-content {
    flex: 0 1 auto
}

.theme-user-wrapper>.user-content>p {
    font-size: .75rem;
    line-height: 1.25rem
}

.theme-user-wrapper>.theme-button {
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    color: #c2c2c2;
    flex: 0 0 auto;
    font-weight: 400;
    margin-top: 20px
}

.theme-user-wrapper>.theme-button span {
    font-weight: 500
}

@media screen and (min-width:991px) {
    .theme-user-wrapper>.theme-button {
        margin-top: 0
    }
}

.theme-user-wrapper+* {
    margin-top: 24px
}

.theme-hero {
    align-items: flex-end;
    display: flex;
    height: 90vh;
    overflow: hidden;
    position: relative
}

@media screen and (min-width:991px) {
    .theme-hero {
        padding-top: 60px;
        padding-top: var(--theme-large-padding)
    }
}

.theme-hero.is-style-auto-height {
    height: auto
}

.theme-hero.is-style-columns-inverted>.theme-container {
    flex-flow: row-reverse nowrap
}

.theme-hero>figure.image-cover {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

.theme-hero>.theme-container {
    align-items: flex-end;
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    padding-left: 0;
    padding-right: 0
}

@media screen and (min-width:991px) {
    .theme-hero>.theme-container {
        flex-flow: row nowrap
    }

    .theme-hero>.theme-container>* {
        flex: 0 1 50%
    }
}

.theme-hero>.theme-container>.image-stack-container {
    height: 100%;
    order: -1;
    position: relative;
    width: 100%
}

@media screen and (min-width:991px) {
    .theme-hero>.theme-container>.image-stack-container {
        order: 0
    }
}

.theme-hero>.theme-container>.image-stack-container>figure.theme-hero-image-wrapper {
    height: 375px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (min-width:991px) {
    .theme-hero>.theme-container>.image-stack-container>figure.theme-hero-image-wrapper {
        height: 540px;
        width: 540px
    }
}

.theme-hero>.theme-container>.image-stack-container>figure.theme-hero-image-wrapper:first-of-type {
    z-index: 2
}

.theme-hero>.theme-container>.image-stack-container>figure.theme-hero-image-wrapper:last-of-type {
    z-index: 1
}

@media screen and (min-width:991px) {
    .theme-hero>.theme-container>.image-stack-container>figure.theme-hero-image-wrapper:last-of-type {
        left: 50px;
        top: 50px
    }
}

.theme-hero>.theme-container>.theme-hero-content-wrapper {
    padding: 0 20px
}

@media screen and (min-width:991px) {
    .theme-hero>.theme-container>.theme-hero-content-wrapper {
        padding: 0
    }
}

.theme-hero.has-center-alignment .theme-container {
    justify-content: center
}

.theme-hero h1,
.theme-hero h2,
.theme-hero h3,
.theme-hero h4,
.theme-hero h5,
.theme-hero h6 {
    color: inherit
}

.theme-hero>.glider-absolute-wrapper {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

.theme-hero>.glider-absolute-wrapper .glide__slide {
    height: 90vh;
    position: relative
}

.theme-hero>.glider-absolute-wrapper .glide__slide>img {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.theme-quote {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto
}

.theme-quote .theme-icon {
    font-size: 5rem
}

.theme-quote blockquote {
    margin: 2rem 0
}

.theme-quote blockquote p {
    font-size: 1.75rem;
    line-height: 125%;
    text-align: center
}

.theme-quote blockquote p em {
    font-size: 2rem
}

@media screen and (min-width:991px) {
    .theme-quote blockquote p {
        font-size: 3rem
    }

    .theme-quote blockquote p em {
        font-size: 3.5rem
    }
}

.theme-quote .author-photo {
    border-radius: 50%;
    height: 5rem;
    overflow: hidden;
    width: 5rem
}

.theme-quote .author-photo img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.theme-quote .author-name {
    font-size: 1rem;
    letter-spacing: .05em;
    text-align: center
}

.theme-quotes.swiper {
    padding: 0
}

@media screen and (min-width:991px) {
    .theme-quotes.swiper {
        padding: 5rem
    }
}

.theme-quotes.swiper .swiper-wrapper {
    align-items: center;
    max-width: 100vw
}

.theme-quotes.swiper .swiper-wrapper .swiper-slide {
    padding: 1rem 3rem
}

.theme-quotes.swiper .swiper-wrapper .swiper-slide .wp-block-quote {
    max-width: 60rem
}

.theme-quotes.swiper .swiper-button-prev {
    left: 0
}

@media screen and (min-width:991px) {
    .theme-quotes.swiper .swiper-button-prev {
        left: 5rem
    }
}

.theme-quotes.swiper .swiper-button-next {
    right: 0
}

@media screen and (min-width:991px) {
    .theme-quotes.swiper .swiper-button-next {
        right: 5rem
    }
}

.theme-quotes.swiper .swiper-button-next:after,
.theme-quotes.swiper .swiper-button-prev:after {
    color: #6d6e6e;
    font-size: 2.5rem
}

.theme-section.quote-profile {
    padding: 2rem 1rem
}

@media screen and (min-width:991px) {
    .theme-section.quote-profile {
        padding: 5rem
    }
}

.theme-section.quote-profile .wp-block-group {
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem
}

.theme-post-listing {
    margin: 1rem 0;
    width: 100%
}

@media screen and (min-width:991px) {
    .theme-post-listing {
        margin: 2.5rem 0
    }
}

.theme-post-listing .support-element {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem
}

@media screen and (min-width:991px) {
    .theme-post-listing .support-element {
        flex-direction: row
    }
}

.theme-post-listing .support-element .listing-image {
    margin-bottom: 1rem
}

@media screen and (min-width:991px) {
    .theme-post-listing .support-element .listing-image {
        align-items: center;
        display: flex;
        justify-content: center
    }
}

.theme-post-listing .support-element .listing-image img {
    height: auto;
    max-height: 10rem;
    width: 10rem
}

@media screen and (min-width:991px) {
    .theme-post-listing .support-element .listing-image img {
        padding: 1.25rem 2.5rem;
        width: 15rem
    }
}

.theme-post-listing .support-element a {
    color: #7ab5b0
}

.theme-post-listing .faq-element {
    border-radius: .5rem;
    box-shadow: 0 2px 8px rgba(64, 64, 64, .16);
    box-shadow: 0 2px 8px var(--theme-color-shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 1rem;
    width: 100%
}

.theme-post-listing .faq-element:last-child {
    margin-bottom: 0
}

.theme-post-listing .faq-element .question {
    font-size: 1rem;
    line-height: 125%;
    list-style: none;
    outline: none;
    padding: 2.5rem 1.25rem 2.5rem 3rem;
    position: relative
}

.theme-post-listing .faq-element .question::-webkit-details-marker,
.theme-post-listing .faq-element .question::marker {
    display: none
}

.theme-post-listing .faq-element .question:before {
    background-image: url(../1afbd49209060f89fb3c.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    cursor: pointer;
    display: inline-block;
    height: 1rem;
    margin-left: -1.5rem;
    position: absolute;
    width: 1rem
}

.theme-post-listing .faq-element .answer {
    padding: 0 1.25rem 2.5rem 3rem
}

.theme-post-listing .faq-element[open] .question {
    padding-bottom: 1rem
}

.theme-post-listing .faq-element[open] .question:before {
    background-image: url(../8eb44d68aace81cfc55f.svg);
    content: ""
}

.archive-oplm-faq-block .theme-post-section {
    margin-bottom: 2rem
}

.archive-oplm-faq-block .theme-post-section:last-child {
    margin-bottom: 0
}

.archive-oplm-faq-block .theme-post-section .theme-post-title {
    margin-bottom: 1rem
}

.theme-custom-hero {
    background-position: 50%;
    background-size: cover
}

.theme-custom-hero .inner-custom-hero {
    flex-direction: column;
    padding: 2.5rem 1rem
}

@media screen and (min-width:1280px) {
    .theme-custom-hero .inner-custom-hero {
        margin-left: calc(50% - 640px);
        max-width: 60rem;
        padding-left: 0;
        padding-right: 0
    }
}

@media (min-width:1279px) and (max-width:1291px) {
    .theme-custom-hero .inner-custom-hero {
        padding-left: 1rem
    }
}

.theme-custom-hero.is-style-align-center .inner-custom-hero {
    align-items: center;
    margin: 0 auto;
    text-align: center
}

.theme-cta .inner-cta {
    align-items: center;
    flex-direction: column;
    padding-bottom: 60px;
    padding-top: 60px;
    text-align: center
}

@media screen and (min-width:960px) {
    .theme-cta .inner-cta {
        padding-bottom: 120px;
        padding-top: 120px
    }
}

.theme-cta .inner-cta .content-cta {
    max-width: 960px
}

.theme-cta .inner-cta .content-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 36px
}

.theme-cta .inner-cta .content-cta h4 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25rem
}

@media screen and (min-width:766px) {
    .theme-cta .inner-cta .content-cta h2 {
        font-size: 48px;
        font-weight: 400;
        line-height: 60px
    }

    .theme-cta .inner-cta .content-cta h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 30px
    }
}

.loop {
    margin: 0 auto;
    padding: 2.5rem 1rem
}

@media screen and (min-width:1280px) {
    .loop {
        max-width: 1280px;
        padding: 5rem 0
    }
}

.loop .is-searchbox {
    overflow-x: auto
}

.nav-overflow {
    display: flex;
    font-size: 1.25rem;
    margin: 0 -1rem 2.5rem;
    overflow-x: scroll;
    padding-left: 1.25rem
}

@media screen and (min-width:991px) {
    .nav-overflow {
        font-size: 2rem
    }
}

.nav-overflow li a {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    display: block;
    padding: .5rem;
    text-transform: uppercase
}

.nav-overflow li a.empty {
    color: #c2c2c2;
    color: var(--theme-color-lines);
    cursor: default
}

.nav-overflow li a.empty:hover {
    opacity: 1
}

.nav-overflow li a.active {
    background-color: #eff8e9;
    background-color: var(--theme-lime-color);
    border-radius: .25rem
}

.nav-overflow li a.default {
    text-transform: none
}

.nav-overflow li:first-child {
    margin-left: -.5rem
}

.nav-overflow li:last-child {
    padding-right: 1rem
}

.nav-overflow.tabbed li a {
    color: #c2c2c2;
    color: var(--theme-color-lines);
    padding: 0;
    text-transform: none
}

.nav-overflow.tabbed li:first-child {
    border-left: 0;
    margin: 0
}

.nav-overflow.tabbed li:nth-child(2n) {
    border-left: 1px solid #c2c2c2;
    border-left: 1px solid var(--theme-color-lines);
    border-right: 1px solid #c2c2c2;
    border-right: 1px solid var(--theme-color-lines);
    margin: 0 .75rem;
    padding: 0 .75rem
}

.nav-overflow.tabbed li:last-child {
    border-right: 0;
    margin: 0
}

.nav-overflow.tabbed li:hover {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.loop-oplm-glossary .theme-post-section {
    margin-bottom: 1rem
}

.loop-oplm-glossary .theme-post-section:last-child {
    margin-bottom: 0
}

@media screen and (min-width:991px) {
    .loop-oplm-glossary .theme-post-section {
        display: flex
    }
}

.loop-oplm-glossary .theme-post-title {
    color: #7ab5b0;
    color: var(--theme-primary-color);
    font-size: 3.5rem
}

@media screen and (min-width:991px) {
    .loop-oplm-glossary .theme-post-title {
        flex-grow: 1;
        font-size: 6rem;
        margin-right: 2.5rem;
        text-align: center;
        width: 7.5rem
    }
}

.loop-oplm-glossary .theme-post-listing p {
    margin: 0
}

.loop-oplm-glossary .theme-post-listing p+p {
    margin-top: 1rem
}

.loop-oplm-glossary .theme-post-listing article {
    margin-bottom: 1rem
}

.loop-oplm-glossary .theme-post-listing article:last-child {
    margin-bottom: 0
}

.loop-oplm-glossary .theme-container.navigation-letters {
    background-color: #fff;
    position: sticky;
    top: 74px
}

.theme-bubbles {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    padding: 0 2rem
}

@media screen and (min-width:991px) {
    .theme-bubbles {
        flex-direction: row;
        margin: 2rem 0;
        padding: 0 4rem
    }
}

.theme-bubbles .theme-bubble {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    flex: 1;
    justify-content: center;
    margin: -1.5rem 0 0;
    min-width: 1em;
    mix-blend-mode: multiply;
    padding: 3rem;
    vertical-align: middle
}

@media screen and (min-width:991px) {
    .theme-bubbles .theme-bubble {
        margin: 0 0 0 -1.5rem
    }
}

.theme-bubbles .theme-bubble:first-child {
    margin: 0
}

.theme-bubbles .theme-bubble:before {
    content: "";
    float: left;
    padding-bottom: 100%;
    width: auto
}

.theme-bubbles .theme-bubble .bubble-wrapper {
    text-align: center
}

.theme-bubbles .theme-bubble .bubble-wrapper .theme-icon {
    font-size: 5rem
}

.theme-bubbles .theme-bubble .bubble-wrapper .bubble-content {
    margin-top: 1rem;
    max-width: 10rem
}

.theme-bubbles .theme-bubble .bubble-wrapper .bubble-content>* {
    margin: 0
}

.theme-bubbles .theme-bubble .bubble-wrapper .bubble-content p {
    font-size: 1rem
}

.theme-tabs .tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem
}

.theme-tabs .tabs-nav>li {
    align-items: center;
    display: flex
}

.theme-tabs .tabs-nav>li:not(:last-child):after {
    background-color: #c2c2c2;
    background-color: var(--theme-grey-color);
    content: "";
    height: 66%;
    width: 1px
}

.theme-tabs .tabs-nav>li>a {
    color: #c2c2c2;
    color: var(--theme-grey-color);
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1.75rem;
    padding: 0 .75rem
}

@media screen and (min-width:991px) {
    .theme-tabs .tabs-nav>li>a {
        font-size: 3rem;
        line-height: 3rem;
        padding: 0 1.5rem
    }
}

.theme-tabs .tabs-nav>li>a.active {
    color: #7ab5b0;
    color: var(--theme-primary-color)
}

.theme-tabs .theme-tab {
    display: none
}

.theme-tabs .theme-tab.active {
    display: block
}

.step-cards {
    padding: 40px 20px
}

@media screen and (min-width:840px) {
    .step-cards {
        padding: 80px 20px
    }
}

@media screen and (min-width:1024px) {
    .step-cards {
        padding: 180px 20px
    }
}

.step-cards__container {
    margin: 0 auto;
    max-width: 1080px
}

.step-cards__container .card-step {
    grid-column-gap: 30px;
    background-color: rgba(252, 185, 29, .3);
    border-radius: 20px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: grid;
    grid-template-columns: 1fr 450px;
    margin-bottom: 90px;
    padding: 30px 20px
}

@media screen and (min-width:1080px) {
    .step-cards__container .card-step {
        margin-bottom: 180px
    }
}

.step-cards__container .card-step:last-child {
    margin-bottom: 0
}

.step-cards__container .card-step:nth-child(2n) {
    grid-template-columns: 450px 1fr
}

.step-cards__container .card-step:nth-child(2n) .details {
    grid-column: 2
}

.step-cards__container .card-step:nth-child(2n) .featured-image {
    grid-column: 1;
    grid-row: 1
}

.step-cards__container .card-step:nth-child(2n) .featured-image img {
    right: 0
}

.step-cards__container .card-step .details {
    display: flex;
    max-width: 651px;
    padding-right: 2rem;
    width: 100%
}

.step-cards__container .card-step .details .number-step {
    align-items: center;
    background-color: #fcb81f;
    border-radius: 60px;
    color: #fff;
    display: flex;
    font-family: Times New Roman;
    font-size: 2rem;
    height: 60px;
    justify-content: center;
    margin-right: 20px;
    max-width: 60px;
    min-width: 60px;
    width: 60px
}

.step-cards__container .card-step .details h3 {
    font-weight: 400
}

.step-cards__container .card-step .details p,
.step-cards__container .card-step .details ul li {
    font-size: 1rem
}

.step-cards__container .card-step .details ul li:not(:last-of-type) {
    margin-bottom: 1rem
}

.step-cards__container .card-step .featured-image {
    position: relative
}

.step-cards__container .card-step .featured-image img {
    bottom: 0;
    height: auto;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (min-width:1080px) {
    .step-cards__container .card-step .featured-image img {
        width: 110%
    }
}

@media screen and (min-width:1280px) {
    .step-cards__container .card-step .featured-image img {
        width: 130%
    }
}

@media screen and (max-width:840px) {
    .step-cards__container .card-step {
        display: block;
        margin-bottom: 24px
    }

    .step-cards__container .card-step .details {
        margin-bottom: 1rem;
        padding-right: 0
    }

    .step-cards__container .card-step .details .number-step {
        height: 40px;
        max-width: 40px;
        min-width: 40px;
        width: 40px
    }

    .step-cards__container .card-step .details ul {
        padding-left: 1rem
    }

    .step-cards__container .card-step .featured-image img {
        display: block;
        margin: 0 auto;
        max-width: 480px;
        position: static
    }
}

.block-accordion {
    padding: 60px 0 40px
}

.block-accordion .inner-accordion {
    margin: 0 auto;
    max-width: 860px
}

.block-accordion .item-accordion {
    display: flex;
    margin-bottom: 24px
}

.block-accordion .item-icon {
    align-items: center;
    border-radius: 100px;
    display: flex;
    font-size: 2rem;
    height: 80px;
    justify-content: center;
    margin-right: 20px;
    min-width: 80px;
    position: relative;
    width: 80px
}

.block-accordion .item-icon span {
    color: #fff;
    height: 2rem
}

.block-accordion details {
    margin-top: 20px;
    width: 100%
}

.block-accordion details summary {
    color: #454545;
    font-size: 1.5rem;
    font-weight: 500;
    list-style: none;
    outline: none;
    padding-right: 1.5rem;
    position: relative
}

.block-accordion details summary::-webkit-details-marker,
.block-accordion details summary::marker {
    display: none
}

.block-accordion details summary:before {
    background-image: url(../1afbd49209060f89fb3c.svg);
    background-position: 50%;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 1rem;
    position: absolute;
    right: 0;
    top: .45rem;
    width: 1rem
}

.block-accordion details .answer {
    max-width: 700px;
    padding-top: 10px
}

.block-accordion details .answer,
.block-accordion details .answer li,
.block-accordion details .answer p {
    font-size: 1rem
}

.block-accordion details[open] summary:before {
    background-image: url(../8eb44d68aace81cfc55f.svg);
    content: ""
}

@media screen and (max-width:560px) {
    .block-accordion .item-icon {
        font-size: 25px;
        height: 45px;
        min-width: 45px;
        width: 45px
    }

    .block-accordion .item-icon span {
        height: 25px
    }

    .block-accordion details {
        margin-top: 10px
    }

    .block-accordion details summary {
        font-size: 1.25rem
    }
}

#meeting-the-speaker {
    color: var(--tec-color-text-primary);
    font-family: Libre Franklin, sans-serif;
    font-weight: 400
}

#meeting-the-speaker .upcoming-meeting .meeting-date {
    margin-bottom: .5rem
}

#meeting-the-speaker .upcoming-meeting .meeting-date .date {
    font-size: 12px;
    font-weight: 300
}

@media screen and (min-width:768px) {
    #meeting-the-speaker .upcoming-meeting .meeting-date {
        margin-bottom: .8rem
    }

    #meeting-the-speaker .upcoming-meeting .meeting-date .date {
        font-size: 14px
    }
}

#meeting-the-speaker .upcoming-meeting .meeting-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

#meeting-the-speaker .upcoming-meeting .meeting-content .content {
    margin-bottom: .5rem;
    min-width: 320px;
    padding-right: 1.1rem
}

#meeting-the-speaker .upcoming-meeting .meeting-content .content h3 {
    color: #f07e24;
    color: var(--theme-highlight-color);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 0;
    padding-top: 5px
}

#meeting-the-speaker .upcoming-meeting .meeting-content .speaker .speaker-profile {
    border-radius: 125px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 80px
}

@media screen and (min-width:768px) {
    #meeting-the-speaker .upcoming-meeting .meeting-content .content h3 {
        font-size: 2rem;
        font-weight: 400;
        line-height: 2.5rem
    }

    #meeting-the-speaker .upcoming-meeting .meeting-content .speaker .speaker-profile {
        height: 125px;
        width: 125px
    }
}

@media screen and (min-width:1024px) {
    #meeting-the-speaker .upcoming-meeting .meeting-content {
        flex-wrap: nowrap
    }
}

.theme-landing-forms .theme-form .theme-section:first-of-type {
    padding-bottom: 0
}

.theme-landing-forms .theme-form .pms-field.pms-field-subscriptions {
    flex-flow: column;
    flex-direction: column
}

.theme-landing-forms .theme-form .pms-account-subscription-details-table {
    margin-top: 1.25rem
}

.theme-landing-forms .sticky figure.wp-block-image {
    height: auto;
    margin-bottom: 1rem
}

@media screen and (min-width:1280px) {
    .wp-block-cover__inner-container {
        max-width: 640px
    }

    .is-position-bottom-left .wp-block-cover__inner-container,
    .is-position-center-left .wp-block-cover__inner-container,
    .is-position-top-left .wp-block-cover__inner-container {
        margin-left: calc(50% - 640px) !important
    }

    .is-position-bottom-right .wp-block-cover__inner-container,
    .is-position-center-right .wp-block-cover__inner-container,
    .is-position-top-right .wp-block-cover__inner-container {
        margin-right: calc(50% - 640px) !important
    }
}

@media (min-width:1279px) and (max-width:1291px) {

    .loop,
    .main-account.container,
    .theme-header-navigation-container .header-navigation-wrapper {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .wp-block-cover__inner-container {
        padding-left: 1rem
    }

    .nav-menu-search-container .nav-menu-dropdown-element {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media screen and (min-width:991px) {
    .theme-cards {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.wp-block-group+.wp-block-group {
    margin-top: 1rem
}

.wp-block-image.alignwide {
    margin: 0 auto;
    max-width: 80rem;
    max-width: var(--theme-size-large)
}

.wp-block-image.alignwide>img {
    height: auto;
    width: 100%
}

.wp-block-image.size-full {
    max-width: 80rem;
    max-width: var(--theme-size-large)
}

.avatar {
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem
}

.tiny-text-size {
    font-size: .75rem;
    line-height: 1.25rem
}

.nav_donate_button {
    border-radius: 7rem;
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: white;
    background-color: orange;
}

@media screen and (max-width:800px) {
    .nav_donate_button {
        display: none;
    }
}

.thirty-radius {
    border-radius: 30px !important;
}

.twenty-radius {
    border-radius: 20px !important;
}

.gutena-accordion-block__panel-content {
    background: white !important;
}

.mobile-margin {
    margin-left: 30px;
    margin-right: 30px;
}

@media screen and (max-width:991px) {
    .no-bottom-margin {
        margin-bottom: 0px !important;
    }
}

.has-outline {
    border: 1px solid black !important;
}

.has-grey-outline {
    border: 1px solid #C2C2C2 !important;
}

.negative-top-margin {
    margin-top: -100px !important;
}

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

.has-inline-color {
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
}

.partners-list {
    max-width: 100%;
    list-style-type: none !important;
    margin-left: 0px !important;
}

.fivehundred-image-width {
    width: 500px !important;
}

.thousand-image-width {
    width: 1000px !important;
}

.fifty-padding-left {
    padding-left: 50px !important;
}

.benefits-box-text-padding {
    padding: 10px, 20px, 10px, 20px !important;
}

.has-light-yellow-background {
    background-color: #fff6d9 !important;
}

@media screen and (max-width:991px) {
    .no-gap-mobile {
        gap: 5px !important;
    }

    .reverse-direction-mobile {
        flex-direction: column-reverse !important;
    }

    .fifty-padding-left {
        padding-left: 0px !important;
    }

    .smaller-font-mobile {
        font-size: 12px;
    }

    .hide-mobile {
        display: none !important
    }
}

.twenty-padding {
    padding: 20px !important;
}

.sub-menu {
    list-style-type: none !important;
    margin-left: -30px !important;
}

.nav-overflow {
    list-style-type: none !important;
}

.social-media-list {
    list-style-type: none !important;
}

.footer-menu {
    list-style-type: none !important;
}

.item-mega-menu>h4:after {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    left: 25%;
    border-top: 1px solid #FDE7D5;
}

.menu-item-has-children {
    list-style: none !important;
}

.header-dropdown-secondary {
    display: none !important;
}

/* =================================================================
   Additional CSS (Migrated from WordPress Customizer)
   Custom styles for specific plugins and layout adjustments
   ================================================================= */

/* === Nuclear Debug (Commented Out) === */
/* Uncomment for layout debugging
* {
  outline: 2px solid red !important;
  background-color: rgba(255,0,0,0.05) !important;
}
*/

/* === Sponsored By Block === */
.oplm-sponsored-by {
  padding: 12px 16px;
  border-radius: 12px;
}

.oplm-sponsored-by .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sponsored-by-block {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  margin: 15px;
  gap: 8px;
}

.sponsored-by-item {
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  white-space: nowrap;
  box-sizing: border-box;
}

/* === Header Navigation - Mega Menu Centering === */
#header-menu > li.has-children {
  position: relative;
}

#header-menu > li.has-children .sub-menu-container,
#header-menu > li.has-children > .sub-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: unset !important;
  margin-left: 0 !important;
  width: max-content !important;
  text-align: center;
  top: calc(100% + 20px) !important;
}

#header-menu > li.has-children .sub-menu {
  padding-top: 14px !important;
}

#header-menu .sub-menu-container ul,
.tribe-events-calendar-list__event-featured-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 18px;
}

.theme-header-navigation-container .header-menu-container .header-menu-list>li:not(:last-of-type) {
  margin-right: 32px;
}

/* === Navigation Font Sizing === */
nav ul li a {
  font-size: 13px !important;
  font-weight: 600;
  margin-left: 0px;
}

/* === Tribe Events (Calendar Plugin) === */
.tribe-events-calendar-list__event-featured-image {
  height: 52px !important;
  width: auto !important;
  flex-shrink: 0;
}

.tribe-block.tribe-block--virtual-event {
  /* display: none; */
}

.tribe-events-nav-previous,
.tribe-events-nav-next {
  list-style-type: none !important;
}

span.read-more,
span.read-less,
span.read-toggle {
  color: white !important;
  font-weight: 600;
}

/* === MemberPress Styling === */
.protected-join-button {
  border: 1px solid #999;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: not-allowed;
  font-weight: 600;
  color: #444;
}

.mepr-nav-item {
  list-style: none;
  padding-left: 0 !important;
  margin: 0 !important;
}

a.have-coupon-link {
  display: none;
}

.mp-form-row.mepr_coupon {
  display: block !important;
}

/* === PMS (Paid Member Subscriptions) === */
input[value="718"] + label .pms-subscription-plan-price {
  display: none !important;
}

input[value="718"] + label {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Elementor / Third-party Plugin Overrides === */
div.e19lxcc00 {
  display: none !important;
}

/* === Mobile Hero Background (Frontend Only) === */
.frontpage-hero-mobile {
  background-image: url(/wp-content/uploads/2024/11/oplm-home-cover-mobile.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.frontpage-hero-mobile .wp-block-cover__video-background {
  display: none;
}

@media screen and (min-width: 991px) {
  .hamburger-box {
    display: none !important;
  }

  .frontpage-hero-mobile {
    background-image: none;
  }

  .frontpage-hero-mobile .wp-block-cover__video-background {
    display: initial;
  }
}

/* === General List Styling === */
ul {
  margin-left: 2.5em !important;
}

/* === Custom Block Styling === */
.mi-bloque-personalizado {
  padding: 15px;
}