/* =Infinity Styles
-------------------------------------------------------------- */

.infinite-loader {
    color: #000;
    display: block;
    height: 28px;
    text-align: center;
}

#infinite-handle span {
    background: #333;
    border-radius: 1px;
    color: #f0f0f1;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 16px;
}

/**
 * CSS Spinner Styles
 */
@keyframes spinner-inner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.infinite-loader .spinner-inner div {
    left: 47px;
    top: 24px;
    position: absolute;
    animation: spinner-inner linear 1s infinite;
    background: #000000;
    outline: 1px solid white;
    width: 6px;
    height: 12px;
    border-radius: 3px / 6px;
    transform-origin: 3px 26px;
}

.infinite-loader .spinner-inner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -0.9166666666666666s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -0.8333333333333334s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.75s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.6666666666666666s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.5833333333333334s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.5s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.4166666666666667s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.3333333333333333s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.25s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.16666666666666666s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.08333333333333333s;
    background: #000000;
}

.infinite-loader .spinner-inner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
    background: #000000;
}

.infinite-loader .spinner {
    width: 28px;
    height: 28px;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.infinite-loader .spinner-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(0.28);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.infinite-loader .spinner-inner div {
    box-sizing: content-box;
}

/**
 * Using a highly-specific rule to make sure that all button styles
 * will be reset
 */
#infinite-handle span button,
#infinite-handle span button:hover,
#infinite-handle span button:focus {
    display: inline;
    position: static;
    padding: 0;
    margin: 0;
    border: none;
    line-height: inherit;
    background: transparent;
    color: inherit;
    cursor: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

/**
 * This is used to avoid unnecessary inner button spacing in Firefox
 */
#infinite-handle span button::-moz-focus-inner {
    margin: 0;
    padding: 0;
    border: none;
}

/**
 * For smaller viewports, remove the down-arrow icon and turn
 * the button into a block element, spanning the content's full width.
 */
@media (max-width: 800px) {
    #infinite-handle span:before {
        display: none;
    }

    #infinite-handle span {
        display: block;
    }
}

/**
 * Footer
 */
#infinite-footer {
    position: fixed;
    bottom: -50px;
    left: 0;
    width: 100%;
}

#infinite-footer a {
    text-decoration: none;
}

#infinite-footer .blog-info a:hover,
#infinite-footer .blog-credits a:hover {
    color: #444;
    text-decoration: underline;
}

#infinite-footer .container {
    background: rgba(255, 255, 255, 0.8);
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.1);
    border-style: solid;
    border-width: 1px 0 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
    padding: 1px 20px;
    width: 780px;
}

#infinite-footer .blog-info,
#infinite-footer .blog-credits {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 25px;
}

#infinite-footer .blog-info {
    float: left;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 40%;
}

#infinite-footer .blog-credits {
    font-weight: normal;
    float: right;
    width: 60%;
}

#infinite-footer .blog-info a {
    color: #111;
    font-size: 14px;
    font-weight: bold;
}

#infinite-footer .blog-credits {
    color: #888;
    font-size: 12px;
    text-align: right;
}

#infinite-footer .blog-credits a {
    color: #646970;
}

/**
 * Hooks to infinity-end body class to restore footer
 */
.infinity-end.neverending #infinite-footer {
    display: none;
}

/**
 * Responsive structure for the footer
 */
@media (max-width: 640px) {
    #infinite-footer .container {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }

    #infinite-footer .blog-info {
        width: 30%;
    }

    #infinite-footer .blog-credits {
        width: 70%;
    }

    #infinite-footer .blog-info a,
    #infinite-footer .blog-credits {
        font-size: 10px;
    }
}

/**
 * No fixed footer on small viewports
 */
@media (max-width: 640px) {
    #infinite-footer {
        position: static;
    }
}

/**
 * Hide infinite aria feedback visually
 */
#infinite-aria {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

/**
 * Hide focus on infinite wrappers
 */
.infinite-wrap:focus {
    outline: 0 !important;
}

@charset "UTF-8";

.wp-block-archives {
    box-sizing: border-box
}

.wp-block-archives-dropdown label {
    display: block
}

.wp-block-avatar {
    line-height: 0
}

.wp-block-avatar,
.wp-block-avatar img {
    box-sizing: border-box
}

.wp-block-avatar.aligncenter {
    text-align: center
}

.wp-block-audio {
    box-sizing: border-box
}

.wp-block-audio figcaption {
    margin-bottom: 1em;
    margin-top: .5em
}

.wp-block-audio audio {
    min-width: 300px;
    width: 100%
}

.wp-block-button__link {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    word-break: break-word
}

.wp-block-button__link.aligncenter {
    text-align: center
}

.wp-block-button__link.alignright {
    text-align: right
}

:where(.wp-block-button__link) {
    border-radius: 9999px;
    box-shadow: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    text-decoration: none
}

.wp-block-button[style*=text-decoration] .wp-block-button__link {
    text-decoration: inherit
}

.wp-block-buttons>.wp-block-button.has-custom-width {
    max-width: none
}

.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link {
    width: 100%
}

.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link {
    font-size: inherit
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-25 {
    width: calc(25% - var(--wp--style--block-gap, .5em)*.75)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
    width: calc(50% - var(--wp--style--block-gap, .5em)*.5)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
    width: calc(75% - var(--wp--style--block-gap, .5em)*.25)
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-100 {
    flex-basis: 100%;
    width: 100%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25 {
    width: 25%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50 {
    width: 50%
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75 {
    width: 75%
}

.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
    border-radius: 0
}

.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
    border-radius: 0 !important
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline),
:root :where(.wp-block-button.is-style-outline>.wp-block-button__link) {
    border: 2px solid;
    padding: .667em 1.333em
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),
:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)) {
    color: currentColor
}

:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),
:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)) {
    background-color: initial;
    background-image: none
}

.wp-block-buttons.is-vertical {
    flex-direction: column
}

.wp-block-buttons.is-vertical>.wp-block-button:last-child {
    margin-bottom: 0
}

.wp-block-buttons>.wp-block-button {
    display: inline-block;
    margin: 0
}

.wp-block-buttons.is-content-justification-left {
    justify-content: flex-start
}

.wp-block-buttons.is-content-justification-left.is-vertical {
    align-items: flex-start
}

.wp-block-buttons.is-content-justification-center {
    justify-content: center
}

.wp-block-buttons.is-content-justification-center.is-vertical {
    align-items: center
}

.wp-block-buttons.is-content-justification-right {
    justify-content: flex-end
}

.wp-block-buttons.is-content-justification-right.is-vertical {
    align-items: flex-end
}

.wp-block-buttons.is-content-justification-space-between {
    justify-content: space-between
}

.wp-block-buttons.aligncenter {
    text-align: center
}

.wp-block-buttons:not(.is-content-justification-space-between, .is-content-justification-right, .is-content-justification-left, .is-content-justification-center) .wp-block-button.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.wp-block-buttons[style*=text-decoration] .wp-block-button,
.wp-block-buttons[style*=text-decoration] .wp-block-button__link {
    text-decoration: inherit
}

.wp-block-buttons.has-custom-font-size .wp-block-button__link {
    font-size: inherit
}

.wp-block-button.aligncenter,
.wp-block-calendar {
    text-align: center
}

.wp-block-calendar td,
.wp-block-calendar th {
    border: 1px solid;
    padding: .25em
}

.wp-block-calendar th {
    font-weight: 400
}

.wp-block-calendar caption {
    background-color: inherit
}

.wp-block-calendar table {
    border-collapse: collapse;
    width: 100%
}

.wp-block-calendar table:where(:not(.has-text-color)) {
    color: #40464d
}

.wp-block-calendar table:where(:not(.has-text-color)) td,
.wp-block-calendar table:where(:not(.has-text-color)) th {
    border-color: #ddd
}

.wp-block-calendar table.has-background th {
    background-color: inherit
}

.wp-block-calendar table.has-text-color th {
    color: inherit
}

:where(.wp-block-calendar table:not(.has-background) th) {
    background: #ddd
}

.wp-block-categories {
    box-sizing: border-box
}

.wp-block-categories.alignleft {
    margin-right: 2em
}

.wp-block-categories.alignright {
    margin-left: 2em
}

.wp-block-categories.wp-block-categories-dropdown.aligncenter {
    text-align: center
}

.wp-block-code {
    box-sizing: border-box
}

.wp-block-code code {
    display: block;
    font-family: inherit;
    overflow-wrap: break-word;
    white-space: pre-wrap
}

.wp-block-columns {
    align-items: normal !important;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap !important
}

@media (min-width:782px) {
    .wp-block-columns {
        flex-wrap: nowrap !important
    }
}

.wp-block-columns.are-vertically-aligned-top {
    align-items: flex-start
}

.wp-block-columns.are-vertically-aligned-center {
    align-items: center
}

.wp-block-columns.are-vertically-aligned-bottom {
    align-items: flex-end
}

@media (max-width:781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100% !important
    }
}

@media (min-width:782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 0;
        flex-grow: 1
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
        flex-grow: 0
    }
}

.wp-block-columns.is-not-stacked-on-mobile {
    flex-wrap: nowrap !important
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
    flex-basis: 0;
    flex-grow: 1
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis] {
    flex-grow: 0
}

:where(.wp-block-columns) {
    margin-bottom: 1.75em
}

:where(.wp-block-columns.has-background) {
    padding: 1.25em 2.375em
}

.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word
}

.wp-block-column.is-vertically-aligned-top {
    align-self: flex-start
}

.wp-block-column.is-vertically-aligned-center {
    align-self: center
}

.wp-block-column.is-vertically-aligned-bottom {
    align-self: flex-end
}

.wp-block-column.is-vertically-aligned-stretch {
    align-self: stretch
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
    width: 100%
}

.wp-block-post-comments {
    box-sizing: border-box
}

.wp-block-post-comments .alignleft {
    float: left
}

.wp-block-post-comments .alignright {
    float: right
}

.wp-block-post-comments .navigation:after {
    clear: both;
    content: "";
    display: table
}

.wp-block-post-comments .commentlist {
    clear: both;
    list-style: none;
    margin: 0;
    padding: 0
}

.wp-block-post-comments .commentlist .comment {
    min-height: 2.25em;
    padding-left: 3.25em
}

.wp-block-post-comments .commentlist .comment p {
    font-size: 1em;
    line-height: 1.8;
    margin: 1em 0
}

.wp-block-post-comments .commentlist .children {
    list-style: none;
    margin: 0;
    padding: 0
}

.wp-block-post-comments .comment-author {
    line-height: 1.5
}

.wp-block-post-comments .comment-author .avatar {
    border-radius: 1.5em;
    display: block;
    float: left;
    height: 2.5em;
    margin-right: .75em;
    margin-top: .5em;
    width: 2.5em
}

.wp-block-post-comments .comment-author cite {
    font-style: normal
}

.wp-block-post-comments .comment-meta {
    font-size: .875em;
    line-height: 1.5
}

.wp-block-post-comments .comment-meta b {
    font-weight: 400
}

.wp-block-post-comments .comment-meta .comment-awaiting-moderation {
    display: block;
    margin-bottom: 1em;
    margin-top: 1em
}

.wp-block-post-comments .comment-body .commentmetadata {
    font-size: .875em
}

.wp-block-post-comments .comment-form-author label,
.wp-block-post-comments .comment-form-comment label,
.wp-block-post-comments .comment-form-email label,
.wp-block-post-comments .comment-form-url label {
    display: block;
    margin-bottom: .25em
}

.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments .comment-form textarea {
    box-sizing: border-box;
    display: block;
    width: 100%
}

.wp-block-post-comments .comment-form-cookies-consent {
    display: flex;
    gap: .25em
}

.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
    margin-top: .35em
}

.wp-block-post-comments .comment-reply-title {
    margin-bottom: 0
}

.wp-block-post-comments .comment-reply-title :where(small) {
    font-size: var(--wp--preset--font-size--medium, smaller);
    margin-left: .5em
}

.wp-block-post-comments .reply {
    font-size: .875em;
    margin-bottom: 1.4em
}

.wp-block-post-comments input:not([type=submit]),
.wp-block-post-comments textarea {
    border: 1px solid #949494;
    font-family: inherit;
    font-size: 1em
}

.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments textarea {
    padding: calc(.667em + 2px)
}

:where(.wp-block-post-comments input[type=submit]) {
    border: none
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next,
.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,
.wp-block-comments-pagination>.wp-block-comments-pagination-previous {
    margin-bottom: .5em;
    margin-right: .5em
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,
.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,
.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child {
    margin-right: 0
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
    display: inline-block;
    margin-right: 1ch
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
    display: inline-block;
    margin-left: 1ch
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-comments-pagination.aligncenter {
    justify-content: center
}

.wp-block-comment-template {
    box-sizing: border-box;
    list-style: none;
    margin-bottom: 0;
    max-width: 100%;
    padding: 0
}

.wp-block-comment-template li {
    clear: both
}

.wp-block-comment-template ol {
    list-style: none;
    margin-bottom: 0;
    max-width: 100%;
    padding-left: 2rem
}

.wp-block-comment-template.alignleft {
    float: left
}

.wp-block-comment-template.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content
}

.wp-block-comment-template.alignright {
    float: right
}

.wp-block-cover,
.wp-block-cover-image {
    align-items: center;
    background-position: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
    overflow: clip;
    padding: 1em;
    position: relative
}

.wp-block-cover .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
    background-color: #000
}

.wp-block-cover .has-background-dim.has-background-gradient,
.wp-block-cover-image .has-background-dim.has-background-gradient {
    background-color: initial
}

.wp-block-cover-image.has-background-dim:before,
.wp-block-cover.has-background-dim:before {
    background-color: inherit;
    content: ""
}

.wp-block-cover .wp-block-cover__background,
.wp-block-cover .wp-block-cover__gradient-background,
.wp-block-cover-image .wp-block-cover__background,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim:not(.has-background-gradient):before {
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before {
    opacity: .1
}

.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before {
    opacity: .2
}

.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before {
    opacity: .3
}

.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before {
    opacity: .4
}

.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before {
    opacity: .5
}

.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before {
    opacity: .6
}

.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before {
    opacity: .7
}

.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before {
    opacity: .8
}

.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before {
    opacity: .9
}

.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,
.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,
.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,
.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before {
    opacity: 1
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0 {
    opacity: 0
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10 {
    opacity: .1
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20 {
    opacity: .2
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30 {
    opacity: .3
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40 {
    opacity: .4
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50 {
    opacity: .5
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60 {
    opacity: .6
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70 {
    opacity: .7
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80 {
    opacity: .8
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90 {
    opacity: .9
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,
.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,
.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100 {
    opacity: 1
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
    max-width: 420px;
    width: 100%
}

.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
    display: flex
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
    color: inherit;
    width: 100%;
    z-index: 1
}

.wp-block-cover-image.is-position-top-left,
.wp-block-cover.is-position-top-left {
    align-items: flex-start;
    justify-content: flex-start
}

.wp-block-cover-image.is-position-top-center,
.wp-block-cover.is-position-top-center {
    align-items: flex-start;
    justify-content: center
}

.wp-block-cover-image.is-position-top-right,
.wp-block-cover.is-position-top-right {
    align-items: flex-start;
    justify-content: flex-end
}

.wp-block-cover-image.is-position-center-left,
.wp-block-cover.is-position-center-left {
    align-items: center;
    justify-content: flex-start
}

.wp-block-cover-image.is-position-center-center,
.wp-block-cover.is-position-center-center {
    align-items: center;
    justify-content: center
}

.wp-block-cover-image.is-position-center-right,
.wp-block-cover.is-position-center-right {
    align-items: center;
    justify-content: flex-end
}

.wp-block-cover-image.is-position-bottom-left,
.wp-block-cover.is-position-bottom-left {
    align-items: flex-end;
    justify-content: flex-start
}

.wp-block-cover-image.is-position-bottom-center,
.wp-block-cover.is-position-bottom-center {
    align-items: flex-end;
    justify-content: center
}

.wp-block-cover-image.is-position-bottom-right,
.wp-block-cover.is-position-bottom-right {
    align-items: flex-end;
    justify-content: flex-end
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
    margin: 0
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,
.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container {
    margin: 0;
    width: auto
}

.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background,
.wp-block-cover-image .wp-block-cover__image-background,
.wp-block-cover-image video.wp-block-cover__video-background {
    border: none;
    bottom: 0;
    box-shadow: none;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    object-fit: cover;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax,
.wp-block-cover__image-background.has-parallax,
video.wp-block-cover__video-background.has-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover
}

@supports (-webkit-touch-callout:inherit) {

    .wp-block-cover-image.has-parallax,
    .wp-block-cover.has-parallax,
    .wp-block-cover__image-background.has-parallax,
    video.wp-block-cover__video-background.has-parallax {
        background-attachment: scroll
    }
}

@media (prefers-reduced-motion:reduce) {

    .wp-block-cover-image.has-parallax,
    .wp-block-cover.has-parallax,
    .wp-block-cover__image-background.has-parallax,
    video.wp-block-cover__video-background.has-parallax {
        background-attachment: scroll
    }
}

.wp-block-cover-image.is-repeated,
.wp-block-cover.is-repeated,
.wp-block-cover__image-background.is-repeated,
video.wp-block-cover__video-background.is-repeated {
    background-repeat: repeat;
    background-size: auto
}

.wp-block-cover__image-background,
.wp-block-cover__video-background {
    z-index: 0
}

.wp-block-cover-image-text,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:active,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:hover,
.wp-block-cover-text,
.wp-block-cover-text a,
.wp-block-cover-text a:active,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:hover,
section.wp-block-cover-image h2,
section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:active,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:hover {
    color: #fff
}

.wp-block-cover-image .wp-block-cover.has-left-content {
    justify-content: flex-start
}

.wp-block-cover-image .wp-block-cover.has-right-content {
    justify-content: flex-end
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text,
section.wp-block-cover-image.has-left-content>h2 {
    margin-left: 0;
    text-align: left
}

.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text,
section.wp-block-cover-image.has-right-content>h2 {
    margin-right: 0;
    text-align: right
}

.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text,
section.wp-block-cover-image>h2 {
    font-size: 2em;
    line-height: 1.25;
    margin-bottom: 0;
    max-width: 840px;
    padding: .44em;
    text-align: center;
    z-index: 1
}

:where(.wp-block-cover-image:not(.has-text-color)),
:where(.wp-block-cover:not(.has-text-color)) {
    color: #fff
}

:where(.wp-block-cover-image.is-light:not(.has-text-color)),
:where(.wp-block-cover.is-light:not(.has-text-color)) {
    color: #000
}

:root :where(.wp-block-cover h1:not(.has-text-color)),
:root :where(.wp-block-cover h2:not(.has-text-color)),
:root :where(.wp-block-cover h3:not(.has-text-color)),
:root :where(.wp-block-cover h4:not(.has-text-color)),
:root :where(.wp-block-cover h5:not(.has-text-color)),
:root :where(.wp-block-cover h6:not(.has-text-color)),
:root :where(.wp-block-cover p:not(.has-text-color)) {
    color: inherit
}

.wp-block-details {
    box-sizing: border-box
}

.wp-block-details summary {
    cursor: pointer
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align=left]>[data-type="core/embed"],
.wp-block[data-align=right]>[data-type="core/embed"] {
    max-width: 360px;
    width: 100%
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper {
    min-width: 280px
}

.wp-block-cover .wp-block-embed {
    min-height: 240px;
    min-width: 320px
}

.wp-block-embed {
    overflow-wrap: break-word
}

.wp-block-embed figcaption {
    margin-bottom: 1em;
    margin-top: .5em
}

.wp-block-embed iframe {
    max-width: 100%
}

.wp-block-embed__wrapper {
    position: relative
}

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
    content: "";
    display: block;
    padding-top: 50%
}

.wp-embed-responsive .wp-has-aspect-ratio iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
    padding-top: 42.85%
}

.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
    padding-top: 50%
}

.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%
}

.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
    padding-top: 75%
}

.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
    padding-top: 100%
}

.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
    padding-top: 177.77%
}

.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
    padding-top: 200%
}

.wp-block-file {
    box-sizing: border-box
}

.wp-block-file:not(.wp-element-button) {
    font-size: .8em
}

.wp-block-file.aligncenter {
    text-align: center
}

.wp-block-file.alignright {
    text-align: right
}

.wp-block-file *+.wp-block-file__button {
    margin-left: .75em
}

:where(.wp-block-file) {
    margin-bottom: 1.5em
}

.wp-block-file__embed {
    margin-bottom: 1em
}

:where(.wp-block-file__button) {
    border-radius: 2em;
    display: inline-block;
    padding: .5em 1em
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
    box-shadow: none;
    color: #fff;
    opacity: .85;
    text-decoration: none
}

.wp-block-form-input__label {
    display: flex;
    flex-direction: column;
    gap: .25em;
    margin-bottom: .5em;
    width: 100%
}

.wp-block-form-input__label.is-label-inline {
    align-items: center;
    flex-direction: row;
    gap: .5em
}

.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content {
    margin-bottom: .5em
}

.wp-block-form-input__label:has(input[type=checkbox]) {
    flex-direction: row-reverse;
    width: -moz-fit-content;
    width: fit-content
}

.wp-block-form-input__label-content {
    width: -moz-fit-content;
    width: fit-content
}

.wp-block-form-input__input {
    font-size: 1em;
    margin-bottom: .5em;
    padding: 0 .5em
}

.wp-block-form-input__input[type=date],
.wp-block-form-input__input[type=datetime-local],
.wp-block-form-input__input[type=datetime],
.wp-block-form-input__input[type=email],
.wp-block-form-input__input[type=month],
.wp-block-form-input__input[type=number],
.wp-block-form-input__input[type=password],
.wp-block-form-input__input[type=search],
.wp-block-form-input__input[type=tel],
.wp-block-form-input__input[type=text],
.wp-block-form-input__input[type=time],
.wp-block-form-input__input[type=url],
.wp-block-form-input__input[type=week] {
    border: 1px solid;
    line-height: 2;
    min-height: 2em
}

textarea.wp-block-form-input__input {
    min-height: 10em
}

.blocks-gallery-grid:not(.has-nested-images),
.wp-block-gallery:not(.has-nested-images) {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    margin: 0 1em 1em 0;
    position: relative;
    width: calc(50% - 1em)
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
    align-items: flex-end;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    margin: 0
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
    display: block;
    height: auto;
    max-width: 100%;
    width: auto
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: .8em;
    margin: 0;
    max-height: 100%;
    overflow: auto;
    padding: 3em .77em .7em;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img {
    display: inline
}

.blocks-gallery-grid:not(.has-nested-images) figcaption,
.wp-block-gallery:not(.has-nested-images) figcaption {
    flex-grow: 1
}

.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,
.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
    flex: 1;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item {
    margin-right: 0;
    width: 100%
}

@media (min-width:600px) {

    .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(33.33333% - .66667em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(25% - .75em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(20% - .8em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(16.66667% - .83333em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(14.28571% - .85714em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,
    .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,
    .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,
    .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item {
        margin-right: 1em;
        width: calc(12.5% - .875em)
    }

    .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
    .blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
    .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
    .blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
    .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
    .blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
    .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
    .blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
    .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
    .blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
    .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
    .blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
    .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
    .blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
    .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
    .blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),
    .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),
    .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),
    .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),
    .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),
    .wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),
    .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),
    .wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),
    .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),
    .wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),
    .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),
    .wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),
    .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),
    .wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),
    .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),
    .wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n) {
        margin-right: 0
    }
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,
.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,
.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
    margin-right: 0
}

.blocks-gallery-grid:not(.has-nested-images).alignleft,
.blocks-gallery-grid:not(.has-nested-images).alignright,
.wp-block-gallery:not(.has-nested-images).alignleft,
.wp-block-gallery:not(.has-nested-images).alignright {
    max-width: 420px;
    width: 100%
}

.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,
.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure {
    justify-content: center
}

.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
    align-self: flex-start
}

figure.wp-block-gallery.has-nested-images {
    align-items: normal
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    margin: 0;
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    max-width: 100%;
    position: relative
}

.wp-block-gallery.has-nested-images figure.wp-block-image>a,
.wp-block-gallery.has-nested-images figure.wp-block-image>div {
    flex-direction: column;
    flex-grow: 1;
    margin: 0
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
    display: block;
    height: auto;
    max-width: 100% !important;
    width: auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    left: 0;
    margin-bottom: 0;
    max-height: 60%;
    overflow: auto;
    padding: 0 8px 8px;
    position: absolute;
    scrollbar-color: #0000 #0000;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    text-align: center;
    width: 100%;
    will-change: transform
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar {
    height: 12px;
    width: 12px
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track {
    background-color: initial
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    background-color: initial;
    border: 3px solid #0000;
    border-radius: 8px
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb {
    background-color: #fffc
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover {
    scrollbar-color: #fffc #0000
}

@media (hover:none) {
    .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
        scrollbar-color: #fffc #0000
    }
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img {
    display: inline
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a {
    color: inherit
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img {
    box-sizing: border-box
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div {
    flex: 1 1 auto
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,
.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption {
    background: none;
    color: inherit;
    flex: initial;
    margin: 0;
    padding: 10px 10px 9px;
    position: relative
}

.wp-block-gallery.has-nested-images figcaption {
    flex-basis: 100%;
    flex-grow: 1;
    text-align: center
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
    margin-bottom: auto;
    margin-top: 0
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
    align-self: inherit
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone) {
    display: flex
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
    flex: 1 0 0%;
    height: 100%;
    object-fit: cover;
    width: 100%
}

.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
    width: 100%
}

@media (min-width:600px) {
    .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
        width: calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
    }

    .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
        width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)
    }

    .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
        width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)
    }

    .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
        width: calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)
    }

    .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
        width: calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)
    }

    .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
        width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)
    }

    .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
        width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)
    }

    .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
    .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
        width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)
    }

    .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child {
        width: 100%
    }
}

.wp-block-gallery.has-nested-images.alignleft,
.wp-block-gallery.has-nested-images.alignright {
    max-width: 420px;
    width: 100%
}

.wp-block-gallery.has-nested-images.aligncenter {
    justify-content: center
}

.wp-block-group {
    box-sizing: border-box
}

:where(.wp-block-group.wp-block-group-is-layout-constrained) {
    position: relative
}

h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
    padding: 1.25em 2.375em
}

h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),
h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),
h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]) {
    rotate: 180deg
}

.wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom
}

.wp-block-image[style*=border-radius] img,
.wp-block-image[style*=border-radius]>a {
    border-radius: inherit
}

.wp-block-image.has-custom-border img {
    box-sizing: border-box
}

.wp-block-image.aligncenter {
    text-align: center
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
    height: auto;
    width: 100%
}

.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
    display: table
}

.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.aligncenter>figcaption,
.wp-block-image.alignleft>figcaption,
.wp-block-image.alignright>figcaption {
    caption-side: bottom;
    display: table-caption
}

.wp-block-image .alignleft {
    float: left;
    margin: .5em 1em .5em 0
}

.wp-block-image .alignright {
    float: right;
    margin: .5em 0 .5em 1em
}

.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto
}

.wp-block-image figcaption {
    margin-bottom: 1em;
    margin-top: .5em
}

.wp-block-image.is-style-circle-mask img {
    border-radius: 9999px
}

@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none) {
    .wp-block-image.is-style-circle-mask img {
        border-radius: 0;
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
        mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
        mask-mode: alpha;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-size: contain
    }
}

:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
    border-radius: 9999px
}

.wp-block-image figure {
    margin: 0
}

.wp-lightbox-container {
    display: flex;
    flex-direction: column;
    position: relative
}

.wp-lightbox-container img {
    cursor: zoom-in
}

.wp-lightbox-container img:hover+button {
    opacity: 1
}

.wp-lightbox-container button {
    align-items: center;
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    background-color: #5a5a5a40;
    border: none;
    border-radius: 4px;
    cursor: zoom-in;
    display: flex;
    height: 20px;
    justify-content: center;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 16px;
    text-align: center;
    top: 16px;
    transition: opacity .2s ease;
    width: 20px;
    z-index: 100
}

.wp-lightbox-container button:focus-visible {
    outline: 3px auto #5a5a5a40;
    outline: 3px auto -webkit-focus-ring-color;
    outline-offset: 3px
}

.wp-lightbox-container button:hover {
    cursor: pointer;
    opacity: 1
}

.wp-lightbox-container button:focus {
    opacity: 1
}

.wp-lightbox-container button:focus,
.wp-lightbox-container button:hover,
.wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
    background-color: #5a5a5a40;
    border: none
}

.wp-lightbox-overlay {
    box-sizing: border-box;
    cursor: zoom-out;
    height: 100vh;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 100000
}

.wp-lightbox-overlay .close-button {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0;
    position: absolute;
    right: calc(env(safe-area-inset-right) + 16px);
    top: calc(env(safe-area-inset-top) + 16px);
    z-index: 5000000
}

.wp-lightbox-overlay .close-button:focus,
.wp-lightbox-overlay .close-button:hover,
.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background) {
    background: none;
    border: none
}

.wp-lightbox-overlay .lightbox-image-container {
    height: var(--wp--lightbox-container-height);
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: top left;
    width: var(--wp--lightbox-container-width);
    z-index: 9999999999
}

.wp-lightbox-overlay .wp-block-image {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
    position: relative;
    transform-origin: 0 0;
    width: 100%;
    z-index: 3000000
}

.wp-lightbox-overlay .wp-block-image img {
    height: var(--wp--lightbox-image-height);
    min-height: var(--wp--lightbox-image-height);
    min-width: var(--wp--lightbox-image-width);
    width: var(--wp--lightbox-image-width)
}

.wp-lightbox-overlay .wp-block-image figcaption {
    display: none
}

.wp-lightbox-overlay button {
    background: none;
    border: none
}

.wp-lightbox-overlay .scrim {
    background-color: #fff;
    height: 100%;
    opacity: .9;
    position: absolute;
    width: 100%;
    z-index: 2000000
}

.wp-lightbox-overlay.active {
    animation: turn-on-visibility .25s both;
    visibility: visible
}

.wp-lightbox-overlay.active img {
    animation: turn-on-visibility .35s both
}

.wp-lightbox-overlay.show-closing-animation:not(.active) {
    animation: turn-off-visibility .35s both
}

.wp-lightbox-overlay.show-closing-animation:not(.active) img {
    animation: turn-off-visibility .25s both
}

@media (prefers-reduced-motion:no-preference) {
    .wp-lightbox-overlay.zoom.active {
        animation: none;
        opacity: 1;
        visibility: visible
    }

    .wp-lightbox-overlay.zoom.active .lightbox-image-container {
        animation: lightbox-zoom-in .4s
    }

    .wp-lightbox-overlay.zoom.active .lightbox-image-container img {
        animation: none
    }

    .wp-lightbox-overlay.zoom.active .scrim {
        animation: turn-on-visibility .4s forwards
    }

    .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) {
        animation: none
    }

    .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container {
        animation: lightbox-zoom-out .4s
    }

    .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img {
        animation: none
    }

    .wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim {
        animation: turn-off-visibility .4s forwards
    }
}

@keyframes turn-on-visibility {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes turn-off-visibility {
    0% {
        opacity: 1;
        visibility: visible
    }

    99% {
        opacity: 0;
        visibility: visible
    }

    to {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes lightbox-zoom-in {
    0% {
        transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))
    }

    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes lightbox-zoom-out {
    0% {
        transform: translate(-50%, -50%) scale(1);
        visibility: visible
    }

    99% {
        visibility: visible
    }

    to {
        transform: translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)), calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
        visibility: hidden
    }
}

ol.wp-block-latest-comments {
    box-sizing: border-box;
    margin-left: 0
}

:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)) {
    line-height: 1.1
}

:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)) {
    line-height: 1.8
}

.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),
.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])) {
    line-height: 1.5
}

.wp-block-latest-comments .wp-block-latest-comments {
    padding-left: 0
}

.wp-block-latest-comments__comment {
    list-style: none;
    margin-bottom: 1em
}

.has-avatars .wp-block-latest-comments__comment {
    list-style: none;
    min-height: 2.25em
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 3.25em
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: .875em;
    margin: .36em 0 1.4em
}

.wp-block-latest-comments__comment-date {
    display: block;
    font-size: .75em
}

.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
    border-radius: 1.5em;
    display: block;
    float: left;
    height: 2.5em;
    margin-right: .75em;
    width: 2.5em
}

.wp-block-latest-comments[class*=-font-size] a,
.wp-block-latest-comments[style*=font-size] a {
    font-size: inherit
}

.wp-block-latest-posts {
    box-sizing: border-box
}

.wp-block-latest-posts.alignleft {
    margin-right: 2em
}

.wp-block-latest-posts.alignright {
    margin-left: 2em
}

.wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: none
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    clear: both;
    overflow-wrap: break-word
}

.wp-block-latest-posts.is-grid {
    display: flex;
    flex-wrap: wrap
}

.wp-block-latest-posts.is-grid li {
    margin: 0 1.25em 1.25em 0;
    width: 100%
}

@media (min-width:600px) {
    .wp-block-latest-posts.columns-2 li {
        width: calc(50% - .625em)
    }

    .wp-block-latest-posts.columns-2 li:nth-child(2n) {
        margin-right: 0
    }

    .wp-block-latest-posts.columns-3 li {
        width: calc(33.33333% - .83333em)
    }

    .wp-block-latest-posts.columns-3 li:nth-child(3n) {
        margin-right: 0
    }

    .wp-block-latest-posts.columns-4 li {
        width: calc(25% - .9375em)
    }

    .wp-block-latest-posts.columns-4 li:nth-child(4n) {
        margin-right: 0
    }

    .wp-block-latest-posts.columns-5 li {
        width: calc(20% - 1em)
    }

    .wp-block-latest-posts.columns-5 li:nth-child(5n) {
        margin-right: 0
    }

    .wp-block-latest-posts.columns-6 li {
        width: calc(16.66667% - 1.04167em)
    }

    .wp-block-latest-posts.columns-6 li:nth-child(6n) {
        margin-right: 0
    }
}

:root :where(.wp-block-latest-posts.is-grid) {
    padding: 0
}

:root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
    padding-left: 0
}

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
    display: block;
    font-size: .8125em
}

.wp-block-latest-posts__post-excerpt {
    margin-bottom: 1em;
    margin-top: .5em
}

.wp-block-latest-posts__featured-image a {
    display: inline-block
}

.wp-block-latest-posts__featured-image img {
    height: auto;
    max-width: 100%;
    width: auto
}

.wp-block-latest-posts__featured-image.alignleft {
    float: left;
    margin-right: 1em
}

.wp-block-latest-posts__featured-image.alignright {
    float: right;
    margin-left: 1em
}

.wp-block-latest-posts__featured-image.aligncenter {
    margin-bottom: 1em;
    text-align: center
}

ol,
ul {
    box-sizing: border-box
}

:root :where(ul.has-background, ol.has-background) {
    padding: 1.25em 2.375em
}

.wp-block-media-text {
    box-sizing: border-box;
    direction: ltr;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto
}

.wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 50%
}

.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media {
    align-self: start
}

.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,
.wp-block-media-text>.wp-block-media-text__content,
.wp-block-media-text>.wp-block-media-text__media {
    align-self: center
}

.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media {
    align-self: end
}

.wp-block-media-text>.wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
    margin: 0
}

.wp-block-media-text>.wp-block-media-text__content {
    direction: ltr;
    grid-column: 2;
    grid-row: 1;
    padding: 0 8%;
    word-break: break-word
}

.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media {
    grid-column: 2;
    grid-row: 1
}

.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content {
    grid-column: 1;
    grid-row: 1
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
    height: auto;
    max-width: unset;
    vertical-align: middle;
    width: 100%
}

.wp-block-media-text.is-image-fill>.wp-block-media-text__media {
    background-size: cover;
    height: 100%;
    min-height: 250px
}

.wp-block-media-text.is-image-fill>.wp-block-media-text__media>a {
    display: block;
    height: 100%
}

.wp-block-media-text.is-image-fill>.wp-block-media-text__media img {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

@media (max-width:600px) {
    .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100% !important
    }

    .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media {
        grid-column: 1;
        grid-row: 1
    }

    .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
        grid-column: 1;
        grid-row: 2
    }
}

.wp-block-navigation {
    --navigation-layout-justification-setting: flex-start;
    --navigation-layout-direction: row;
    --navigation-layout-wrap: wrap;
    --navigation-layout-justify: flex-start;
    --navigation-layout-align: center;
    position: relative
}

.wp-block-navigation ul {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0
}

.wp-block-navigation ul,
.wp-block-navigation ul li {
    list-style: none;
    padding: 0
}

.wp-block-navigation .wp-block-navigation-item {
    align-items: center;
    display: flex;
    position: relative
}

.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty {
    display: none
}

.wp-block-navigation .wp-block-navigation-item__content {
    display: block
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: inherit
}

.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus {
    text-decoration: underline
}

.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,
.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,
.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus {
    text-decoration: line-through
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a {
    text-decoration: none
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,
.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus {
    text-decoration: none
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
    align-self: center;
    background-color: inherit;
    border: none;
    color: currentColor;
    display: inline-block;
    font-size: inherit;
    height: .6em;
    line-height: 0;
    margin-left: .25em;
    padding: 0;
    width: .6em
}

.wp-block-navigation .wp-block-navigation__submenu-icon svg {
    stroke: currentColor;
    display: inline-block;
    height: inherit;
    margin-top: .075em;
    width: inherit
}

.wp-block-navigation.is-vertical {
    --navigation-layout-direction: column;
    --navigation-layout-justify: initial;
    --navigation-layout-align: flex-start
}

.wp-block-navigation.no-wrap {
    --navigation-layout-wrap: nowrap
}

.wp-block-navigation.items-justified-center {
    --navigation-layout-justification-setting: center;
    --navigation-layout-justify: center
}

.wp-block-navigation.items-justified-center.is-vertical {
    --navigation-layout-align: center
}

.wp-block-navigation.items-justified-right {
    --navigation-layout-justification-setting: flex-end;
    --navigation-layout-justify: flex-end
}

.wp-block-navigation.items-justified-right.is-vertical {
    --navigation-layout-align: flex-end
}

.wp-block-navigation.items-justified-space-between {
    --navigation-layout-justification-setting: space-between;
    --navigation-layout-justify: space-between
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
    align-items: normal;
    background-color: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 0;
    left: -1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition: opacity .1s linear;
    visibility: hidden;
    width: 0;
    z-index: 2
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {
    display: flex;
    flex-grow: 1
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
    margin-left: auto;
    margin-right: 0
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    margin: 0
}

@media (min-width:782px) {
    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
        left: 100%;
        top: -1px
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before {
        background: #0000;
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        right: 100%;
        width: .5em
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon {
        margin-right: .25em
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg {
        transform: rotate(-90deg)
    }
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,
.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,
.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container {
    height: auto;
    min-width: 200px;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    width: auto
}

.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container {
    left: 0;
    top: 100%
}

@media (min-width:782px) {
    .wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
        left: 100%;
        top: 0
    }
}

.wp-block-navigation-submenu {
    display: flex;
    position: relative
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
    stroke: currentColor
}

button.wp-block-navigation-item__content {
    background-color: initial;
    border: none;
    color: currentColor;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
    text-transform: inherit
}

.wp-block-navigation-submenu__toggle {
    cursor: pointer
}

.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle {
    padding-left: 0;
    padding-right: .85em
}

.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon {
    margin-left: -.6em;
    pointer-events: none
}

.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle) {
    padding: 0
}

.wp-block-navigation .wp-block-page-list,
.wp-block-navigation__container,
.wp-block-navigation__responsive-close,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-dialog {
    gap: inherit
}

:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),
:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)) {
    padding: .5em 1em
}

:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content) {
    padding: .5em 1em
}

.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container {
    left: auto;
    right: 0
}

.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
    left: -1px;
    right: -1px
}

@media (min-width:782px) {

    .wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
    .wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
    .wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,
    .wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
        left: auto;
        right: 100%
    }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background-color: #fff;
    border: 1px solid #00000026
}

.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
    background-color: inherit
}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container {
    color: #000
}

.wp-block-navigation__container {
    align-items: var(--navigation-layout-align, initial);
    display: flex;
    flex-direction: var(--navigation-layout-direction, initial);
    flex-wrap: var(--navigation-layout-wrap, wrap);
    justify-content: var(--navigation-layout-justify, initial);
    list-style: none;
    margin: 0;
    padding-left: 0
}

.wp-block-navigation__container .is-responsive {
    display: none
}

.wp-block-navigation__container:only-child,
.wp-block-page-list:only-child {
    flex-grow: 1
}

@keyframes overlay-menu__fade-in-animation {
    0% {
        opacity: 0;
        transform: translateY(.5em)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.wp-block-navigation__responsive-container {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a) {
    color: inherit
}

.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
    align-items: var(--navigation-layout-align, initial);
    display: flex;
    flex-direction: var(--navigation-layout-direction, initial);
    flex-wrap: var(--navigation-layout-wrap, wrap);
    justify-content: var(--navigation-layout-justify, initial)
}

.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
    background-color: inherit !important;
    color: inherit !important
}

.wp-block-navigation__responsive-container.is-menu-open {
    animation: overlay-menu__fade-in-animation .1s ease-out;
    animation-fill-mode: forwards;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding: clamp(1rem, var(--wp--style--root--padding-top), 20rem) clamp(1rem, var(--wp--style--root--padding-right), 20rem) clamp(1rem, var(--wp--style--root--padding-bottom), 20rem) clamp(1rem, var(--wp--style--root--padding-left), 20em);
    z-index: 100000
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-navigation__responsive-container.is-menu-open {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: var(--navigation-layout-justification-setting, inherit);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    padding-top: calc(2rem + 24px)
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    justify-content: flex-start
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
    display: none
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
    border: none;
    height: auto;
    min-width: 200px;
    opacity: 1;
    overflow: initial;
    padding-left: 2rem;
    padding-right: 2rem;
    position: static;
    visibility: visible;
    width: auto
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    gap: inherit
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    padding-top: var(--wp--style--block-gap, 2em)
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
    padding: 0
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    align-items: var(--navigation-layout-justification-setting, initial);
    display: flex;
    flex-direction: column
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
    background: #0000 !important;
    color: inherit !important
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
    left: auto;
    right: auto
}

@media (min-width:600px) {
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        background-color: inherit;
        display: block;
        position: relative;
        width: 100%;
        z-index: auto
    }

    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close {
        display: none
    }

    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
        left: 0
    }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
    background-color: #fff
}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open {
    color: #000
}

.wp-block-navigation__toggle_button_label {
    font-size: 1rem;
    font-weight: 700
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
    background: #0000;
    border: none;
    color: currentColor;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-transform: inherit;
    vertical-align: middle
}

.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
    fill: currentColor;
    display: block;
    height: 24px;
    pointer-events: none;
    width: 24px
}

.wp-block-navigation__responsive-container-open {
    display: flex
}

.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit
}

@media (min-width:600px) {
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: none
    }
}

.wp-block-navigation__responsive-container-close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit
}

.wp-block-navigation__responsive-close {
    width: 100%
}

.has-modal-open .wp-block-navigation__responsive-close {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wp--style--global--wide-size, 100%)
}

.wp-block-navigation__responsive-close:focus {
    outline: none
}

.is-menu-open .wp-block-navigation__responsive-close,
.is-menu-open .wp-block-navigation__responsive-container-content,
.is-menu-open .wp-block-navigation__responsive-dialog {
    box-sizing: border-box
}

.wp-block-navigation__responsive-dialog {
    position: relative
}

.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 46px
}

@media (min-width:782px) {
    .has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
        margin-top: 32px
    }
}

html.has-modal-open {
    overflow: hidden
}

.wp-block-navigation .wp-block-navigation-item__label {
    overflow-wrap: break-word
}

.wp-block-navigation .wp-block-navigation-item__description {
    display: none
}

.link-ui-tools {
    border-top: 1px solid #f0f0f0;
    padding: 8px
}

.link-ui-block-inserter {
    padding-top: 8px
}

.link-ui-block-inserter__back {
    margin-left: 8px;
    text-transform: uppercase
}

.wp-block-navigation .wp-block-page-list {
    align-items: var(--navigation-layout-align, initial);
    background-color: inherit;
    display: flex;
    flex-direction: var(--navigation-layout-direction, initial);
    flex-wrap: var(--navigation-layout-wrap, wrap);
    justify-content: var(--navigation-layout-justify, initial)
}

.wp-block-navigation .wp-block-navigation-item {
    background-color: inherit
}

.is-small-text {
    font-size: .875em
}

.is-regular-text {
    font-size: 1em
}

.is-large-text {
    font-size: 2.25em
}

.is-larger-text {
    font-size: 3em
}

.has-drop-cap:not(:focus):first-letter {
    float: left;
    font-size: 8.4em;
    font-style: normal;
    font-weight: 100;
    line-height: .68;
    margin: .05em .1em 0 0;
    text-transform: uppercase
}

body.rtl .has-drop-cap:not(:focus):first-letter {
    float: none;
    margin-left: .1em
}

p.has-drop-cap.has-background {
    overflow: hidden
}

:root :where(p.has-background) {
    padding: 1.25em 2.375em
}

:where(p.has-text-color:not(.has-link-color)) a {
    color: inherit
}

p.has-text-align-left[style*="writing-mode:vertical-lr"],
p.has-text-align-right[style*="writing-mode:vertical-rl"] {
    rotate: 180deg
}

.wp-block-post-author {
    display: flex;
    flex-wrap: wrap
}

.wp-block-post-author__byline {
    font-size: .5em;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%
}

.wp-block-post-author__avatar {
    margin-right: 1em
}

.wp-block-post-author__bio {
    font-size: .7em;
    margin-bottom: .7em
}

.wp-block-post-author__content {
    flex-basis: 0;
    flex-grow: 1
}

.wp-block-post-author__name {
    margin: 0
}

.wp-block-post-comments-form {
    box-sizing: border-box
}

.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
    font-weight: inherit
}

.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
    font-family: inherit
}

.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),
.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
    font-size: inherit
}

.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
    line-height: inherit
}

.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title) {
    font-style: inherit
}

.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
    letter-spacing: inherit
}

.wp-block-post-comments-form input[type=submit] {
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    overflow-wrap: break-word;
    text-align: center
}

.wp-block-post-comments-form input:not([type=submit]),
.wp-block-post-comments-form textarea {
    border: 1px solid #949494;
    font-family: inherit;
    font-size: 1em
}

.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form textarea {
    padding: calc(.667em + 2px)
}

.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]),
.wp-block-post-comments-form .comment-form textarea {
    box-sizing: border-box;
    display: block;
    width: 100%
}

.wp-block-post-comments-form .comment-form-author label,
.wp-block-post-comments-form .comment-form-email label,
.wp-block-post-comments-form .comment-form-url label {
    display: block;
    margin-bottom: .25em
}

.wp-block-post-comments-form .comment-form-cookies-consent {
    display: flex;
    gap: .25em
}

.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
    margin-top: .35em
}

.wp-block-post-comments-form .comment-reply-title {
    margin-bottom: 0
}

.wp-block-post-comments-form .comment-reply-title :where(small) {
    font-size: var(--wp--preset--font-size--medium, smaller);
    margin-left: .5em
}

.wp-block-post-date {
    box-sizing: border-box
}

:where(.wp-block-post-excerpt) {
    margin-bottom: var(--wp--style--block-gap);
    margin-top: var(--wp--style--block-gap)
}

.wp-block-post-excerpt__excerpt {
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-post-excerpt__more-text {
    margin-bottom: 0;
    margin-top: var(--wp--style--block-gap)
}

.wp-block-post-excerpt__more-link {
    display: inline-block
}

.wp-block-post-featured-image {
    margin-left: 0;
    margin-right: 0
}

.wp-block-post-featured-image a {
    display: block;
    height: 100%
}

.wp-block-post-featured-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    width: 100%
}

.wp-block-post-featured-image.alignfull img,
.wp-block-post-featured-image.alignwide img {
    width: 100%
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim {
    background-color: #000;
    inset: 0;
    position: absolute
}

.wp-block-post-featured-image {
    position: relative
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient {
    background-color: initial
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0 {
    opacity: 0
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10 {
    opacity: .1
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20 {
    opacity: .2
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30 {
    opacity: .3
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40 {
    opacity: .4
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50 {
    opacity: .5
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60 {
    opacity: .6
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70 {
    opacity: .7
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80 {
    opacity: .8
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90 {
    opacity: .9
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100 {
    opacity: 1
}

.wp-block-post-featured-image:where(.alignleft, .alignright) {
    width: 100%
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
    display: inline-block;
    margin-right: 1ch
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
    display: inline-block;
    margin-left: 1ch
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],
.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"] {
    rotate: 180deg
}

.wp-block-post-terms {
    box-sizing: border-box
}

.wp-block-post-terms .wp-block-post-terms__separator {
    white-space: pre-wrap
}

.wp-block-post-time-to-read,
.wp-block-post-title {
    box-sizing: border-box
}

.wp-block-post-title {
    word-break: break-word
}

.wp-block-post-title a {
    display: inline-block
}

.wp-block-preformatted {
    box-sizing: border-box;
    white-space: pre-wrap
}

:where(.wp-block-preformatted.has-background) {
    padding: 1.25em 2.375em
}

.wp-block-pullquote {
    box-sizing: border-box;
    margin: 0 0 1em;
    overflow-wrap: break-word;
    padding: 4em 0;
    text-align: center
}

.wp-block-pullquote blockquote,
.wp-block-pullquote cite,
.wp-block-pullquote p {
    color: inherit
}

.wp-block-pullquote blockquote {
    margin: 0
}

.wp-block-pullquote p {
    margin-top: 0
}

.wp-block-pullquote p:last-child {
    margin-bottom: 0
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
    max-width: 420px
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
    position: relative
}

.wp-block-pullquote .has-text-color a {
    color: inherit
}

.wp-block-pullquote.has-text-align-left blockquote {
    text-align: left
}

.wp-block-pullquote.has-text-align-right blockquote {
    text-align: right
}

.wp-block-pullquote.is-style-solid-color {
    border: none
}

.wp-block-pullquote.is-style-solid-color blockquote {
    margin-left: auto;
    margin-right: auto;
    max-width: 60%
}

.wp-block-pullquote.is-style-solid-color blockquote p {
    font-size: 2em;
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
    font-style: normal;
    text-transform: none
}

.wp-block-pullquote cite {
    color: inherit
}

.wp-block-post-template {
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    max-width: 100%;
    padding: 0
}

.wp-block-post-template.is-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25em
}

.wp-block-post-template.is-flex-container>li {
    margin: 0;
    width: 100%
}

@media (min-width:600px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-2>li {
        width: calc(50% - .625em)
    }

    .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
        width: calc(33.33333% - .83333em)
    }

    .wp-block-post-template.is-flex-container.is-flex-container.columns-4>li {
        width: calc(25% - .9375em)
    }

    .wp-block-post-template.is-flex-container.is-flex-container.columns-5>li {
        width: calc(20% - 1em)
    }

    .wp-block-post-template.is-flex-container.is-flex-container.columns-6>li {
        width: calc(16.66667% - 1.04167em)
    }
}

@media (max-width:600px) {
    .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
        grid-template-columns: 1fr
    }
}

.wp-block-post-template-is-layout-constrained>li>.alignright,
.wp-block-post-template-is-layout-flow>li>.alignright {
    float: right;
    margin-inline-end: 0;
    margin-inline-start: 2em
}

.wp-block-post-template-is-layout-constrained>li>.alignleft,
.wp-block-post-template-is-layout-flow>li>.alignleft {
    float: left;
    margin-inline-end: 2em;
    margin-inline-start: 0
}

.wp-block-post-template-is-layout-constrained>li>.aligncenter,
.wp-block-post-template-is-layout-flow>li>.aligncenter {
    margin-inline-end: auto;
    margin-inline-start: auto
}

.wp-block-query-pagination>.wp-block-query-pagination-next,
.wp-block-query-pagination>.wp-block-query-pagination-numbers,
.wp-block-query-pagination>.wp-block-query-pagination-previous {
    margin-bottom: .5em;
    margin-right: .5em
}

.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,
.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,
.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child {
    margin-right: 0
}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type {
    margin-inline-start: auto
}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child {
    margin-inline-end: auto
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
    display: inline-block;
    margin-right: 1ch
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
    display: inline-block;
    margin-left: 1ch
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1)
}

.wp-block-query-pagination.aligncenter {
    justify-content: center
}

.wp-block-query-title,
.wp-block-quote {
    box-sizing: border-box
}

.wp-block-quote {
    overflow-wrap: break-word
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
    margin-bottom: 1em;
    padding: 0 1em
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) p,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.6
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,
.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
    font-size: 1.125em;
    text-align: right
}

.wp-block-quote>cite {
    display: block
}

.wp-block-read-more {
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.wp-block-read-more:where(:not([style*=text-decoration])) {
    text-decoration: none
}

.wp-block-read-more:where(:not([style*=text-decoration])):active,
.wp-block-read-more:where(:not([style*=text-decoration])):focus {
    text-decoration: none
}

ul.wp-block-rss {
    list-style: none;
    padding: 0
}

ul.wp-block-rss.wp-block-rss {
    box-sizing: border-box
}

ul.wp-block-rss.alignleft {
    margin-right: 2em
}

ul.wp-block-rss.alignright {
    margin-left: 2em
}

ul.wp-block-rss.is-grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0
}

ul.wp-block-rss.is-grid li {
    margin: 0 1em 1em 0;
    width: 100%
}

@media (min-width:600px) {
    ul.wp-block-rss.columns-2 li {
        width: calc(50% - 1em)
    }

    ul.wp-block-rss.columns-3 li {
        width: calc(33.33333% - 1em)
    }

    ul.wp-block-rss.columns-4 li {
        width: calc(25% - 1em)
    }

    ul.wp-block-rss.columns-5 li {
        width: calc(20% - 1em)
    }

    ul.wp-block-rss.columns-6 li {
        width: calc(16.66667% - 1em)
    }
}

.wp-block-rss__item-author,
.wp-block-rss__item-publish-date {
    display: block;
    font-size: .8125em
}

.wp-block-search__button {
    margin-left: 10px;
    word-break: normal
}

.wp-block-search__button.has-icon {
    line-height: 0
}

.wp-block-search__button svg {
    fill: currentColor;
    height: 1.25em;
    min-height: 24px;
    min-width: 24px;
    vertical-align: text-bottom;
    width: 1.25em
}

:where(.wp-block-search__button) {
    border: 1px solid #ccc;
    padding: 6px 10px
}

.wp-block-search__inside-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%
}

.wp-block-search__label {
    width: 100%
}

.wp-block-search__input {
    -webkit-appearance: initial;
    appearance: none;
    border: 1px solid #949494;
    flex-grow: 1;
    margin-left: 0;
    margin-right: 0;
    min-width: 3rem;
    padding: 8px;
    text-decoration: unset !important
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
    flex-shrink: 0;
    margin-left: 0;
    max-width: 100%
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button[aria-expanded=true] {
    max-width: calc(100% - 100px)
}

.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
    min-width: 0 !important;
    transition-property: width
}

.wp-block-search.wp-block-search__button-only .wp-block-search__input {
    flex-basis: 100%;
    transition-duration: .3s
}

.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,
.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper {
    overflow: hidden
}

.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input {
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    flex-basis: 0;
    flex-grow: 0;
    margin: 0;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 0 !important
}

:where(.wp-block-search__input) {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border: 1px solid #949494;
    box-sizing: border-box;
    padding: 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
    border: none;
    border-radius: 0;
    padding: 0 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus {
    outline: none
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button) {
    padding: 4px 8px
}

.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
    margin: auto
}

.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
    float: right
}

.wp-block-separator {
    border: none;
    border-top: 2px solid
}

:root :where(.wp-block-separator.is-style-dots) {
    height: auto;
    line-height: 1;
    text-align: center
}

:root :where(.wp-block-separator.is-style-dots):before {
    color: currentColor;
    content: "···";
    font-family: serif;
    font-size: 1.5em;
    letter-spacing: 2em;
    padding-left: 2em
}

.wp-block-separator.is-style-dots {
    background: none !important;
    border: none !important
}

.wp-block-site-logo {
    box-sizing: border-box;
    line-height: 0
}

.wp-block-site-logo a {
    display: inline-block;
    line-height: 0
}

.wp-block-site-logo.is-default-size img {
    height: auto;
    width: 120px
}

.wp-block-site-logo img {
    height: auto;
    max-width: 100%
}

.wp-block-site-logo a,
.wp-block-site-logo img {
    border-radius: inherit
}

.wp-block-site-logo.aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

:root :where(.wp-block-site-logo.is-style-rounded) {
    border-radius: 9999px
}

:root :where(.wp-block-site-title a) {
    color: inherit
}

.wp-block-social-links {
    background: none;
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    text-indent: 0
}

.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a:hover {
    border-bottom: 0;
    box-shadow: none;
    text-decoration: none
}

.wp-block-social-links .wp-social-link svg {
    height: 1em;
    width: 1em
}

.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
    font-size: .65em;
    margin-left: .5em;
    margin-right: .5em
}

.wp-block-social-links.has-small-icon-size {
    font-size: 16px
}

.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
    font-size: 24px
}

.wp-block-social-links.has-large-icon-size {
    font-size: 36px
}

.wp-block-social-links.has-huge-icon-size {
    font-size: 48px
}

.wp-block-social-links.aligncenter {
    display: flex;
    justify-content: center
}

.wp-block-social-links.alignright {
    justify-content: flex-end
}

.wp-block-social-link {
    border-radius: 9999px;
    display: block;
    height: auto;
    transition: transform .1s ease
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-social-link {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.wp-block-social-link a {
    align-items: center;
    display: flex;
    line-height: 0;
    transition: transform .1s ease
}

.wp-block-social-link:hover {
    transform: scale(1.1)
}

.wp-block-social-links .wp-block-social-link.wp-social-link {
    display: inline-block;
    margin: 0;
    padding: 0
}

.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited {
    fill: currentColor;
    color: currentColor
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    background-color: #f0f0f0;
    color: #444
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
    background-color: #f90;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
    background-color: #1ea0c3;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
    background-color: #0757fe;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bluesky {
    background-color: #0a7aff;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
    background-color: #1e1f26;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
    background-color: #02e49b;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
    background-color: #e94c89;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
    background-color: #4280ff;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
    background-color: #f45800;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
    background-color: #1778f2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
    background-color: #0461dd;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
    background-color: #e65678;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
    background-color: #24292d;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
    background-color: #eceadd;
    color: #382110
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
    background-color: #ea4434;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-gravatar {
    background-color: #1d4fc4;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
    background-color: #f00075;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
    background-color: #e21b24;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
    background-color: #0d66c2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
    background-color: #3288d4;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
    background-color: #f6405f;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
    background-color: #e60122;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
    background-color: #ef4155;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
    background-color: #ff4500;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
    background-color: #0478d7;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
    stroke: #000;
    background-color: #fefc00;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
    background-color: #ff5600;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
    background-color: #1bd760;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
    background-color: #2aabee;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads,
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
    background-color: #011835;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
    background-color: #6440a4;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
    background-color: #1da1f2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
    background-color: #1eb7ea;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
    background-color: #4680c2;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
    background-color: #3499cd;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp {
    background-color: #25d366;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x {
    background-color: #000;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
    background-color: #d32422;
    color: #fff
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
    background-color: red;
    color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
    background: none
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
    height: 1.25em;
    width: 1.25em
}

.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
    color: #f90
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
    color: #1ea0c3
}

.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
    color: #0757fe
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bluesky {
    color: #0a7aff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
    color: #1e1f26
}

.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
    color: #02e49b
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
    color: #e94c89
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
    color: #4280ff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
    color: #f45800
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
    color: #1778f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
    color: #0461dd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
    color: #e65678
}

.wp-block-social-links.is-style-logos-only .wp-social-link-github {
    color: #24292d
}

.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
    color: #382110
}

.wp-block-social-links.is-style-logos-only .wp-social-link-google {
    color: #ea4434
}

.wp-block-social-links.is-style-logos-only .wp-social-link-gravatar {
    color: #1d4fc4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
    color: #f00075
}

.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
    color: #e21b24
}

.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
    color: #0d66c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
    color: #3288d4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
    color: #f6405f
}

.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
    color: #e60122
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
    color: #ef4155
}

.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
    color: #ff4500
}

.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
    color: #0478d7
}

.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
    stroke: #000;
    color: #fff
}

.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
    color: #ff5600
}

.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
    color: #1bd760
}

.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
    color: #2aabee
}

.wp-block-social-links.is-style-logos-only .wp-social-link-threads,
.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
    color: #011835
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
    color: #6440a4
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
    color: #1da1f2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
    color: #1eb7ea
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
    color: #4680c2
}

.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp {
    color: #25d366
}

.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
    color: #3499cd
}

.wp-block-social-links.is-style-logos-only .wp-social-link-x {
    color: #000
}

.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
    color: #d32422
}

.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
    color: red
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
    width: auto
}

:root :where(.wp-block-social-links .wp-social-link a) {
    padding: .25em
}

:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
    padding: 0
}

:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
    padding-left: .66667em;
    padding-right: .66667em
}

.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label {
    color: #000
}

.wp-block-spacer {
    clear: both
}

.wp-block-tag-cloud {
    box-sizing: border-box
}

.wp-block-tag-cloud.aligncenter {
    justify-content: center;
    text-align: center
}

.wp-block-tag-cloud.alignfull {
    padding-left: 1em;
    padding-right: 1em
}

.wp-block-tag-cloud a {
    display: inline-block;
    margin-right: 5px
}

.wp-block-tag-cloud span {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none
}

:root :where(.wp-block-tag-cloud.is-style-outline) {
    display: flex;
    flex-wrap: wrap;
    gap: 1ch
}

:root :where(.wp-block-tag-cloud.is-style-outline a) {
    border: 1px solid;
    font-size: unset !important;
    margin-right: 0;
    padding: 1ch 2ch;
    text-decoration: none !important
}

.wp-block-table {
    overflow-x: auto
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%
}

.wp-block-table thead {
    border-bottom: 3px solid
}

.wp-block-table tfoot {
    border-top: 3px solid
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid;
    padding: .5em
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
    word-break: break-word
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
    display: table;
    width: auto
}

.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
    word-break: break-word
}

.wp-block-table .has-subtle-light-gray-background-color {
    background-color: #f3f4f5
}

.wp-block-table .has-subtle-pale-green-background-color {
    background-color: #e9fbe5
}

.wp-block-table .has-subtle-pale-blue-background-color {
    background-color: #e7f5fe
}

.wp-block-table .has-subtle-pale-pink-background-color {
    background-color: #fcf0ef
}

.wp-block-table.is-style-stripes {
    background-color: initial;
    border-bottom: 1px solid #f0f0f0;
    border-collapse: inherit;
    border-spacing: 0
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f0f0f0
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
    background-color: #f3f4f5
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
    background-color: #e9fbe5
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
    background-color: #e7f5fe
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
    background-color: #fcf0ef
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
    border-color: #0000
}

.wp-block-table .has-border-color td,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color>* {
    border-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:first-child,
.wp-block-table table[style*=border-top-color] tr:first-child td,
.wp-block-table table[style*=border-top-color] tr:first-child th,
.wp-block-table table[style*=border-top-color]>*,
.wp-block-table table[style*=border-top-color]>* td,
.wp-block-table table[style*=border-top-color]>* th {
    border-top-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:not(:first-child) {
    border-top-color: initial
}

.wp-block-table table[style*=border-right-color] td:last-child,
.wp-block-table table[style*=border-right-color] th,
.wp-block-table table[style*=border-right-color] tr,
.wp-block-table table[style*=border-right-color]>* {
    border-right-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:last-child,
.wp-block-table table[style*=border-bottom-color] tr:last-child td,
.wp-block-table table[style*=border-bottom-color] tr:last-child th,
.wp-block-table table[style*=border-bottom-color]>*,
.wp-block-table table[style*=border-bottom-color]>* td,
.wp-block-table table[style*=border-bottom-color]>* th {
    border-bottom-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:not(:last-child) {
    border-bottom-color: initial
}

.wp-block-table table[style*=border-left-color] td:first-child,
.wp-block-table table[style*=border-left-color] th,
.wp-block-table table[style*=border-left-color] tr,
.wp-block-table table[style*=border-left-color]>* {
    border-left-color: inherit
}

.wp-block-table table[style*=border-style] td,
.wp-block-table table[style*=border-style] th,
.wp-block-table table[style*=border-style] tr,
.wp-block-table table[style*=border-style]>* {
    border-style: inherit
}

.wp-block-table table[style*=border-width] td,
.wp-block-table table[style*=border-width] th,
.wp-block-table table[style*=border-width] tr,
.wp-block-table table[style*=border-width]>* {
    border-style: inherit;
    border-width: inherit
}

:where(.wp-block-term-description) {
    margin-bottom: var(--wp--style--block-gap);
    margin-top: var(--wp--style--block-gap)
}

.wp-block-term-description p {
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-text-columns,
.wp-block-text-columns.aligncenter {
    display: flex
}

.wp-block-text-columns .wp-block-column {
    margin: 0 1em;
    padding: 0
}

.wp-block-text-columns .wp-block-column:first-child {
    margin-left: 0
}

.wp-block-text-columns .wp-block-column:last-child {
    margin-right: 0
}

.wp-block-text-columns.columns-2 .wp-block-column {
    width: 50%
}

.wp-block-text-columns.columns-3 .wp-block-column {
    width: 33.33333%
}

.wp-block-text-columns.columns-4 .wp-block-column {
    width: 25%
}

pre.wp-block-verse {
    overflow: auto;
    white-space: pre-wrap
}

:where(pre.wp-block-verse) {
    font-family: inherit
}

.wp-block-video {
    box-sizing: border-box
}

.wp-block-video video {
    vertical-align: middle;
    width: 100%
}

@supports (position:sticky) {
    .wp-block-video [poster] {
        object-fit: cover
    }
}

.wp-block-video.aligncenter {
    text-align: center
}

.wp-block-video figcaption {
    margin-bottom: 1em;
    margin-top: .5em
}

.editor-styles-wrapper,
.entry-content {
    counter-reset: footnotes
}

a[data-fn].fn {
    counter-increment: footnotes;
    display: inline-flex;
    font-size: smaller;
    text-decoration: none;
    text-indent: -9999999px;
    vertical-align: super
}

a[data-fn].fn:after {
    content: "[" counter(footnotes) "]";
    float: left;
    text-indent: 0
}

.wp-element-button {
    cursor: pointer
}

:root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px
}

:root .has-very-light-gray-background-color {
    background-color: #eee
}

:root .has-very-dark-gray-background-color {
    background-color: #313131
}

:root .has-very-light-gray-color {
    color: #eee
}

:root .has-very-dark-gray-color {
    color: #313131
}

:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
    background: linear-gradient(135deg, #00d084, #0693e3)
}

:root .has-purple-crush-gradient-background {
    background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe)
}

:root .has-hazy-dawn-gradient-background {
    background: linear-gradient(135deg, #faaca8, #dad0ec)
}

:root .has-subdued-olive-gradient-background {
    background: linear-gradient(135deg, #fafae1, #67a671)
}

:root .has-atomic-cream-gradient-background {
    background: linear-gradient(135deg, #fdd79a, #004a59)
}

:root .has-nightshade-gradient-background {
    background: linear-gradient(135deg, #330968, #31cdcf)
}

:root .has-midnight-gradient-background {
    background: linear-gradient(135deg, #020381, #2874fc)
}

.has-regular-font-size {
    font-size: 1em
}

.has-larger-font-size {
    font-size: 2.625em
}

.has-normal-font-size {
    font-size: var(--wp--preset--font-size--normal)
}

.has-huge-font-size {
    font-size: var(--wp--preset--font-size--huge)
}

.has-text-align-center {
    text-align: center
}

.has-text-align-left {
    text-align: left
}

.has-text-align-right {
    text-align: right
}

#end-resizable-editor-section {
    display: none
}

.aligncenter {
    clear: both
}

.items-justified-left {
    justify-content: flex-start
}

.items-justified-center {
    justify-content: center
}

.items-justified-right {
    justify-content: flex-end
}

.items-justified-space-between {
    justify-content: space-between
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.screen-reader-text:focus {
    clip: auto !important;
    background-color: #ddd;
    -webkit-clip-path: none;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

html :where(.has-border-color) {
    border-style: solid
}

html :where([style*=border-top-color]) {
    border-top-style: solid
}

html :where([style*=border-right-color]) {
    border-right-style: solid
}

html :where([style*=border-bottom-color]) {
    border-bottom-style: solid
}

html :where([style*=border-left-color]) {
    border-left-style: solid
}

html :where([style*=border-width]) {
    border-style: solid
}

html :where([style*=border-top-width]) {
    border-top-style: solid
}

html :where([style*=border-right-width]) {
    border-right-style: solid
}

html :where([style*=border-bottom-width]) {
    border-bottom-style: solid
}

html :where([style*=border-left-width]) {
    border-left-style: solid
}

html :where(img[class*=wp-image-]) {
    height: auto;
    max-width: 100%
}

:where(figure) {
    margin: 0 0 1em
}

html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height, 0px)
}

@media screen and (max-width:600px) {
    html :where(.is-position-sticky) {
        --wp-admin--admin-bar--position-offset: 0px
    }
}

/**
 * Grid Block styles.
 * These styles are loaded into both the editor, and the frontend.
 */
/**
 * Padding Options
 */
/* autoprefixer grid: no-autoplace */
.wp-block-jetpack-layout-grid-editor,
.wp-block-jetpack-layout-grid {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__none,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
    padding-left: 0px;
    padding-right: 0px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__small,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
    padding-left: 8px;
    padding-right: 8px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__medium,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
    padding-left: 16px;
    padding-right: 16px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__huge,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
    padding-left: 48px;
    padding-right: 48px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__nowrap,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
    padding-left: 0px;
    padding-right: 0px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none {
    padding: 0px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none.has-background,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none.has-background {
    padding: 0px 13px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column {
    padding: 8px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background {
    padding: 8px 21px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column {
    padding: 16px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background {
    padding: 16px 29px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column {
    padding: 24px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background {
    padding: 24px 37px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column {
    padding: 48px;
}

.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background {
    padding: 48px 61px;
}

/**
 * Individual Column Options
 */
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
    margin-left: -13px;
    margin-right: -13px;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: .05px;
    padding-bottom: .05px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
    padding: 0px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
    padding: 0px 13px;
    max-width: calc(100% + 26px);
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
    padding: 8px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
    padding: 8px 21px;
    max-width: calc(100% + 42px);
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
    padding: 16px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
    padding: 16px 29px;
    max-width: calc(100% + 58px);
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
    padding: 24px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
    padding: 24px 37px;
    max-width: calc(100% + 74px);
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
    padding: 48px;
}

.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background,
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
    padding: 48px 61px;
    max-width: calc(100% + 122px);
}

/**
 * Parent column alignment
 */
.wp-block-jetpack-layout-grid.are-vertically-aligned-top {
    align-items: flex-start;
}

.wp-block-jetpack-layout-grid.are-vertically-aligned-center {
    align-items: center;
}

.wp-block-jetpack-layout-grid.are-vertically-aligned-bottom {
    align-items: flex-end;
}

/**
 * Individual column alignment
 */
.wp-block-jetpack-layout-grid-column.is-vertically-aligned-top {
    align-self: flex-start;
    height: 100%;
}

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-center {
    align-self: center;
}

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-bottom {
    align-self: flex-end;
}

/**
 * Responsive Grid Options. Exclude these from the editor.
 */
/* autoprefixer grid: no-autoplace */
.wp-block-jetpack-layout-grid {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 1;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 1;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 1;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 1;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 2;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 2;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 2;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 2;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 3;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 3;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 3;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 3;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 4;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 4;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 4;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 4;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 5;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 5;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 5;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 5;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 6;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 6;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 6;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 6;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 7;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 7;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 7;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 7;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 8;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 8;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 8;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 8;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 9;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 9;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 9;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 9;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 10;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 10;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 10;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 10;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 11;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 11;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 11;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 11;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-start: 12;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-start: 12;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-start: 12;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-start: 12;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 1;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 1;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 1;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 1;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 2;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 2;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 2;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 2;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 3;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 3;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 3;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 3;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 4;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 4;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 4;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 4;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 5;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 5;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 5;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 5;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 6;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 6;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 6;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 6;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 7;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 7;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 7;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 7;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 8;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 8;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 8;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 8;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 9;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 9;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 9;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 9;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 10;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 10;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 10;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 10;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 11;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 11;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 11;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 11;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-column-end: span 12;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-column-end: span 12;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-column-end: span 12;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-column-end: span 12;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 1;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 1;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 1;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 1;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 2;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 2;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 2;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 2;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 3;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 3;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 3;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 3;
}

.wp-block-jetpack-layout-grid.column1-mobile-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
    grid-row-start: 4;
}

.wp-block-jetpack-layout-grid.column2-mobile-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
    grid-row-start: 4;
}

.wp-block-jetpack-layout-grid.column3-mobile-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
    grid-row-start: 4;
}

.wp-block-jetpack-layout-grid.column4-mobile-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
    grid-row-start: 4;
}

@media (min-width: 600px) {
    .wp-block-jetpack-layout-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column1-tablet-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column2-tablet-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column3-tablet-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column4-tablet-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 4;
    }
}

@media (min-width: 1080px) {
    .wp-block-jetpack-layout-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 1;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 2;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 3;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 4;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 5;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 6;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 7;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 8;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 9;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 10;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 11;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__start-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-start: 12;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 1;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 2;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 3;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 4;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-5>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 5;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-6>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 6;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-7>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 7;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-8>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 8;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-9>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 9;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-10>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 10;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-11>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 11;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__span-12>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-column-end: span 12;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__row-1>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 1;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__row-2>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 2;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__row-3>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 3;
    }

    .wp-block-jetpack-layout-grid.column1-desktop-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(1) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column2-desktop-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(2) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column3-desktop-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(3) {
        grid-row-start: 4;
    }

    .wp-block-jetpack-layout-grid.column4-desktop-grid__row-4>.wp-block-jetpack-layout-grid-column:nth-child(4) {
        grid-row-start: 4;
    }
}

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column * {
    word-break: break-word;
    word-wrap: break-word;
}

.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
    grid-gap: 0px;
}

.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
    grid-gap: 8px;
}

.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
    grid-gap: 16px;
}

.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
    grid-gap: 48px;
}

.wp-block-jetpack-layout-grid-column {
    max-width: 100%;
}

.mejs-offscreen {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal
}

.mejs-container {
    background: #000;
    font-family: Helvetica, Arial, serif;
    position: relative;
    text-align: left;
    text-indent: 0;
    vertical-align: top
}

.mejs-container,
.mejs-container * {
    box-sizing: border-box
}

.mejs-container video::-webkit-media-controls,
.mejs-container video::-webkit-media-controls-panel,
.mejs-container video::-webkit-media-controls-panel-container,
.mejs-container video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important
}

.mejs-fill-container,
.mejs-fill-container .mejs-container {
    height: 100%;
    width: 100%
}

.mejs-fill-container {
    background: transparent;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.mejs-container:focus {
    outline: none
}

.mejs-iframe-overlay {
    height: 100%;
    position: absolute;
    width: 100%
}

.mejs-embed,
.mejs-embed body {
    background: #000;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.mejs-fullscreen {
    overflow: hidden !important
}

.mejs-container-fullscreen {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
    height: 100% !important;
    width: 100% !important
}

.mejs-background,
.mejs-mediaelement {
    left: 0;
    position: absolute;
    top: 0
}

.mejs-mediaelement {
    height: 100%;
    width: 100%;
    z-index: 0
}

.mejs-poster {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1
}

:root .mejs-poster-img {
    display: none
}

.mejs-poster-img {
    border: 0;
    padding: 0
}

.mejs-overlay {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0
}

.mejs-layer {
    z-index: 1
}

.mejs-overlay-play {
    cursor: pointer
}

.mejs-overlay-button {
    background: url(/web/20240701095814im_/https://programapilotoblog.com/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;
    background-position: 0 -39px;
    height: 80px;
    width: 80px
}

.mejs-overlay:hover>.mejs-overlay-button {
    background-position: -80px -39px
}

.mejs-overlay-loading {
    height: 80px;
    width: 80px
}

.mejs-overlay-loading-bg-img {
    -webkit-animation: a 1s linear infinite;
    animation: a 1s linear infinite;
    background: transparent url(/web/20240701095814im_/https://programapilotoblog.com/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;
    display: block;
    height: 80px;
    width: 80px;
    z-index: 1
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.mejs-controls {
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    position: absolute;
    width: 100%;
    z-index: 3
}

.mejs-controls:not([style*="display: none"]) {
    background: rgba(255, 0, 0, .7);
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .35));
    background: linear-gradient(transparent, rgba(0, 0, 0, .35))
}

.mejs-button,
.mejs-time,
.mejs-time-rail {
    font-size: 10px;
    height: 40px;
    line-height: 10px;
    margin: 0;
    width: 32px
}

.mejs-button>button {
    background: transparent url(/web/20240701095814im_/https://programapilotoblog.com/wp-includes/js/mediaelement/mejs-controls.svg);
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    margin: 10px 6px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-decoration: none;
    width: 20px
}

.mejs-button>button:focus {
    outline: 1px dotted #999
}

.mejs-container-keyboard-inactive [role=slider],
.mejs-container-keyboard-inactive [role=slider]:focus,
.mejs-container-keyboard-inactive a,
.mejs-container-keyboard-inactive a:focus,
.mejs-container-keyboard-inactive button,
.mejs-container-keyboard-inactive button:focus {
    outline: 0
}

.mejs-time {
    box-sizing: content-box;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    height: 24px;
    overflow: hidden;
    padding: 16px 6px 0;
    text-align: center;
    width: auto
}

.mejs-play>button {
    background-position: 0 0
}

.mejs-pause>button {
    background-position: -20px 0
}

.mejs-replay>button {
    background-position: -160px 0
}

.mejs-time-rail {
    direction: ltr;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 40px;
    margin: 0 10px;
    padding-top: 10px;
    position: relative
}

.mejs-time-buffering,
.mejs-time-current,
.mejs-time-float,
.mejs-time-float-corner,
.mejs-time-float-current,
.mejs-time-hovered,
.mejs-time-loaded,
.mejs-time-marker,
.mejs-time-total {
    border-radius: 2px;
    cursor: pointer;
    display: block;
    height: 10px;
    position: absolute
}

.mejs-time-total {
    background: hsla(0, 0%, 100%, .3);
    margin: 5px 0 0;
    width: 100%
}

.mejs-time-buffering {
    -webkit-animation: b 2s linear infinite;
    animation: b 2s linear infinite;
    background: -webkit-linear-gradient(135deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent);
    background: linear-gradient(-45deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent);
    background-size: 15px 15px;
    width: 100%
}

@-webkit-keyframes b {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 30px 0
    }
}

@keyframes b {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 30px 0
    }
}

.mejs-time-loaded {
    background: hsla(0, 0%, 100%, .3)
}

.mejs-time-current,
.mejs-time-handle-content {
    background: hsla(0, 0%, 100%, .9)
}

.mejs-time-hovered {
    background: hsla(0, 0%, 100%, .5);
    z-index: 10
}

.mejs-time-hovered.negative {
    background: rgba(0, 0, 0, .2)
}

.mejs-time-buffering,
.mejs-time-current,
.mejs-time-hovered,
.mejs-time-loaded {
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    width: 100%
}

.mejs-time-buffering {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.mejs-time-hovered {
    -webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1);
    transition: height .1s cubic-bezier(.44, 0, 1, 1)
}

.mejs-time-hovered.no-hover {
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important
}

.mejs-time-handle,
.mejs-time-handle-content {
    border: 4px solid transparent;
    cursor: pointer;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 11
}

.mejs-time-handle-content {
    border: 4px solid hsla(0, 0%, 100%, .9);
    border-radius: 50%;
    height: 10px;
    left: -7px;
    top: -4px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px
}

.mejs-time-rail .mejs-time-handle-content:active,
.mejs-time-rail .mejs-time-handle-content:focus,
.mejs-time-rail:hover .mejs-time-handle-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.mejs-time-float {
    background: #eee;
    border: 1px solid #333;
    bottom: 100%;
    color: #111;
    display: none;
    height: 17px;
    margin-bottom: 9px;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 36px
}

.mejs-time-float-current {
    display: block;
    left: 0;
    margin: 2px;
    text-align: center;
    width: 30px
}

.mejs-time-float-corner {
    border: 5px solid #eee;
    border-color: #eee transparent transparent;
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0
}

.mejs-long-video .mejs-time-float {
    margin-left: -23px;
    width: 64px
}

.mejs-long-video .mejs-time-float-current {
    width: 60px
}

.mejs-broadcast {
    color: #fff;
    height: 10px;
    position: absolute;
    top: 15px;
    width: 100%
}

.mejs-fullscreen-button>button {
    background-position: -80px 0
}

.mejs-unfullscreen>button {
    background-position: -100px 0
}

.mejs-mute>button {
    background-position: -60px 0
}

.mejs-unmute>button {
    background-position: -40px 0
}

.mejs-volume-button {
    position: relative
}

.mejs-volume-button>.mejs-volume-slider {
    -webkit-backface-visibility: hidden;
    background: rgba(50, 50, 50, .7);
    border-radius: 0;
    bottom: 100%;
    display: none;
    height: 115px;
    left: 50%;
    margin: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    z-index: 1
}

.mejs-volume-button:hover {
    border-radius: 0 0 4px 4px
}

.mejs-volume-total {
    background: hsla(0, 0%, 100%, .5);
    height: 100px;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 8px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px
}

.mejs-volume-current {
    left: 0;
    margin: 0;
    width: 100%
}

.mejs-volume-current,
.mejs-volume-handle {
    background: hsla(0, 0%, 100%, .9);
    position: absolute
}

.mejs-volume-handle {
    border-radius: 1px;
    cursor: ns-resize;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 16px
}

.mejs-horizontal-volume-slider {
    display: block;
    height: 36px;
    position: relative;
    vertical-align: middle;
    width: 56px
}

.mejs-horizontal-volume-total {
    background: rgba(50, 50, 50, .8);
    height: 8px;
    top: 16px;
    width: 50px
}

.mejs-horizontal-volume-current,
.mejs-horizontal-volume-total {
    border-radius: 2px;
    font-size: 1px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute
}

.mejs-horizontal-volume-current {
    background: hsla(0, 0%, 100%, .8);
    height: 100%;
    top: 0;
    width: 100%
}

.mejs-horizontal-volume-handle {
    display: none
}

.mejs-captions-button,
.mejs-chapters-button {
    position: relative
}

.mejs-captions-button>button {
    background-position: -140px 0
}

.mejs-chapters-button>button {
    background-position: -180px 0
}

.mejs-captions-button>.mejs-captions-selector,
.mejs-chapters-button>.mejs-chapters-selector {
    background: rgba(50, 50, 50, .7);
    border: 1px solid transparent;
    border-radius: 0;
    bottom: 100%;
    margin-right: -43px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 50%;
    visibility: visible;
    width: 86px
}

.mejs-chapters-button>.mejs-chapters-selector {
    margin-right: -55px;
    width: 110px
}

.mejs-captions-selector-list,
.mejs-chapters-selector-list {
    list-style-type: none !important;
    margin: 0;
    overflow: hidden;
    padding: 0
}

.mejs-captions-selector-list-item,
.mejs-chapters-selector-list-item {
    color: #fff;
    cursor: pointer;
    display: block;
    list-style-type: none !important;
    margin: 0 0 6px;
    overflow: hidden;
    padding: 0
}

.mejs-captions-selector-list-item:hover,
.mejs-chapters-selector-list-item:hover {
    background-color: #c8c8c8 !important;
    background-color: hsla(0, 0%, 100%, .4) !important
}

.mejs-captions-selector-input,
.mejs-chapters-selector-input {
    clear: both;
    float: left;
    left: -1000px;
    margin: 3px 3px 0 5px;
    position: absolute
}

.mejs-captions-selector-label,
.mejs-chapters-selector-label {
    cursor: pointer;
    float: left;
    font-size: 10px;
    line-height: 15px;
    padding: 4px 10px 0;
    width: 100%
}

.mejs-captions-selected,
.mejs-chapters-selected {
    color: #21f8f8
}

.mejs-captions-translations {
    font-size: 10px;
    margin: 0 0 5px
}

.mejs-captions-layer {
    bottom: 0;
    color: #fff;
    font-size: 16px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center
}

.mejs-captions-layer a {
    color: #fff;
    text-decoration: underline
}

.mejs-captions-layer[lang=ar] {
    font-size: 20px;
    font-weight: 400
}

.mejs-captions-position {
    bottom: 15px;
    left: 0;
    position: absolute;
    width: 100%
}

.mejs-captions-position-hover {
    bottom: 35px
}

.mejs-captions-text,
.mejs-captions-text * {
    background: hsla(0, 0%, 8%, .5);
    box-shadow: 5px 0 0 hsla(0, 0%, 8%, .5), -5px 0 0 hsla(0, 0%, 8%, .5);
    padding: 0;
    white-space: pre-wrap
}

.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container {
    display: none
}

.mejs-overlay-error {
    position: relative
}

.mejs-overlay-error>img {
    left: 0;
    max-width: 100%;
    position: absolute;
    top: 0;
    z-index: -1
}

.mejs-cannotplay,
.mejs-cannotplay a {
    color: #fff;
    font-size: .8em
}

.mejs-cannotplay {
    position: relative
}

.mejs-cannotplay a,
.mejs-cannotplay p {
    display: inline-block;
    padding: 0 15px;
    width: 100%
}

.mejs-container {
    clear: both;
    max-width: 100%
}

.mejs-container * {
    font-family: Helvetica, Arial
}

.mejs-container,
.mejs-container .mejs-controls,
.mejs-embed,
.mejs-embed body {
    background: #222
}

.mejs-time {
    font-weight: 400;
    word-wrap: normal
}

.mejs-controls a.mejs-horizontal-volume-slider {
    display: table
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #fff
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    background: #0073aa
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-time-rail .mejs-time-total {
    background: rgba(255, 255, 255, .33)
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-time-rail span {
    border-radius: 0
}

.mejs-overlay-loading {
    background: 0 0
}

.mejs-controls button:hover {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.me-cannotplay {
    width: auto !important
}

.media-embed-details .wp-audio-shortcode {
    display: inline-block;
    max-width: 400px
}

.audio-details .embed-media-settings {
    overflow: visible
}

.media-embed-details .embed-media-settings .setting span:not(.button-group) {
    max-width: 400px;
    width: auto
}

.media-embed-details .embed-media-settings .checkbox-setting span {
    display: inline-block
}

.media-embed-details .embed-media-settings {
    padding-top: 0;
    top: 28px
}

.media-embed-details .instructions {
    padding: 16px 0;
    max-width: 600px
}

.media-embed-details .setting .remove-setting,
.media-embed-details .setting p {
    color: #a00;
    font-size: 10px;
    text-transform: uppercase
}

.media-embed-details .setting .remove-setting {
    padding: 5px 0
}

.media-embed-details .setting a:hover {
    color: #dc3232
}

.media-embed-details .embed-media-settings .checkbox-setting {
    float: none;
    margin: 0 0 10px
}

.wp-video {
    max-width: 100%;
    height: auto
}

.wp_attachment_holder .wp-audio-shortcode,
.wp_attachment_holder .wp-video {
    margin-top: 18px
}

.wp-video-shortcode video,
video.wp-video-shortcode {
    max-width: 100%;
    display: inline-block
}

.video-details .wp-video-holder {
    width: 100%;
    max-width: 640px
}

.wp-playlist {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.5
}

.wp-admin .wp-playlist {
    margin: 0 0 18px
}

.wp-playlist video {
    display: inline-block;
    max-width: 100%
}

.wp-playlist audio {
    display: none;
    max-width: 100%;
    width: 400px
}

.wp-playlist .mejs-container {
    margin: 0;
    max-width: 100%
}

.wp-playlist .mejs-controls .mejs-button button {
    outline: 0
}

.wp-playlist-light {
    background: #fff;
    color: #000
}

.wp-playlist-dark {
    color: #fff;
    background: #000
}

.wp-playlist-caption {
    display: block;
    max-width: 88%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item .wp-playlist-caption {
    text-decoration: none;
    color: #000;
    max-width: -webkit-calc(100% - 40px);
    max-width: calc(100% - 40px)
}

.wp-playlist-item-meta {
    display: block;
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item-title {
    font-size: 14px;
    line-height: 1.5
}

.wp-playlist-item-album {
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.wp-playlist-item-artist {
    font-size: 12px;
    text-transform: uppercase
}

.wp-playlist-item-length {
    position: absolute;
    right: 3px;
    top: 0;
    font-size: 14px;
    line-height: 1.5
}

.rtl .wp-playlist-item-length {
    left: 3px;
    right: auto
}

.wp-playlist-tracks {
    margin-top: 10px
}

.wp-playlist-item {
    position: relative;
    cursor: pointer;
    padding: 0 3px;
    border-bottom: 1px solid #ccc
}

.wp-playlist-item:last-child {
    border-bottom: 0
}

.wp-playlist-light .wp-playlist-caption {
    color: #333
}

.wp-playlist-dark .wp-playlist-caption {
    color: #ddd
}

.wp-playlist-playing {
    font-weight: 700;
    background: #f7f7f7
}

.wp-playlist-light .wp-playlist-playing {
    background: #fff;
    color: #000
}

.wp-playlist-dark .wp-playlist-playing {
    background: #000;
    color: #fff
}

.wp-playlist-current-item {
    overflow: hidden;
    margin-bottom: 10px;
    height: 60px
}

.wp-playlist .wp-playlist-current-item img {
    float: left;
    max-width: 60px;
    height: auto;
    margin-right: 10px;
    padding: 0;
    border: 0
}

.rtl .wp-playlist .wp-playlist-current-item img {
    float: right;
    margin-left: 10px;
    margin-right: 0
}

.wp-playlist-current-item .wp-playlist-item-artist,
.wp-playlist-current-item .wp-playlist-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.wp-audio-playlist .me-cannotplay span {
    padding: 5px 15px
}

:root {
    --coblocks-spacing--0: 0;
    --coblocks-spacing--1: 0.5em;
    --coblocks-spacing--2: 1em;
    --coblocks-spacing--3: 1.5em;
    --coblocks-spacing--4: 2em;
    --coblocks-spacing--5: 2.5em;
    --coblocks-spacing--6: 3em;
    --coblocks-spacing--7: 3.5em;
    --coblocks-spacing--8: 4em;
    --coblocks-spacing--9: 4.5em;
    --coblocks-spacing--10: 7em
}

[class*=wp-block-coblocks-] {
    box-sizing: border-box
}

[class*=wp-block-coblocks-] *,
[class*=wp-block-coblocks-] :after,
[class*=wp-block-coblocks-] :before {
    box-sizing: inherit
}

.bg-repeat {
    background-repeat: repeat
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.bg-repeat-x {
    background-repeat: repeat-x
}

.bg-repeat-y {
    background-repeat: repeat-y
}

.bg-cover {
    background-size: cover
}

.bg-auto {
    background-size: auto
}

.bg-contain {
    background-size: contain
}

.bg-top-left {
    background-position: 0 0
}

.bg-top-center {
    background-position: top
}

.bg-top-right {
    background-position: 100% 0
}

.bg-center-left {
    background-position: 0
}

.bg-center-center {
    background-position: 50%
}

.bg-center-right {
    background-position: 100%
}

.bg-bottom-left {
    background-position: 0 100%
}

.bg-bottom-center {
    background-position: bottom
}

.bg-bottom-right {
    background-position: 100% 100%
}

.has-background-overlay {
    position: relative
}

.has-background-overlay:not(.has-background) {
    background-color: #000
}

.has-background-overlay:before {
    background-color: inherit;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0
}

.has-background-overlay-10:before {
    opacity: .1
}

.has-background-overlay-20:before {
    opacity: .2
}

.has-background-overlay-30:before {
    opacity: .3
}

.has-background-overlay-40:before {
    opacity: .4
}

.has-background-overlay-50:before {
    opacity: .5
}

.has-background-overlay-60:before {
    opacity: .6
}

.has-background-overlay-70:before {
    opacity: .7
}

.has-background-overlay-80:before {
    opacity: .8
}

.has-background-overlay-90:before {
    opacity: .9
}

.has-background-overlay-100:before {
    opacity: 1
}

.has-parallax {
    background-attachment: fixed
}

@supports(-webkit-overflow-scrolling:touch) {
    .has-parallax {
        background-attachment: scroll
    }
}

@media(prefers-reduced-motion:reduce) {
    .has-parallax {
        background-attachment: scroll
    }
}

.has-small-gutter.has-2-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--1, .5em))
}

.has-small-gutter.has-3-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(33.33333% - var(--coblocks-spacing--2, 1em))
}

.has-small-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--1, .5em))
}

@media(min-width:960px) {
    .has-small-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
        max-width: calc(25% - var(--coblocks-spacing--2, 1em))
    }
}

@media(max-width:959px) {

    .has-small-gutter.has-4-columns>:not(.block-editor-inner-blocks):first-of-type,
    .has-small-gutter.has-4-columns>:not(.block-editor-inner-blocks):nth-of-type(2) {
        margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2)
    }
}

.has-medium-gutter.has-2-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--2, 1em))
}

.has-medium-gutter.has-3-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(33.61345% - var(--coblocks-spacing--3, 1.5em))
}

.has-medium-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--2, 1em))
}

@media(min-width:960px) {
    .has-medium-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
        max-width: calc(25% - var(--coblocks-spacing--3, 1.5em))
    }
}

@media(max-width:959px) {

    .has-medium-gutter.has-4-columns>:not(.block-editor-inner-blocks):first-of-type,
    .has-medium-gutter.has-4-columns>:not(.block-editor-inner-blocks):nth-of-type(2) {
        margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2)
    }
}

.has-large-gutter.has-2-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(49.75124% - var(--coblocks-spacing--3, 1.5em))
}

.has-large-gutter.has-3-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(33.0033% - var(--coblocks-spacing--4, 2em))
}

.has-large-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--3, 1.5em))
}

@media(min-width:960px) {
    .has-large-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
        max-width: calc(24.5098% - var(--coblocks-spacing--4, 2em))
    }
}

@media(max-width:959px) {

    .has-large-gutter.has-4-columns>:not(.block-editor-inner-blocks):first-of-type,
    .has-large-gutter.has-4-columns>:not(.block-editor-inner-blocks):nth-of-type(2) {
        margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }
}

.has-huge-gutter.has-2-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(49.50495% - var(--coblocks-spacing--4, 2em))
}

.has-huge-gutter.has-3-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(32.36246% - var(--coblocks-spacing--5, 2.5em))
}

.has-huge-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-spacing--4, 2em))
}

@media(min-width:960px) {
    .has-huge-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
        max-width: calc(24.09639% - var(--coblocks-spacing--5, 2.5em))
    }
}

@media(max-width:959px) {

    .has-huge-gutter.has-4-columns>:not(.block-editor-inner-blocks):first-of-type,
    .has-huge-gutter.has-4-columns>:not(.block-editor-inner-blocks):nth-of-type(2) {
        margin-bottom: calc(var(--coblocks-spacing--4, 2em)*2)
    }
}

.has-custom-gutter.has-2-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-custom-gutter, 0))
}

.has-custom-gutter.has-3-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(33.33333% - var(--coblocks-custom-gutter, 0))
}

.has-custom-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
    max-width: calc(50% - var(--coblocks-custom-gutter, 0))
}

@media(min-width:960px) {
    .has-custom-gutter.has-4-columns>:not(.block-editor-inner-blocks) {
        max-width: calc(25% - var(--coblocks-custom-gutter, 0))
    }
}

@media(max-width:959px) {

    .has-custom-gutter.has-4-columns>:not(.block-editor-inner-blocks):first-of-type,
    .has-custom-gutter.has-4-columns>:not(.block-editor-inner-blocks):nth-of-type(2) {
        margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2)
    }
}

@media(max-width:599px) {
    .has-responsive-columns {
        flex-direction: column
    }

    .has-responsive-columns>* {
        max-width: 100% !important;
        width: 100% !important
    }

    .has-responsive-columns.has-no-gutter>[class*=wp-block]:not(:last-child),
    .has-responsive-columns>[class*=wp-block]:last-child {
        margin-bottom: 0
    }

    .has-responsive-columns.has-small-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2.35)
    }

    .has-responsive-columns.has-medium-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2.35)
    }

    .has-responsive-columns.has-large-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2.35)
    }

    .has-responsive-columns.has-huge-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--4, 2em)*2.35)
    }

    .has-responsive-columns.has-custom-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2.35)
    }
}

.has-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

@media(min-width:600px) {

    .has-columns.has-2-columns>:not(.block-editor-inner-blocks),
    .has-columns.has-3-columns>:not(.block-editor-inner-blocks),
    .has-columns.has-4-columns>:not(.block-editor-inner-blocks) {
        flex-basis: 50%
    }
}

@media(min-width:782px) {

    .has-columns.has-3-columns>:not(.block-editor-inner-blocks),
    .has-columns.has-4-columns>:not(.block-editor-inner-blocks) {
        flex-basis: 33.33%
    }
}

@media(max-width:959px) {
    .has-columns.has-4-columns>:not(.block-editor-inner-blocks) {
        flex-basis: 50%
    }
}

@media(min-width:1280px) {
    .has-columns.has-4-columns>:not(.block-editor-inner-blocks) {
        flex-basis: 25%
    }
}

.alignfull .has-columns {
    padding-left: var(--coblocks-spacing--2, 1em);
    padding-right: var(--coblocks-spacing--2, 1em)
}

@media(min-width:600px) {
    .alignfull .has-columns {
        padding-left: var(--coblocks-spacing--4, 2em);
        padding-right: var(--coblocks-spacing--4, 2em)
    }
}

.coblocks-ellipsis-loading:after {
    animation: coblocks-ellipsis 1s steps(4) infinite;
    content: "…";
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    width: 0
}

@keyframes coblocks-ellipsis {
    25% {
        opacity: 1
    }

    75% {
        opacity: 1
    }

    to {
        opacity: 0;
        width: 1.1em
    }
}

.has-small-margin {
    margin-bottom: var(--coblocks-spacing--1, .5em);
    margin-top: var(--coblocks-spacing--1, .5em)
}

.has-medium-margin {
    margin-bottom: var(--coblocks-spacing--2, 1em);
    margin-top: var(--coblocks-spacing--2, 1em)
}

.has-large-margin {
    margin-bottom: var(--coblocks-spacing--3, 1.5em);
    margin-top: var(--coblocks-spacing--3, 1.5em)
}

.has-huge-margin {
    margin-bottom: var(--coblocks-spacing--4, 2em);
    margin-top: var(--coblocks-spacing--4, 2em)
}

.has-small-padding,
.has-small-padding.wp-block-group,
.has-small-padding.wp-block-group.has-background {
    padding-left: var(--coblocks-spacing--1, .5em)
}

.has-medium-padding,
.has-medium-padding.wp-block-group,
.has-medium-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--2, 1em)
}

.has-large-padding,
.has-large-padding.wp-block-group,
.has-large-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--3, 1.5em)
}

.has-huge-padding,
.has-huge-padding.wp-block-group,
.has-huge-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--4, 2em)
}

.has-custom-padding,
.has-custom-padding.wp-block-group,
.has-custom-padding.wp-block-group.has-background {
    padding: var(--coblocks-custom-padding)
}

.content-area__wrapper .has-small-padding,
.content-area__wrapper .has-small-padding.wp-block-group,
.content-area__wrapper .has-small-padding.wp-block-group.has-background,
.editor-styles-wrapper .has-small-padding,
.editor-styles-wrapper .has-small-padding.wp-block-group,
.editor-styles-wrapper .has-small-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--1, .5em)
}

.content-area__wrapper .has-medium-padding,
.content-area__wrapper .has-medium-padding.wp-block-group,
.content-area__wrapper .has-medium-padding.wp-block-group.has-background,
.editor-styles-wrapper .has-medium-padding,
.editor-styles-wrapper .has-medium-padding.wp-block-group,
.editor-styles-wrapper .has-medium-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--2, 1em)
}

.content-area__wrapper .has-large-padding,
.content-area__wrapper .has-large-padding.wp-block-group,
.content-area__wrapper .has-large-padding.wp-block-group.has-background,
.editor-styles-wrapper .has-large-padding,
.editor-styles-wrapper .has-large-padding.wp-block-group,
.editor-styles-wrapper .has-large-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--3, 1.5em)
}

.content-area__wrapper .has-huge-padding,
.content-area__wrapper .has-huge-padding.wp-block-group,
.content-area__wrapper .has-huge-padding.wp-block-group.has-background,
.editor-styles-wrapper .has-huge-padding,
.editor-styles-wrapper .has-huge-padding.wp-block-group,
.editor-styles-wrapper .has-huge-padding.wp-block-group.has-background {
    padding: var(--coblocks-spacing--4, 2em)
}

.content-area__wrapper .has-custom-padding,
.content-area__wrapper .has-custom-padding.wp-block-group,
.content-area__wrapper .has-custom-padding.wp-block-group.has-background,
.editor-styles-wrapper .has-custom-padding,
.editor-styles-wrapper .has-custom-padding.wp-block-group,
.editor-styles-wrapper .has-custom-padding.wp-block-group.has-background {
    padding: var(--coblocks-custom-padding)
}

.has-shadow {
    box-shadow: 0 1.5vw 3vw -.7vw rgba(0, 0, 0, .125)
}

.has-shadow-sml,
.shadow-sm {
    box-shadow: 0 .5vw 2vw -.25vw #0003
}

.has-shadow-med,
.shadow-md {
    box-shadow: 0 1vw 3vw -.5vw #0003
}

.has-shadow-lrg,
.shadow-lg {
    box-shadow: 0 1.8vw 3vw -.7vw #0003
}

[class*=hint--] {
    display: inline-block;
    position: relative
}

[class*=hint--]:after,
[class*=hint--]:before {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateZ(0);
    visibility: hidden;
    z-index: 1000000
}

[class*=hint--]:before {
    background: #0000;
    border: 6px solid #0000;
    content: "";
    position: absolute;
    z-index: 1000001
}

[class*=hint--]:after {
    background: #1e1e1e;
    border-radius: 2px;
    box-shadow: 2px 2px 4px #0000001a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 12px;
    line-height: 11px;
    padding: 6px 8px 7px 9px;
    white-space: nowrap
}

[class*=hint--]:hover:after,
[class*=hint--]:hover:before {
    opacity: 1;
    visibility: visible
}

[class*=hint--][aria-label]:after {
    content: attr(aria-label)
}

[class*=hint--][data-hint]:after {
    content: attr(data-hint)
}

[aria-label=""]:after,
[aria-label=""]:before,
[data-hint=""]:after,
[data-hint=""]:before {
    display: none !important
}

.hint--top:before {
    border-top-color: #1e1e1e;
    left: calc(50% - 6px) !important;
    margin-bottom: -10px
}

.hint--top:after,
.hint--top:before {
    bottom: 103%;
    left: 50%
}

.hint--top:after,
.hint--top:hover:after {
    transform: translateX(-50%)
}

.hint--bottom:before {
    border-bottom-color: #1e1e1e;
    left: calc(50% - 10px);
    margin-top: -11px
}

.hint--bottom:after,
.hint--bottom:before {
    left: 50%;
    top: 100%
}

.hint--bottom:after {
    transform: translateX(-50%)
}

.hint--bottom:hover:before {
    transform: translateY(8px)
}

.hint--bottom:hover:after {
    transform: translateX(-50%) translateY(8px)
}

.has-background-video {
    position: relative
}

.has-background-video.has-background-overlay:before {
    z-index: 1
}

.has-background-video.has-background-overlay>:not(.coblocks-video-bg) {
    z-index: 10
}

.has-background-video>:not(.coblocks-video-bg) {
    position: relative
}

.coblocks-video-bg {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.coblocks-video-bg>video {
    background-position: 50%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%
}

.coblocks-gallery {
    list-style: none !important;
    padding-left: 0;
    padding-right: 0
}

.coblocks-gallery--item {
    list-style: none !important;
    margin: 0;
    padding: 0 !important
}

.coblocks-gallery--item figure {
    position: relative
}

.coblocks-gallery--item img {
    opacity: 1;
    vertical-align: middle
}

.coblocks-gallery .coblocks-gallery--item figcaption {
    color: inherit;
    margin: 0 !important
}

.coblocks-gallery.is-cropped .coblocks-gallery--item a,
.coblocks-gallery.is-cropped .coblocks-gallery--item img,
.coblocks-gallery.is-cropped .coblocks-gallery--item-thumbnail a,
.coblocks-gallery.is-cropped .coblocks-gallery--item-thumbnail img {
    width: 100%
}

@supports(position:sticky) {

    .coblocks-gallery.is-cropped .coblocks-gallery--item a,
    .coblocks-gallery.is-cropped .coblocks-gallery--item img,
    .coblocks-gallery.is-cropped .coblocks-gallery--item-thumbnail a,
    .coblocks-gallery.is-cropped .coblocks-gallery--item-thumbnail img {
        flex: 1;
        height: 100%;
        object-fit: cover
    }
}

.alignfull ul.coblocks-gallery,
.alignwide ul.coblocks-gallery {
    max-width: 100%
}

.coblocks-gallery--item-thumbnail {
    list-style: none !important;
    margin: 0;
    padding: 0
}

.coblocks-gallery--item-thumbnail figure {
    margin: 0;
    position: relative
}

.coblocks-gallery--item-thumbnail img {
    vertical-align: middle
}

figcaption.coblocks-gallery--primary-caption {
    font-size: 13px;
    margin-bottom: 1em;
    margin-top: 1.2em;
    text-align: center
}

figcaption.coblocks-gallery--primary-caption:not(.has-caption-color) {
    color: #1e1e1e
}

.wp-block-group div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 10px !important;
    margin-top: 10px !important
}

@media(min-width:250px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 50%
    }
}

@media(min-width:500px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 33.3333333333%
    }
}

@media(min-width:800px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 25%
    }
}

@media(min-width:1300px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 20%
    }
}

@media(min-width:1700px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 16.6666666667%
    }
}

@media(min-width:1900px) {
    .has-grid-sml .coblocks-gallery--item {
        width: 14.2857142857%
    }
}

@media(min-width:350px) {
    .has-grid-med .coblocks-gallery--item:not(.brick) {
        width: 50%
    }
}

@media(min-width:650px) {
    .has-grid-med .coblocks-gallery--item:not(.brick) {
        width: 33.3333333333%
    }
}

@media(min-width:1100px) {
    .has-grid-med .coblocks-gallery--item:not(.brick) {
        width: 25%
    }
}

@media(min-width:1600px) {
    .alignfull .has-grid-med .coblocks-gallery--item:not(.brick) {
        width: 20%
    }
}

@media(min-width:1900px) {
    .alignfull .has-grid-med .coblocks-gallery--item:not(.brick) {
        width: 16.6666666667%
    }
}

@media(min-width:400px) {
    .has-grid-lrg .coblocks-gallery--item {
        width: 50%
    }
}

@media(min-width:800px) {
    .has-grid-lrg .coblocks-gallery--item {
        width: 33.3333333333%
    }
}

@media(min-width:1600px) {
    .alignfull .has-grid-lrg .coblocks-gallery--item {
        width: 25%
    }
}

@media(min-width:1900px) {
    .alignfull .has-grid-lrg .coblocks-gallery--item {
        width: 20%
    }
}

@media(min-width:400px) {
    .has-grid-xlrg .coblocks-gallery--item:not(.brick) {
        width: 50%
    }
}

@media(min-width:1600px) {
    .alignfull .has-grid-xlrg .coblocks-gallery--item:not(.brick) {
        width: 33.3333333333%
    }
}

@media(min-width:1900px) {
    .alignfull .has-grid-xlrg .coblocks-gallery--item:not(.brick) {
        width: 25%
    }
}

@media(min-width:400px) {
    .has-no-alignment .has-grid-lrg .coblocks-gallery--item:not(.brick) {
        width: 50%
    }
}

@media(min-width:900px) {
    .has-no-alignment .has-grid-lrg .coblocks-gallery--item:not(.brick) {
        width: 33.3333333333%
    }
}

.coblocks-gallery.has-gutter {
    overflow: hidden
}

@media(min-width:600px) {
    .has-gutter-5 {
        margin: -3px !important;
        max-width: calc(100% + 5px) !important
    }

    .has-gutter-10 {
        margin: -5px !important;
        max-width: calc(100% + 10px) !important
    }

    .has-gutter-15 {
        margin: -8px !important;
        max-width: calc(100% + 15px) !important
    }

    .has-gutter-20 {
        margin: -10px !important;
        max-width: calc(100% + 20px) !important
    }

    .has-gutter-25 {
        margin: -13px !important;
        max-width: calc(100% + 25px) !important
    }

    .has-gutter-30 {
        margin: -15px !important;
        max-width: calc(100% + 30px) !important
    }

    .has-gutter-35 {
        margin: -18px !important;
        max-width: calc(100% + 35px) !important
    }

    .has-gutter-40 {
        margin: -20px !important;
        max-width: calc(100% + 40px) !important
    }

    .has-gutter-45 {
        margin: -23px !important;
        max-width: calc(100% + 45px) !important
    }

    .has-gutter-50 {
        margin: -25px !important;
        max-width: calc(100% + 50px) !important
    }

    .has-gutter-5 .coblocks-gallery--figure {
        margin: 3px
    }

    .has-gutter-10 .coblocks-gallery--figure {
        margin: 5px
    }

    .has-gutter-15 .coblocks-gallery--figure {
        margin: 8px
    }

    .has-gutter-20 .coblocks-gallery--figure {
        margin: 10px
    }

    .has-gutter-25 .coblocks-gallery--figure {
        margin: 13px
    }

    .has-gutter-30 .coblocks-gallery--figure {
        margin: 15px
    }

    .has-gutter-35 .coblocks-gallery--figure {
        margin: 18px
    }

    .has-gutter-40 .coblocks-gallery--figure {
        margin: 20px
    }

    .has-gutter-45 .coblocks-gallery--figure {
        margin: 23px
    }

    .has-gutter-50 .coblocks-gallery--figure {
        margin: 25px
    }
}

@media(max-width:599px) {
    .has-gutter-mobile-5 {
        margin: -3px !important;
        max-width: calc(100% + 5px) !important
    }

    .has-gutter-mobile-5 .coblocks-gallery--figure {
        margin: 3px
    }

    .has-gutter-mobile-10 {
        margin: -5px !important;
        max-width: calc(100% + 10px) !important
    }

    .has-gutter-mobile-10 .coblocks-gallery--figure {
        margin: 5px
    }

    .has-gutter-mobile-15 {
        margin: -8px !important;
        max-width: calc(100% + 15px) !important
    }

    .has-gutter-mobile-15 .coblocks-gallery--figure {
        margin: 8px
    }

    .has-gutter-mobile-20 {
        margin: -10px !important;
        max-width: calc(100% + 20px) !important
    }

    .has-gutter-mobile-20 .coblocks-gallery--figure {
        margin: 10px
    }

    .has-gutter-mobile-25 {
        margin: -13px !important;
        max-width: calc(100% + 25px) !important
    }

    .has-gutter-mobile-25 .coblocks-gallery--figure {
        margin: 13px
    }

    .has-gutter-mobile-30 {
        margin: -15px !important;
        max-width: calc(100% + 30px) !important
    }

    .has-gutter-mobile-30 .coblocks-gallery--figure {
        margin: 15px
    }

    .has-gutter-mobile-35 {
        margin: -18px !important;
        max-width: calc(100% + 35px) !important
    }

    .has-gutter-mobile-35 .coblocks-gallery--figure {
        margin: 18px
    }

    .has-gutter-mobile-40 {
        margin: -20px !important;
        max-width: calc(100% + 40px) !important
    }

    .has-gutter-mobile-40 .coblocks-gallery--figure {
        margin: 20px
    }

    .has-gutter-mobile-45 {
        margin: -23px !important;
        max-width: calc(100% + 45px) !important
    }

    .has-gutter-mobile-45 .coblocks-gallery--figure {
        margin: 23px
    }

    .has-gutter-mobile-50 {
        margin: -25px !important;
        max-width: calc(100% + 50px) !important
    }

    .has-gutter-mobile-50 .coblocks-gallery--figure {
        margin: 25px
    }
}

.has-horizontal-gutter {
    overflow-x: hidden
}

@media(min-width:1300px) {
    .has-no-alignment .has-carousel-lrg .coblocks-gallery--item {
        width: 70%
    }
}

.has-no-alignment .has-carousel-xlrg .coblocks-gallery--item {
    width: 100%
}

.has-carousel-sml .coblocks-gallery--item {
    width: 65%
}

@media(min-width:700px) {
    .has-carousel-sml .coblocks-gallery--item {
        width: 33.333%
    }
}

@media(min-width:1100px) {
    .has-carousel-sml .coblocks-gallery--item {
        width: 25%
    }
}

@media(min-width:1600px) {
    .has-carousel-sml .coblocks-gallery--item {
        width: 20%
    }
}

.has-carousel-sml.has-aligned-cells .coblocks-gallery--item {
    width: 100%
}

@media(min-width:700px) {
    .has-carousel-sml.has-aligned-cells .coblocks-gallery--item {
        width: 33.333%
    }
}

@media(min-width:1100px) {
    .has-carousel-sml.has-aligned-cells .coblocks-gallery--item {
        width: 25%
    }
}

@media(min-width:1600px) {
    .has-carousel-sml.has-aligned-cells .coblocks-gallery--item {
        width: 20%
    }
}

.has-carousel-med .coblocks-gallery--item {
    width: 70%
}

@media(min-width:700px) {
    .has-carousel-med .coblocks-gallery--item {
        width: 33.333%
    }
}

@media(min-width:1800px) {
    .has-carousel-med .coblocks-gallery--item {
        width: 25%
    }
}

.has-carousel-med.has-aligned-cells .coblocks-gallery--item {
    width: 100%
}

@media(min-width:600px) {
    .has-carousel-med.has-aligned-cells .coblocks-gallery--item {
        width: 50%
    }
}

@media(min-width:900px) {
    .has-carousel-med.has-aligned-cells .coblocks-gallery--item {
        width: 33.333%
    }
}

@media(min-width:1200px) {
    .has-carousel-med.has-aligned-cells .coblocks-gallery--item {
        width: 25%
    }
}

.has-carousel-lrg .coblocks-gallery--item {
    width: 80%
}

@media(min-width:600px) {
    .has-carousel-lrg .coblocks-gallery--item {
        width: 70%
    }
}

@media(min-width:1300px) {
    .has-carousel-lrg .coblocks-gallery--item {
        width: 60%
    }
}

.has-carousel-lrg.has-aligned-cells .coblocks-gallery--item {
    width: 100%
}

@media(min-width:600px) {
    .has-carousel-lrg.has-aligned-cells .coblocks-gallery--item {
        width: 50%
    }
}

@media(min-width:1800px) {
    .has-carousel-lrg.has-aligned-cells .coblocks-gallery--item {
        width: 33.333%
    }
}

.has-carousel-xlrg .coblocks-gallery--item {
    width: 100%
}

@media(min-width:1200px) {
    .has-carousel-xlrg .coblocks-gallery--item {
        width: 80%
    }
}

.has-carousel-xlrg.has-aligned-cells .coblocks-gallery--item {
    width: 100%
}

@media(min-width:600px) {
    .has-margin-bottom-5 {
        margin-bottom: 5px !important
    }

    .has-margin-bottom-10 {
        margin-bottom: 10px !important
    }

    .has-margin-bottom-15 {
        margin-bottom: 15px !important
    }

    .has-margin-bottom-20 {
        margin-bottom: 20px !important
    }

    .has-margin-bottom-25 {
        margin-bottom: 25px !important
    }

    .has-margin-bottom-30 {
        margin-bottom: 30px !important
    }

    .has-margin-bottom-35 {
        margin-bottom: 35px !important
    }

    .has-margin-bottom-40 {
        margin-bottom: 40px !important
    }

    .has-margin-bottom-45 {
        margin-bottom: 45px !important
    }

    .has-margin-bottom-50 {
        margin-bottom: 50px !important
    }
}

@media(max-width:599px) {
    .has-margin-bottom-mobile-5 {
        margin-bottom: 5px !important
    }

    .has-margin-bottom-mobile-10 {
        margin-bottom: 10px !important
    }

    .has-margin-bottom-mobile-15 {
        margin-bottom: 15px !important
    }

    .has-margin-bottom-mobile-20 {
        margin-bottom: 20px !important
    }

    .has-margin-bottom-mobile-25 {
        margin-bottom: 25px !important
    }

    .has-margin-bottom-mobile-30 {
        margin-bottom: 30px !important
    }

    .has-margin-bottom-mobile-35 {
        margin-bottom: 35px !important
    }

    .has-margin-bottom-mobile-40 {
        margin-bottom: 40px !important
    }

    .has-margin-bottom-mobile-45 {
        margin-bottom: 45px !important
    }

    .has-margin-bottom-mobile-50 {
        margin-bottom: 50px !important
    }
}

@media(min-width:600px) {
    .has-margin-top-5 {
        margin-top: 3px !important
    }

    .has-margin-top-10 {
        margin-top: 5px !important
    }

    .has-margin-top-15 {
        margin-top: 8px !important
    }

    .has-margin-top-20 {
        margin-top: 10px !important
    }

    .has-margin-top-25 {
        margin-top: 13px !important
    }

    .has-margin-top-30 {
        margin-top: 15px !important
    }

    .has-margin-top-35 {
        margin-top: 18px !important
    }

    .has-margin-top-40 {
        margin-top: 20px !important
    }

    .has-margin-top-45 {
        margin-top: 23px !important
    }

    .has-margin-top-50 {
        margin-top: 25px !important
    }
}

@media(max-width:599px) {
    .has-margin-top-mobile-5 {
        margin-top: 3px !important
    }

    .has-margin-top-mobile-10 {
        margin-top: 5px !important
    }

    .has-margin-top-mobile-15 {
        margin-top: 8px !important
    }

    .has-margin-top-mobile-20 {
        margin-top: 10px !important
    }

    .has-margin-top-mobile-25 {
        margin-top: 13px !important
    }

    .has-margin-top-mobile-30 {
        margin-top: 15px !important
    }

    .has-margin-top-mobile-35 {
        margin-top: 18px !important
    }

    .has-margin-top-mobile-40 {
        margin-top: 20px !important
    }

    .has-margin-top-mobile-45 {
        margin-top: 23px !important
    }

    .has-margin-top-mobile-50 {
        margin-top: 25px !important
    }
}

@media(min-width:600px) {
    .has-margin-right-5 {
        margin-right: 3px !important
    }

    .has-margin-right-10 {
        margin-right: 5px !important
    }

    .has-margin-right-15 {
        margin-right: 8px !important
    }

    .has-margin-right-20 {
        margin-right: 10px !important
    }

    .has-margin-right-25 {
        margin-right: 13px !important
    }

    .has-margin-right-30 {
        margin-right: 15px !important
    }

    .has-margin-right-35 {
        margin-right: 18px !important
    }

    .has-margin-right-40 {
        margin-right: 20px !important
    }

    .has-margin-right-45 {
        margin-right: 23px !important
    }

    .has-margin-right-50 {
        margin-right: 25px !important
    }
}

@media(max-width:599px) {
    .has-margin-right-mobile-5 {
        margin-right: 3px !important
    }

    .has-margin-right-mobile-10 {
        margin-right: 5px !important
    }

    .has-margin-right-mobile-15 {
        margin-right: 8px !important
    }

    .has-margin-right-mobile-20 {
        margin-right: 10px !important
    }

    .has-margin-right-mobile-25 {
        margin-right: 13px !important
    }

    .has-margin-right-mobile-30 {
        margin-right: 15px !important
    }

    .has-margin-right-mobile-35 {
        margin-right: 18px !important
    }

    .has-margin-right-mobile-40 {
        margin-right: 20px !important
    }

    .has-margin-right-mobile-45 {
        margin-right: 23px !important
    }

    .has-margin-right-mobile-50 {
        margin-right: 25px !important
    }
}

@media(min-width:600px) {
    .has-margin-left-5 {
        margin-left: 3px !important
    }

    .has-margin-left-10 {
        margin-left: 5px !important
    }

    .has-margin-left-15 {
        margin-left: 8px !important
    }

    .has-margin-left-20 {
        margin-left: 10px !important
    }

    .has-margin-left-25 {
        margin-left: 13px !important
    }

    .has-margin-left-30 {
        margin-left: 15px !important
    }

    .has-margin-left-35 {
        margin-left: 18px !important
    }

    .has-margin-left-40 {
        margin-left: 20px !important
    }

    .has-margin-left-45 {
        margin-left: 23px !important
    }

    .has-margin-left-50 {
        margin-left: 25px !important
    }
}

@media(max-width:599px) {
    .has-margin-left-mobile-5 {
        margin-left: 3px !important
    }

    .has-margin-left-mobile-10 {
        margin-left: 5px !important
    }

    .has-margin-left-mobile-15 {
        margin-left: 8px !important
    }

    .has-margin-left-mobile-20 {
        margin-left: 10px !important
    }

    .has-margin-left-mobile-25 {
        margin-left: 13px !important
    }

    .has-margin-left-mobile-30 {
        margin-left: 15px !important
    }

    .has-margin-left-mobile-35 {
        margin-left: 18px !important
    }

    .has-margin-left-mobile-40 {
        margin-left: 20px !important
    }

    .has-margin-left-mobile-45 {
        margin-left: 23px !important
    }

    .has-margin-left-mobile-50 {
        margin-left: 25px !important
    }
}

@media(min-width:600px) {
    .has-negative-margin-right-5 {
        margin-right: -3px !important
    }

    .has-negative-margin-right-10 {
        margin-right: -5px !important
    }

    .has-negative-margin-right-15 {
        margin-right: -8px !important
    }

    .has-negative-margin-right-20 {
        margin-right: -10px !important
    }

    .has-negative-margin-right-25 {
        margin-right: -13px !important
    }

    .has-negative-margin-right-30 {
        margin-right: -15px !important
    }

    .has-negative-margin-right-35 {
        margin-right: -18px !important
    }

    .has-negative-margin-right-40 {
        margin-right: -20px !important
    }

    .has-negative-margin-right-45 {
        margin-right: -23px !important
    }

    .has-negative-margin-right-50 {
        margin-right: -25px !important
    }
}

@media(max-width:599px) {
    .has-negative-margin-right-mobile-5 {
        margin-right: -3px !important
    }

    .has-negative-margin-right-mobile-10 {
        margin-right: -5px !important
    }

    .has-negative-margin-right-mobile-15 {
        margin-right: -8px !important
    }

    .has-negative-margin-right-mobile-20 {
        margin-right: -10px !important
    }

    .has-negative-margin-right-mobile-25 {
        margin-right: -13px !important
    }

    .has-negative-margin-right-mobile-30 {
        margin-right: -15px !important
    }

    .has-negative-margin-right-mobile-35 {
        margin-right: -18px !important
    }

    .has-negative-margin-right-mobile-40 {
        margin-right: -20px !important
    }

    .has-negative-margin-right-mobile-45 {
        margin-right: -23px !important
    }

    .has-negative-margin-right-mobile-50 {
        margin-right: -25px !important
    }
}

@media(min-width:600px) {
    .has-negative-margin-left-5 {
        margin-left: -3px !important
    }

    .has-negative-margin-left-10 {
        margin-left: -5px !important
    }

    .has-negative-margin-left-15 {
        margin-left: -8px !important
    }

    .has-negative-margin-left-20 {
        margin-left: -10px !important
    }

    .has-negative-margin-left-25 {
        margin-left: -13px !important
    }

    .has-negative-margin-left-30 {
        margin-left: -15px !important
    }

    .has-negative-margin-left-35 {
        margin-left: -18px !important
    }

    .has-negative-margin-left-40 {
        margin-left: -20px !important
    }

    .has-negative-margin-left-45 {
        margin-left: -23px !important
    }

    .has-negative-margin-left-50 {
        margin-left: -25px !important
    }
}

@media(max-width:599px) {
    .has-negative-margin-left-mobile-5 {
        margin-left: -3px !important
    }

    .has-negative-margin-left-mobile-10 {
        margin-left: -5px !important
    }

    .has-negative-margin-left-mobile-15 {
        margin-left: -8px !important
    }

    .has-negative-margin-left-mobile-20 {
        margin-left: -10px !important
    }

    .has-negative-margin-left-mobile-25 {
        margin-left: -13px !important
    }

    .has-negative-margin-left-mobile-30 {
        margin-left: -15px !important
    }

    .has-negative-margin-left-mobile-35 {
        margin-left: -18px !important
    }

    .has-negative-margin-left-mobile-40 {
        margin-left: -20px !important
    }

    .has-negative-margin-left-mobile-45 {
        margin-left: -23px !important
    }

    .has-negative-margin-left-mobile-50 {
        margin-left: -25px !important
    }
}

@media(min-width:600px) {
    .has-negative-margin-5 {
        margin: -3px !important
    }

    .has-negative-margin-10 {
        margin: -5px !important
    }

    .has-negative-margin-15 {
        margin: -8px !important
    }

    .has-negative-margin-20 {
        margin: -10px !important
    }

    .has-negative-margin-25 {
        margin: -13px !important
    }

    .has-negative-margin-30 {
        margin: -15px !important
    }

    .has-negative-margin-35 {
        margin: -18px !important
    }

    .has-negative-margin-40 {
        margin: -20px !important
    }

    .has-negative-margin-45 {
        margin: -23px !important
    }

    .has-negative-margin-50 {
        margin: -25px !important
    }
}

@media(max-width:599px) {
    .has-negative-margin-mobile-5 {
        margin: -3px !important
    }

    .has-negative-margin-mobile-10 {
        margin: -5px !important
    }

    .has-negative-margin-mobile-15 {
        margin: -8px !important
    }

    .has-negative-margin-mobile-20 {
        margin: -10px !important
    }

    .has-negative-margin-mobile-25 {
        margin: -13px !important
    }

    .has-negative-margin-mobile-30 {
        margin: -15px !important
    }

    .has-negative-margin-mobile-35 {
        margin: -18px !important
    }

    .has-negative-margin-mobile-40 {
        margin: -20px !important
    }

    .has-negative-margin-mobile-45 {
        margin: -23px !important
    }

    .has-negative-margin-mobile-50 {
        margin: -25px !important
    }
}

@media(min-width:600px) {
    .has-padding-5 {
        padding: 5px !important
    }

    .has-padding-10 {
        padding: 10px !important
    }

    .has-padding-15 {
        padding: 15px !important
    }

    .has-padding-20 {
        padding: 20px !important
    }

    .has-padding-25 {
        padding: 25px !important
    }

    .has-padding-30 {
        padding: 30px !important
    }

    .has-padding-35 {
        padding: 35px !important
    }

    .has-padding-40 {
        padding: 40px !important
    }

    .has-padding-45 {
        padding: 45px !important
    }

    .has-padding-50 {
        padding: 50px !important
    }

    .has-padding-55 {
        padding: 55px !important
    }

    .has-padding-60 {
        padding: 60px !important
    }

    .has-padding-65 {
        padding: 65px !important
    }

    .has-padding-70 {
        padding: 70px !important
    }

    .has-padding-75 {
        padding: 75px !important
    }

    .has-padding-80 {
        padding: 80px !important
    }

    .has-padding-85 {
        padding: 85px !important
    }

    .has-padding-90 {
        padding: 90px !important
    }

    .has-padding-95 {
        padding: 95px !important
    }

    .has-padding-100 {
        padding: 100px !important
    }
}

@media(max-width:599px) {
    .has-padding-mobile-5 {
        padding: 5px !important
    }

    .has-padding-mobile-10 {
        padding: 10px !important
    }

    .has-padding-mobile-15 {
        padding: 15px !important
    }

    .has-padding-mobile-20 {
        padding: 20px !important
    }

    .has-padding-mobile-25 {
        padding: 25px !important
    }

    .has-padding-mobile-30 {
        padding: 30px !important
    }

    .has-padding-mobile-35 {
        padding: 35px !important
    }

    .has-padding-mobile-40 {
        padding: 40px !important
    }

    .has-padding-mobile-45 {
        padding: 45px !important
    }

    .has-padding-mobile-50 {
        padding: 50px !important
    }

    .has-padding-mobile-55 {
        padding: 55px !important
    }

    .has-padding-mobile-60 {
        padding: 60px !important
    }

    .has-padding-mobile-65 {
        padding: 65px !important
    }

    .has-padding-mobile-70 {
        padding: 70px !important
    }

    .has-padding-mobile-75 {
        padding: 75px !important
    }

    .has-padding-mobile-80 {
        padding: 80px !important
    }

    .has-padding-mobile-85 {
        padding: 85px !important
    }

    .has-padding-mobile-90 {
        padding: 90px !important
    }

    .has-padding-mobile-95 {
        padding: 95px !important
    }

    .has-padding-mobile-100 {
        padding: 100px !important
    }
}

.has-border-radius-2 .coblocks-gallery--item img {
    border-radius: 2px
}

.has-border-radius-2 .coblocks-gallery--item figcaption {
    border-radius: 0 0 2px 2px
}

.has-border-radius-2 .masonry-brick {
    border-radius: 2px
}

.has-border-radius-2 .masonry-brick figcaption {
    border-bottom-left-radius: -2px !important;
    border-bottom-right-radius: -2px !important
}

.has-border-radius-3 .coblocks-gallery--item img {
    border-radius: 3px
}

.has-border-radius-3 .coblocks-gallery--item figcaption {
    border-radius: 0 0 3px 3px
}

.has-border-radius-3 .masonry-brick {
    border-radius: 3px
}

.has-border-radius-3 .masonry-brick figcaption {
    border-bottom-left-radius: -1px !important;
    border-bottom-right-radius: -1px !important
}

.has-border-radius-4 .coblocks-gallery--item img {
    border-radius: 4px
}

.has-border-radius-4 .coblocks-gallery--item figcaption {
    border-radius: 0 0 4px 4px
}

.has-border-radius-4 .masonry-brick {
    border-radius: 4px
}

.has-border-radius-4 .masonry-brick figcaption {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.has-border-radius-5 .coblocks-gallery--item img {
    border-radius: 5px
}

.has-border-radius-5 .coblocks-gallery--item figcaption {
    border-radius: 0 0 5px 5px
}

.has-border-radius-5 .masonry-brick {
    border-radius: 5px
}

.has-border-radius-5 .masonry-brick figcaption {
    border-bottom-left-radius: 1px !important;
    border-bottom-right-radius: 1px !important
}

.has-border-radius-6 .coblocks-gallery--item img {
    border-radius: 6px
}

.has-border-radius-6 .coblocks-gallery--item figcaption {
    border-radius: 0 0 6px 6px
}

.has-border-radius-6 .masonry-brick {
    border-radius: 6px
}

.has-border-radius-6 .masonry-brick figcaption {
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important
}

.has-border-radius-7 .coblocks-gallery--item img {
    border-radius: 7px
}

.has-border-radius-7 .coblocks-gallery--item figcaption {
    border-radius: 0 0 7px 7px
}

.has-border-radius-7 .masonry-brick {
    border-radius: 7px
}

.has-border-radius-7 .masonry-brick figcaption {
    border-bottom-left-radius: 3px !important;
    border-bottom-right-radius: 3px !important
}

.has-border-radius-8 .coblocks-gallery--item img {
    border-radius: 8px
}

.has-border-radius-8 .coblocks-gallery--item figcaption {
    border-radius: 0 0 8px 8px
}

.has-border-radius-8 .masonry-brick {
    border-radius: 8px
}

.has-border-radius-8 .masonry-brick figcaption {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important
}

.has-border-radius-9 .coblocks-gallery--item img {
    border-radius: 9px
}

.has-border-radius-9 .coblocks-gallery--item figcaption {
    border-radius: 0 0 9px 9px
}

.has-border-radius-9 .masonry-brick {
    border-radius: 9px
}

.has-border-radius-9 .masonry-brick figcaption {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important
}

.has-border-radius-10 .coblocks-gallery--item img {
    border-radius: 10px
}

.has-border-radius-10 .coblocks-gallery--item figcaption {
    border-radius: 0 0 10px 10px
}

.has-border-radius-10 .masonry-brick {
    border-radius: 10px
}

.has-border-radius-10 .masonry-brick figcaption {
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important
}

.has-border-radius-11 .coblocks-gallery--item img {
    border-radius: 11px
}

.has-border-radius-11 .coblocks-gallery--item figcaption {
    border-radius: 0 0 11px 11px
}

.has-border-radius-11 .masonry-brick {
    border-radius: 11px
}

.has-border-radius-11 .masonry-brick figcaption {
    border-bottom-left-radius: 7px !important;
    border-bottom-right-radius: 7px !important
}

.has-border-radius-12 .coblocks-gallery--item img {
    border-radius: 12px
}

.has-border-radius-12 .coblocks-gallery--item figcaption {
    border-radius: 0 0 12px 12px
}

.has-border-radius-12 .masonry-brick {
    border-radius: 12px
}

.has-border-radius-12 .masonry-brick figcaption {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important
}

.has-border-radius-13 .coblocks-gallery--item img {
    border-radius: 13px
}

.has-border-radius-13 .coblocks-gallery--item figcaption {
    border-radius: 0 0 13px 13px
}

.has-border-radius-13 .masonry-brick {
    border-radius: 13px
}

.has-border-radius-13 .masonry-brick figcaption {
    border-bottom-left-radius: 9px !important;
    border-bottom-right-radius: 9px !important
}

.has-border-radius-14 .coblocks-gallery--item img {
    border-radius: 14px
}

.has-border-radius-14 .coblocks-gallery--item figcaption {
    border-radius: 0 0 14px 14px
}

.has-border-radius-14 .masonry-brick {
    border-radius: 14px
}

.has-border-radius-14 .masonry-brick figcaption {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important
}

.has-border-radius-15 .coblocks-gallery--item img {
    border-radius: 15px
}

.has-border-radius-15 .coblocks-gallery--item figcaption {
    border-radius: 0 0 15px 15px
}

.has-border-radius-15 .masonry-brick {
    border-radius: 15px
}

.has-border-radius-15 .masonry-brick figcaption {
    border-bottom-left-radius: 11px !important;
    border-bottom-right-radius: 11px !important
}

.has-border-radius-16 .coblocks-gallery--item img {
    border-radius: 16px
}

.has-border-radius-16 .coblocks-gallery--item figcaption {
    border-radius: 0 0 16px 16px
}

.has-border-radius-16 .masonry-brick {
    border-radius: 16px
}

.has-border-radius-16 .masonry-brick figcaption {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important
}

.has-border-radius-17 .coblocks-gallery--item img {
    border-radius: 17px
}

.has-border-radius-17 .coblocks-gallery--item figcaption {
    border-radius: 0 0 17px 17px
}

.has-border-radius-17 .masonry-brick {
    border-radius: 17px
}

.has-border-radius-17 .masonry-brick figcaption {
    border-bottom-left-radius: 13px !important;
    border-bottom-right-radius: 13px !important
}

.has-border-radius-18 .coblocks-gallery--item img {
    border-radius: 18px
}

.has-border-radius-18 .coblocks-gallery--item figcaption {
    border-radius: 0 0 18px 18px
}

.has-border-radius-18 .masonry-brick {
    border-radius: 18px
}

.has-border-radius-18 .masonry-brick figcaption {
    border-bottom-left-radius: 14px !important;
    border-bottom-right-radius: 14px !important
}

.has-border-radius-19 .coblocks-gallery--item img {
    border-radius: 19px
}

.has-border-radius-19 .coblocks-gallery--item figcaption {
    border-radius: 0 0 19px 19px
}

.has-border-radius-19 .masonry-brick {
    border-radius: 19px
}

.has-border-radius-19 .masonry-brick figcaption {
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important
}

.has-border-radius-20 .coblocks-gallery--item img {
    border-radius: 20px
}

.has-border-radius-20 .coblocks-gallery--item figcaption {
    border-radius: 0 0 20px 20px
}

.has-border-radius-20 .masonry-brick {
    border-radius: 20px
}

.has-border-radius-20 .masonry-brick figcaption {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important
}

.has-caption-style-light .coblocks-gallery--item figcaption {
    background: linear-gradient(0deg, #ffffffed 6.3%, #ffffff80 61%, #fff0) !important;
    opacity: 1 !important
}

.coblocks-gallery:not(.has-caption-color).has-caption-style-dark figcaption {
    color: #fff
}

.coblocks-gallery:not(.has-caption-color).has-caption-style-light figcaption {
    color: #000
}

.has-caption-style-none .coblocks-gallery--item {
    background: none !important;
    opacity: 1 !important
}

.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: none
}

.flickity-enabled.is-draggable {
    -webkit-user-select: none;
    user-select: none
}

.flickity-viewport {
    height: 100%;
    overflow: hidden;
    position: relative
}

.is-cropped .flickity-viewport {
    height: 100% !important
}

.flickity-slider {
    height: 100%;
    position: absolute;
    width: 100%
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-button {
    background: #ffffffbf;
    border: none;
    color: #000;
    padding: 0;
    position: absolute;
    transition: background .1s, opacity .1s
}

.flickity-button:hover {
    background: #fff;
    cursor: pointer
}

.flickity-button:focus {
    background: #fff;
    border: none;
    box-shadow: 0 0 0 2px #000;
    outline: none
}

.flickity-button:active {
    border: none;
    opacity: .6
}

.flickity-button:disabled {
    cursor: auto;
    opacity: .25;
    pointer-events: none
}

.flickity-button-icon {
    fill: #000;
    transform: translateZ(0)
}

.flickity-prev-next-button {
    border-radius: 9px;
    height: 72px;
    top: 50%;
    transform: translateY(-50%);
    width: 57px
}

.has-top-left-carousel-arrows .flickity-prev-next-button {
    border-radius: 4px;
    height: 42px;
    top: 20px;
    transform: none;
    width: 42px
}

.has-top-left-carousel-arrows .flickity-prev-next-button.previous {
    left: 20px
}

.has-top-left-carousel-arrows .flickity-prev-next-button.next {
    left: 67px
}

.flickity-prev-next-button.previous {
    left: 10px
}

@media(min-width:600px) {
    .flickity-prev-next-button.previous {
        left: 20px
    }
}

.flickity-prev-next-button.next {
    right: 10px
}

@media(min-width:600px) {
    .flickity-prev-next-button.next {
        right: 20px
    }
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

@media(min-width:600px) {
    .flickity-rtl .flickity-prev-next-button.previous {
        right: 20px
    }
}

.flickity-rtl .flickity-prev-next-button.next {
    left: 10px;
    right: auto
}

@media(min-width:600px) {
    .flickity-rtl .flickity-prev-next-button.next {
        left: 20px
    }
}

.flickity-prev-next-button .flickity-button-icon {
    height: 50%;
    left: 23%;
    position: absolute;
    top: 25%;
    width: 50%
}

.previous.flickity-prev-next-button .flickity-button-icon {
    left: 26%
}

.flickity-page-dots {
    bottom: 18px;
    line-height: 1;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    text-align: center;
    width: 100%
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dots .dot {
    background: #0000004d;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 9px;
    margin: 0 6px;
    width: 9px
}

.flickity-page-dots .dot.is-selected {
    background: #ffffffbf
}

.coblocks-lightbox {
    align-items: center;
    background: #0000;
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.admin-bar .coblocks-lightbox {
    top: 32px
}

@media(max-width:782px) {
    .admin-bar .coblocks-lightbox {
        top: 46px
    }
}

.coblocks-lightbox__background {
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -10em;
    filter: blur(25px) saturate(175%) brightness(90%);
    left: -10em;
    position: absolute;
    right: -10em;
    top: -10em
}

.coblocks-lightbox__heading {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: .5em;
    justify-content: space-between;
    left: 3%;
    position: absolute;
    right: 3%;
    top: 1em
}

@media(min-width:600px) {
    .coblocks-lightbox__heading {
        top: 2em
    }
}

.coblocks-lightbox__image {
    z-index: 2
}

.coblocks-lightbox__image img {
    display: flex;
    margin: auto;
    max-height: 70vh;
    max-width: 70vw
}

@media(min-width:960px) {
    .coblocks-lightbox__image img {
        max-height: 80vh;
        max-width: 80vw
    }
}

.coblocks-lightbox__arrow {
    align-items: center;
    background-color: #0000;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: auto;
    margin: 0 1%;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .25s linear;
    z-index: 3
}

.coblocks-lightbox__arrow:hover {
    background-color: #ffffff26
}

.coblocks-lightbox__arrow:focus {
    background-color: #ffffff40;
    box-shadow: inset 0 0 0 3px #ffffff40;
    outline: none
}

@media(min-width:600px) {
    .coblocks-lightbox__arrow {
        background-color: #ffffff26;
        margin: 0 2%
    }

    .coblocks-lightbox__arrow:hover {
        background-color: #ffffff40
    }
}

.coblocks-lightbox__arrow>div {
    background-color: #fff;
    height: 28px;
    position: relative;
    width: 28px
}

@media(min-width:960px) {
    .coblocks-lightbox__arrow>div {
        height: 32px;
        width: 32px
    }
}

.coblocks-lightbox__arrow .arrow-left {
    left: -1px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+)
}

.coblocks-lightbox__arrow .arrow-right {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    right: -1px
}

.coblocks-lightbox__arrow--left {
    left: 0;
    right: auto
}

.coblocks-lightbox__close {
    background-color: #fff;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 26px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Im01LjM0Mzc1IDk5LjA5Mzc1LTQuNDM3NS00LjQzNzUgNDQuNjg3NS00NC42NTYyNS00NC42ODc1LTQ0LjY1NjI1IDQuNDM3NS00LjQzNzUgNDYuODc1IDQ2Ljg3NWMxLjIxMTYzNjIgMS4yMTg4NjcgMS4yMTE2MzYyIDMuMTg3MzgzIDAgNC40MDYyNXoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjM3NSAxNSkiLz48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTguMzc1IDE1KSIvPjwvZz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Im01LjM0Mzc1IDk5LjA5Mzc1LTQuNDM3NS00LjQzNzUgNDQuNjg3NS00NC42NTYyNS00NC42ODc1LTQ0LjY1NjI1IDQuNDM3NS00LjQzNzUgNDYuODc1IDQ2Ljg3NWMxLjIxMTYzNjIgMS4yMTg4NjcgMS4yMTE2MzYyIDMuMTg3MzgzIDAgNC40MDYyNXoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjM3NSAxNSkiLz48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTguMzc1IDE1KSIvPjwvZz48L3N2Zz4=);
    -webkit-mask-size: contain;
    mask-size: contain;
    padding: 7px;
    transition: transform .15s linear;
    width: 26px
}

@media(min-width:960px) {
    .coblocks-lightbox__close {
        height: 32px;
        width: 32px
    }
}

.coblocks-lightbox__close:focus,
.coblocks-lightbox__close:hover {
    background-color: #fff;
    transform: scale(1.125)
}

.coblocks-lightbox__caption {
    color: #fff;
    margin-top: 10px;
    text-align: center
}

.has-lightbox figure[class^=align]:hover,
.has-lightbox>:not(.carousel-nav) figure:hover,
figure.has-lightbox:hover {
    cursor: zoom-in
}

figure.has-lightbox.masonry-grid {
    cursor: default
}

figure.has-lightbox.masonry-grid figure.masonry-brick:hover {
    cursor: zoom-in
}

.is-twentynineteen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 46px;
    margin-top: 46px
}

.is-twentynineteen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--caption {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: .71111em;
    line-height: 1.6;
    margin: 0 0 -20px;
    padding: .5rem;
    text-align: center
}

.is-twentynineteen .wp-block-coblocks-gallery-stacked figcaption:not([class*=font-size]) {
    font-size: .71111em
}

.is-twentyseventeen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 1.75em;
    margin-top: 1.65em
}

.is-twentyseventeen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    font-style: italic;
    margin-bottom: -10px;
    margin-top: 1em
}

.is-twentyseventeen .entry-content div[class*=wp-block-coblocks-gallery]:not([class*=masonry]) .coblocks-gallery:not(.has-caption-color) figcaption {
    color: #1e1e1e
}

.is-twentyseventeen .wp-block-coblocks-gallery-masonry figcaption {
    padding-bottom: 6px
}

.is-twentysixteen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 2.3em;
    margin-top: 2.3em
}

.is-twentysixteen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -10px;
    margin-top: .6em
}

.is-twentysixteen .wp-block-coblocks-gallery-masonry figcaption {
    padding-bottom: 6px
}

.is-twentyfifteen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 2.2em;
    margin-top: 2.2em
}

.is-twentyfifteen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -15px;
    margin-top: .5em;
    padding-bottom: 0
}

.is-twentyfifteen .wp-block-coblocks-gallery-masonry figcaption {
    font-size: 13px !important
}

.is-twentyfourteen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 30px;
    margin-top: 30px
}

.is-twentyfourteen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -7px;
    text-align: left
}

.is-twentythirteen .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 30px;
    margin-top: 34px
}

.is-twentythirteen .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -10px
}

.is-twentythirteen .wp-block-coblocks-gallery-masonry figcaption {
    font-size: 13px !important
}

.is-twentytwelve .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 32px;
    margin-top: 32px
}

.is-twentytwelve .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery:not([class*=border-radius]) img {
    border-radius: inherit
}

.is-twentytwelve .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -10px
}

.is-twentytwelve .wp-block-coblocks-gallery-masonry figcaption {
    padding-bottom: 6px
}

.is-twentyeleven .entry-content div[class*=wp-block-coblocks-gallery] {
    margin-bottom: 32px;
    margin-top: 33px
}

.is-twentyeleven .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery img {
    border: 0;
    max-width: 100%;
    padding: 0
}

.is-twentyeleven .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption {
    margin-bottom: -15px
}

.is-twentyeleven .entry-content div[class*=wp-block-coblocks-gallery] .coblocks-gallery--primary-caption:before {
    color: #666;
    content: "—";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    left: 10px;
    margin-right: 5px;
    position: absolute;
    top: 0
}

.is-twentyeleven .wp-block-coblocks-gallery-stacked figcaption {
    padding-left: 1em !important;
    padding-right: 1em !important;
    text-align: center !important
}

.is-twentyeleven .wp-block-coblocks-gallery-stacked figcaption:before {
    display: none;
    padding-left: 0
}

.has-filter-grayscale img {
    filter: grayscale(1)
}

.has-filter-saturation img {
    filter: saturate(1.75)
}

.has-filter-sepia img {
    filter: sepia(.5)
}

.has-filter-dim img {
    filter: brightness(.5)
}

.has-filter-vintage img {
    filter: contrast(1.3) saturate(1.5) sepia(.6)
}

.coblocks-option-selector-control .components-button-group .components-button {
    justify-content: center;
    min-width: 38px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle
}

.coblocks-option-selector-control.is-custom {
    margin-bottom: 14px
}

.components-button-group .components-button.is-primary {
    box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color)
}

.coblocks-swiper-container {
    height: 100%;
    position: relative;
    width: 100%
}

.no-autoplay {
    transition: none !important
}

.swiper-container,
.swiper-wrapper {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%
}

.swiper-plugin-pagination {
    height: auto;
    width: auto
}

.swiper-container {
    overflow: hidden
}

.swiper-container-thumbnails {
    height: 80px;
    overflow: hidden;
    position: relative
}

.swiper-wrapper-thumbnails {
    transform: none !important;
    transition: none !important
}

.coblocks-gallery--caption {
    bottom: 0 !important;
    position: absolute !important;
    width: 100% !important
}

.swiper-slide {
    flex-direction: row;
    width: 100%
}

.swiper-slide,
.swiper-slide-thumbnail {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    font-size: 18px;
    justify-content: center
}

.swiper-slide-thumbnail {
    height: 80px;
    position: relative;
    width: 100px
}

.nav-button__next,
.nav-button__prev {
    background-color: var(--wp-admin-theme-color, #007cba);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    height: 62px;
    margin: 0 1%;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px
}

.nav-button__next .icon,
.nav-button__prev .icon {
    background-color: #fff;
    height: 32px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    width: 32px
}

.nav-button__prev {
    left: 0
}

.nav-button__next {
    right: 0
}

.no-navigation {
    display: none
}

.drag-container {
    height: auto;
    width: auto
}

.swiper-block {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 999999
}

.no-drag,
.swiper-block {
    pointer-events: none !important;
    touch-action: none !important
}

.no-drag {
    -webkit-user-select: none !important;
    user-select: none !important
}

[class*=wp-block-].mt-0>.has-margin {
    margin-top: 0 !important
}

[class*=wp-block-].mb-0>.has-margin {
    margin-bottom: 0 !important
}

[class*=wp-block].mt-0 {
    margin-top: 0 !important
}

[class*=wp-block].mb-0 {
    margin-bottom: 0 !important
}

.mt-0 {
    margin-top: 0
}

.pt-0 {
    padding-top: 0
}

.coblocks-block-patterns__modal .components-modal__header-heading {
    align-items: center;
    display: flex
}

.coblocks-block-patterns__modal .components-base-control__field {
    margin-bottom: 16px
}

.coblocks-block-patterns__preview {
    border: 1px solid #1e1e1e;
    border-radius: 2px;
    margin-bottom: 24px;
    padding: 9px
}

.wp-block-button.w-100,
.wp-block-button.w-100 .wp-block-button__link {
    width: 100%
}

.coblocks-settings-modal .components-base-control__help {
    color: #757575;
    display: block;
    font-style: normal;
    padding-left: 36px;
    padding-top: 2px
}

@media(min-width:600px) {
    .coblocks-settings-modal .components-base-control__help {
        padding-left: 32px
    }
}

.edit-post-sidebar .components-panel__body.is-opened~.coblocks-lightbox-controls {
    display: flex;
    margin-top: -8px;
    padding-left: 16px;
    padding-right: 16px
}

.components-panel__row.coblocks-lightbox-controls {
    display: flex;
    margin-top: 0;
    padding-left: 16px;
    padding-right: 16px
}

ul.has-custom-font li {
    font-family: inherit
}

.has-custom-font.wp-block-button .wp-block-button__link,
.has-custom-font.wp-block-cover p,
blockquote.has-custom-font cite,
blockquote.has-custom-font p {
    font-family: inherit !important
}

.has-custom-font.wp-block-coblocks-click-to-tweet .wp-block-coblocks-click-to-tweet__text,
.has-custom-font.wp-block-coblocks-pricing-table .wp-block-coblocks-pricing-table__inner .wp-block-coblocks-pricing-table-item__amount,
.has-custom-font.wp-block-coblocks-pricing-table .wp-block-coblocks-pricing-table__inner .wp-block-coblocks-pricing-table-item__title {
    font-family: inherit
}

.wp-block-button.has-custom-lineheight .wp-block-button__link {
    line-height: inherit
}

.wp-block-button.has-custom-size .wp-block-button__link {
    font-size: inherit
}

ul.has-custom-lineheight li {
    line-height: inherit
}

ul.has-custom-size li {
    font-size: inherit
}

.has-custom-transform.wp-block-coblocks-click-to-tweet .wp-block-coblocks-click-to-tweet__twitter-btn {
    text-transform: none
}

.editor-styles-wrapper .wp-block-quote[style*=color] cite,
.editor-styles-wrapper .wp-block-quote[style*=color] p,
.editor-styles-wrapper .wp-block-quote[style*=color]>div>p,
.wp-block-quote[style*=color] cite,
.wp-block-quote[style*=color] p,
.wp-block-quote[style*=color]>div>p {
    color: inherit
}

.wp-block-coblocks-accordion-item {
    border-radius: 4px;
    margin: 0 0 1em
}

.wp-block-coblocks-accordion-item p:first-of-type {
    margin-top: 0
}

.wp-block-coblocks-accordion-item p:last-of-type {
    margin-bottom: 0
}

.wp-block-coblocks-accordion-item__title,
.wp-block-coblocks-accordion-item__title.has-background {
    border-radius: 4px;
    padding: 10px 15px;
    position: relative
}

.wp-block-coblocks-accordion-item__title.has-background:after,
.wp-block-coblocks-accordion-item__title:after {
    border-radius: 4px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background .1s cubic-bezier(.694, 0, .335, 1)
}

.wp-block-coblocks-accordion-item__title.has-background:not(.has-background),
.wp-block-coblocks-accordion-item__title:not(.has-background) {
    background: #8c8c971a
}

.wp-block-coblocks-accordion-item__title.has-background:hover:after,
.wp-block-coblocks-accordion-item__title:hover:after {
    background: rgba(0, 0, 0, .028)
}

.wp-block-coblocks-accordion-item__title.has-background:focus,
.wp-block-coblocks-accordion-item__title:focus {
    outline: 1px dotted;
    outline-offset: -4px
}

.wp-block-coblocks-accordion-item details[open] summary {
    border-radius: 4px 4px 0 0
}

.wp-block-coblocks-accordion-item__content {
    border: 1px solid #8c8c971a;
    border-radius: 0 0 4px 4px;
    border-top: 0;
    padding: 15px 20px
}

.wp-block-coblocks-accordion-item__content>div {
    max-width: 100%
}

.wp-block-coblocks-accordion-item .alignfull img {
    max-width: 100% !important
}

.wp-block-coblocks-accordion.alignfull {
    padding: 0 12px
}

:root .wp-block-coblocks-accordion summary,
_:-ms-fullscreen {
    display: block
}

.wp-block-coblocks-accordion summary,
_:-ms-lang(x),
_:-webkit-full-screen {
    display: block
}

.wp-block-coblocks-alert {
    background-color: var(--coblocks-alert-default--color--background, #d6efee);
    border-radius: 4px;
    color: var(--coblocks-alert-default--color--text, #094264);
    padding: 2em
}

.wp-block-coblocks-alert:not(.has-background).is-style-warning {
    background-color: var(--coblocks-alert-default--color--background, #fbe7dd)
}

.wp-block-coblocks-alert:not(.has-background).is-style-error {
    background-color: var(--coblocks-alert-default--color--background, #ffdede)
}

.wp-block-coblocks-alert:not(.has-background).is-style-success {
    background-color: var(--coblocks-alert-default--color--background, #d0eac4)
}

.wp-block-coblocks-alert:not(.has-text-color).is-style-warning {
    color: var(--coblocks-alert-warning--color--text, #8a4b30)
}

.wp-block-coblocks-alert:not(.has-text-color).is-style-error {
    color: var(--coblocks-alert-error--color--text, #8b343c)
}

.wp-block-coblocks-alert:not(.has-text-color).is-style-success {
    color: var(--coblocks-alert-error--color--text, #154a28)
}

.wp-block-coblocks-alert__title {
    display: block;
    margin-bottom: .5em;
    margin-top: 0
}

.wp-block-coblocks-alert__title:empty {
    display: none
}

.wp-block-coblocks-alert__text {
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-coblocks-author {
    align-items: flex-start;
    background: #8b8b961a;
    display: flex;
    padding: 30px 25px;
    position: relative
}

@media(min-width:600px) {
    .wp-block-coblocks-author {
        padding: 40px 35px
    }
}

.wp-block-coblocks-author figure.wp-block-coblocks-author__avatar,
.wp-block-coblocks-author__avatar {
    border-radius: 100%;
    flex: 0 0 auto;
    height: 70px;
    margin: 0 25px 0 0;
    position: relative;
    width: 70px
}

@media(min-width:600px) {

    .wp-block-coblocks-author figure.wp-block-coblocks-author__avatar,
    .wp-block-coblocks-author__avatar {
        height: 150px;
        margin-right: 35px;
        width: 150px
    }
}

.wp-block-coblocks-author__avatar-img {
    border-radius: 100%;
    display: inline-block;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

.wp-block-coblocks-author__content {
    flex: 1 1 auto
}

.wp-block-coblocks-author__content>.wp-block-coblocks-author__name {
    display: block;
    font-size: 1.5em;
    margin: 0;
    padding: 0
}

.wp-block-coblocks-author__content>.wp-block-coblocks-author__biography {
    font-size: inherit;
    margin: 0 0 1em
}

.wp-block-coblocks-author__content>.wp-block-coblocks-author__biography:last-of-type {
    margin-bottom: 0
}

.wp-block-coblocks-author .wp-block-button {
    margin: 1em 0 0
}

.wp-block-coblocks-author[class*=-color] span,
.wp-block-coblocks-author[style*=color] span {
    color: inherit
}

.wp-block-coblocks-buttons__inner {
    align-items: center;
    display: flex;
    justify-content: center
}

.wp-block-coblocks-buttons .flex-align-left {
    align-items: flex-start;
    justify-content: flex-start
}

.wp-block-coblocks-buttons .flex-align-right {
    align-items: flex-end;
    justify-content: flex-end
}

.wp-block-coblocks-buttons .wp-block-button {
    margin-bottom: 0
}

.wp-block-coblocks-buttons .wp-block-button+.wp-block-button {
    margin-left: 1.35em
}

@media(max-width:600px) {
    .wp-block-coblocks-buttons .is-stacked-on-mobile {
        display: block
    }

    .wp-block-coblocks-buttons .is-stacked-on-mobile .wp-block-button+.wp-block-button {
        margin-left: 0;
        margin-top: 1.35em
    }
}

.wp-block-coblocks-click-to-tweet {
    border: 1px solid #0000;
    border-radius: 4px;
    padding-bottom: var(--coblocks-spacing--4);
    padding-top: var(--coblocks-spacing--3);
    position: relative
}

.wp-block-coblocks-click-to-tweet:after,
.wp-block-coblocks-click-to-tweet:before {
    content: none
}

.wp-block-coblocks-click-to-tweet__text {
    margin-bottom: 0;
    padding-left: 40px;
    padding-top: 0;
    position: relative
}

.wp-block-coblocks-click-to-tweet__text:before {
    background-color: currentColor;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 24px;
    left: 0;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
    opacity: .3;
    position: absolute;
    top: 5px;
    width: 24px
}

.wp-block-coblocks-click-to-tweet__text:after {
    content: none
}

.wp-block-coblocks-click-to-tweet__text a,
.wp-block-coblocks-click-to-tweet__twitter-btn {
    box-shadow: none !important;
    text-decoration: none !important
}

.wp-block-coblocks-click-to-tweet__twitter-btn {
    appearance: none;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-left: 40px;
    margin-top: 10px;
    padding: .28em 1em;
    position: relative;
    white-space: normal;
    word-break: break-all
}

.wp-block-coblocks-click-to-tweet__twitter-btn:not(.has-button-color) {
    background: var(--coblocks--color--twitter, #1da1f2)
}

.wp-block-coblocks-click-to-tweet__twitter-btn:before {
    background-color: #fff;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
    position: relative;
    top: 4px;
    width: 18px
}

.block-editor-block-patterns-list__list-item .block-editor-block-preview__container .wp-block-coblocks-icon .components-resizable-box__container {
    padding: 10px !important
}

.wp-block-coblocks-dynamic-separator {
    background: none;
    border: 0;
    max-width: 100% !important;
    opacity: 1;
    padding: 0;
    position: relative;
    width: 100%
}

.wp-block-coblocks-dynamic-separator:before {
    content: "...";
    display: inline-block;
    font-size: 22px;
    font-weight: 400;
    left: 0;
    letter-spacing: .95em;
    line-height: 1;
    margin-left: 21px;
    margin-right: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: calc(50% - 18px)
}

.wp-block-coblocks-dynamic-separator.is-style-fullwidth:before,
.wp-block-coblocks-dynamic-separator.is-style-line:before {
    background: currentColor;
    content: "";
    display: block;
    height: 1px;
    margin-left: auto;
    max-width: 120px;
    top: 50%;
    width: 15vw
}

.wp-block-coblocks-dynamic-separator.is-style-fullwidth:before {
    max-width: 100%;
    width: 100%
}

.wp-block-coblocks-dynamic-separator:not(.has-background):before {
    color: #292929
}

.wp-block-coblocks-dynamic-separator.is-style-fullwidth:not(.has-background):before,
.wp-block-coblocks-dynamic-separator.is-style-line:not(.has-background):before {
    background: #00000026
}

.is-twentytwenty .entry-content hr.wp-block-coblocks-dynamic-separator:before {
    background: none;
    content: "...";
    left: 0;
    top: calc(50% - 18px);
    transform: none;
    width: auto
}

.is-twentytwenty .entry-content hr.wp-block-coblocks-dynamic-separator:after {
    display: none
}

.is-twentytwenty .entry-content hr.wp-block-coblocks-dynamic-separator.is-style-fullwidth:before,
.is-twentytwenty .entry-content hr.wp-block-coblocks-dynamic-separator.is-style-line:before {
    background: currentColor;
    content: "";
    display: block;
    height: 1px;
    margin-left: auto;
    max-width: 120px;
    top: 50%;
    width: 15vw
}

.is-twentytwenty .entry-content hr.wp-block-coblocks-dynamic-separator.is-style-fullwidth:before {
    max-width: 100%;
    width: 100%
}

.is-twentytwenty .wp-block-coblocks-dynamic-separator.is-style-fullwidth:not(.has-background):before,
.is-twentytwenty .wp-block-coblocks-dynamic-separator.is-style-line:not(.has-background):before {
    background: #6d6d6d
}

.wp-block-coblocks-event-item {
    justify-content: space-between;
    line-height: 1;
    margin-bottom: var(--coblocks-spacing--5, 2.5em);
    width: 100%
}

@media(min-width:782px) {
    .wp-block-coblocks-event-item {
        display: flex !important;
        margin-bottom: var(--coblocks-spacing--3, 1.5em)
    }
}

[data-type="coblocks/event-item"] {
    width: 100%
}

.wp-block-coblocks-events__date {
    margin-bottom: var(--coblocks-spacing--3, 1.5em)
}

@media(min-width:782px) {
    .wp-block-coblocks-events__date {
        flex-basis: 25%;
        margin-bottom: 0
    }
}

.wp-block-coblocks-events__content {
    margin-bottom: var(--coblocks-spacing--3, 1.5em)
}

@media(min-width:782px) {
    .wp-block-coblocks-events__content {
        flex-basis: 65%;
        margin-bottom: 0;
        padding: 0 1em
    }
}

.wp-block-coblocks-events__description,
.wp-block-coblocks-events__time,
.wp-block-coblocks-events__title {
    display: block
}

@media(min-width:782px) {
    .wp-block-coblocks-events__details {
        flex-basis: 20%;
        text-align: right
    }
}

.wp-block-coblocks-events__title {
    font-weight: 700;
    margin-bottom: var(--coblocks-spacing--1, .5em)
}

.wp-block-coblocks-events__day {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 1.75em;
    font-weight: 700;
    justify-content: space-between
}

.wp-block-coblocks-events__day>p {
    margin-bottom: 0
}

.wp-block-coblocks-events__month {
    margin-right: 5px;
    margin-top: var(--coblocks-spacing--1, .5em)
}

@media(min-width:782px) {
    .wp-block-coblocks-events__month {
        display: block;
        margin-bottom: 5px;
        margin-right: 0
    }
}

.wp-block-coblocks-events__time {
    font-weight: 700;
    margin-bottom: var(--coblocks-spacing--1, .5em)
}

.wp-block-coblocks-events__description,
.wp-block-coblocks-events__location,
.wp-block-coblocks-events__month,
.wp-block-coblocks-events__time,
.wp-block-coblocks-events__year {
    font-size: .75em
}

.wp-block-coblocks-events__description {
    line-height: 1.476
}

.wp-block-coblocks-events-front-container {
    padding-bottom: 25px;
    position: relative
}

.wp-block-coblocks-front-events-swiper-container {
    overflow: hidden
}

.wp-block-coblocks-events.slick-slider {
    box-sizing: border-box;
    display: block;
    padding-bottom: 4em;
    position: relative;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none
}

.wp-block-coblocks-events .slick-list {
    display: block;
    margin: 0 -2em;
    overflow: hidden;
    padding: 0;
    position: relative
}

.wp-block-coblocks-events .slick-list:focus {
    outline: none
}

.wp-block-coblocks-events .slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.wp-block-coblocks-events.slick-slider .slick-list,
.wp-block-coblocks-events.slick-slider .slick-track {
    transform: translateZ(0)
}

.wp-block-coblocks-events .slick-track {
    display: flex;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0
}

.wp-block-coblocks-events .slick-track:after,
.wp-block-coblocks-events .slick-track:before {
    content: "";
    display: table
}

.wp-block-coblocks-events .slick-track:after {
    clear: both
}

.wp-block-coblocks-events .slick-loading .slick-track {
    visibility: hidden
}

.wp-block-coblocks-events .slick-slide {
    float: left;
    height: auto;
    margin: 0 2em;
    min-height: 1px;
    outline: none
}

.wp-block-coblocks-events [dir=rtl] .slick-slide {
    float: right
}

.wp-block-coblocks-events .slick-slide img {
    display: block
}

.wp-block-coblocks-events .slick-slide.slick-loading img {
    display: none
}

.wp-block-coblocks-events .slick-slide.dragging img {
    pointer-events: none
}

.wp-block-coblocks-events .slick-initialized .slick-slide {
    display: block
}

.wp-block-coblocks-events .slick-loading .slick-slide {
    visibility: hidden
}

.wp-block-coblocks-events .slick-vertical .slick-slide {
    border: 1px solid #0000;
    display: block;
    height: auto
}

.wp-block-coblocks-events .slick-arrow.slick-hidden {
    display: none
}

.wp-block-coblocks-events .arrows {
    text-align: center
}

.wp-block-coblocks-events .slick-next,
.wp-block-coblocks-events .slick-prev {
    background: #0000;
    border: none;
    bottom: 0;
    color: #0000;
    cursor: pointer;
    display: inline-block;
    font-size: medium;
    height: 4em;
    line-height: 0;
    outline: none;
    padding: .5em;
    position: absolute;
    width: 4em;
    z-index: 1
}

.wp-block-coblocks-events .slick-next:focus,
.wp-block-coblocks-events .slick-next:hover,
.wp-block-coblocks-events .slick-prev:focus,
.wp-block-coblocks-events .slick-prev:hover {
    cursor: pointer;
    opacity: .5;
    outline: none
}

.wp-block-coblocks-events .slick-next:focus:before,
.wp-block-coblocks-events .slick-next:hover:before,
.wp-block-coblocks-events .slick-prev:focus:before,
.wp-block-coblocks-events .slick-prev:hover:before {
    opacity: 1
}

.wp-block-coblocks-events .slick-prev {
    left: 50%;
    transform: translateX(-100%)
}

.wp-block-coblocks-events .slick-next {
    right: 50%;
    transform: translateX(100%)
}

.wp-block-coblocks-events .slick-next.slick-disabled:before,
.wp-block-coblocks-events .slick-prev.slick-disabled:before {
    opacity: .25
}

.wp-block-coblocks-events .slick-next:before,
.wp-block-coblocks-events .slick-prev:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+);
    background-position: 50%;
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 100%;
    width: 100%
}

.wp-block-coblocks-events .slick-next:before,
.wp-block-coblocks-events [dir=rtl] .slick-prev:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=)
}

.wp-block-coblocks-events [dir=rtl] .slick-next:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+)
}

.wp-coblocks-events-nav-button__next,
.wp-coblocks-events-nav-button__prev {
    background-color: #0000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    height: 62px;
    margin: 0 1%;
    padding: 15px;
    position: absolute;
    top: 50%;
    width: 62px
}

.wp-coblocks-events-nav-button__prev {
    left: -5em;
    transform: rotate(180deg)
}

.wp-coblocks-events-nav-button__next {
    right: -5em
}

.wp-block-coblocks-faq-item {
    border-bottom: 1px solid #8c8c971a;
    margin: 0;
    padding: 1rem 0
}

.wp-block-coblocks-faq-item__question {
    font-weight: 600;
    list-style: none;
    position: relative
}

.wp-block-coblocks-faq-item__question:hover {
    cursor: pointer
}

.wp-block-coblocks-faq-item__question__content {
    padding-right: 2em
}

.wp-block-coblocks-faq-item__question__icon {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 3px;
    transform: scaleY(-1);
    transition: transform .2s
}

.wp-block-coblocks-faq-item__answer {
    margin-bottom: 0;
    margin-left: 0;
    padding-top: .25rem
}

.wp-block-coblocks-faq-item[open] .wp-block-coblocks-faq-item__question__icon {
    transform: scaleY(1)
}

.wp-block-coblocks-faq__title {
    margin-bottom: .5rem !important
}

.wp-block-coblocks-faq__heading {
    margin: 1.25rem 0 0 !important
}

.wp-block-coblocks-faq summary::-webkit-details-marker {
    display: none
}

.wp-block-coblocks-features {
    position: relative
}

.wp-block-coblocks-features .has-left-content {
    text-align: left
}

.wp-block-coblocks-features .has-left-content img {
    margin-left: 0;
    margin-right: auto
}

.wp-block-coblocks-features .has-center-content {
    text-align: center
}

.wp-block-coblocks-features .has-center-content img {
    margin-left: auto;
    margin-right: auto
}

.wp-block-coblocks-features .has-right-content {
    text-align: right
}

.wp-block-coblocks-features .has-right-content img {
    margin-left: auto;
    margin-right: 0
}

.wp-block-coblocks-features__inner {
    position: relative
}

.wp-block-coblocks-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    max-width: 100%;
    position: relative;
    width: 100%;
    word-break: break-word
}

.wp-block-coblocks-feature .wp-block-coblocks-icon {
    margin-bottom: var(--coblocks-spacing--3, 1.5em)
}

.wp-block-coblocks-feature h1,
.wp-block-coblocks-feature h2,
.wp-block-coblocks-feature h3,
.wp-block-coblocks-feature h4,
.wp-block-coblocks-feature h5,
.wp-block-coblocks-feature h6 {
    margin-top: 0 !important;
    padding: 0 !important
}

.wp-block-coblocks-feature p {
    margin-top: 0
}

.wp-block-coblocks-feature p:not(.has-background) {
    padding-top: 0
}

.wp-block-coblocks-feature__inner>* {
    position: relative
}

.wp-block-coblocks-feature__inner>:last-child {
    margin-bottom: 0 !important
}

@media(min-width:600px) {
    .wp-block-coblocks-features__inner:not(.has-responsive-columns) {
        align-items: flex-start;
        display: flex
    }

    .wp-block-coblocks-features__inner[class*=gutter]:not(.has-responsive-columns) .wp-block-coblocks-feature:nth-child(odd) {
        margin-right: var(--coblocks-spacing--3, 1.5em)
    }

    .wp-block-coblocks-features__inner[class*=gutter]:not(.has-responsive-columns) .wp-block-coblocks-feature:not(:first-child),
    .wp-block-coblocks-features__inner[class*=gutter]:not(.has-responsive-columns) .wp-block-coblocks-feature:nth-child(2n) {
        margin-left: var(--coblocks-spacing--3, 1.5em)
    }

    .wp-block-coblocks-features__inner[class*=gutter]:not(.has-responsive-columns) .wp-block-coblocks-feature:not(:last-child) {
        margin-right: var(--coblocks-spacing--3, 1.5em)
    }
}

.wp-block-coblocks-features__inner[class*=gutter]:not(.has-responsive-columns).has-1-columns .wp-block-coblocks-feature {
    margin-left: 0;
    margin-right: 0
}

.wp-block-coblocks-food-item {
    margin-top: 2.75em
}

.wp-block-coblocks-food-item__figure {
    display: flex;
    margin: .35em 0 1.25em;
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    width: 100%
}

.wp-block-coblocks-food-item__figure img,
.wp-block-coblocks-food-item__figure img[itemprop=image] {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {

    .wp-block-coblocks-food-item__figure img,
    .wp-block-coblocks-food-item__figure img[itemprop=image] {
        height: auto;
        left: 50%;
        min-width: 100%;
        top: 50%;
        transform: translate(-50%, -50%)
    }
}

.wp-block-coblocks-food-item__heading-wrapper {
    align-items: center;
    display: flex;
    flex: 1 85%;
    margin: 0 0 .25em;
    order: 1
}

.wp-block-coblocks-food-item__heading,
.wp-block-coblocks-food-item__heading[itemprop=name] {
    margin: 0;
    padding: 0
}

.wp-block-coblocks-food-item__content {
    align-content: flex-start;
    display: flex;
    flex: 1 100%;
    flex-wrap: wrap
}

.wp-block-coblocks-food-item__attributes {
    display: flex;
    margin-left: .4em
}

.wp-block-coblocks-food-item__attributes svg {
    fill: currentColor;
    height: 18px;
    width: 18px
}

.wp-block-coblocks-food-item__attributes svg:last-of-type {
    margin-right: 0
}

.wp-block-coblocks-food-item__attribute {
    background: none;
    border: none;
    display: flex;
    margin-right: .25em !important;
    padding: 0
}

.wp-block-coblocks-food-item__attribute--spicier {
    margin-left: -.25em !important
}

.wp-block-coblocks-food-item__description {
    flex: 1 100%;
    margin: 0;
    order: 3
}

.wp-block-coblocks-food-item__price {
    flex: 1 15%;
    margin: .5em 0 0;
    opacity: .7;
    order: 2
}

.wp-block-coblocks-food-item__icon {
    background-color: currentColor;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    height: 18px;
    width: 18px
}

.wp-block-coblocks-food-item__attribute--popular .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZD0ibTkgMTQuMTQzIDUuNTYyIDMuMzU3LTEuNDc2LTYuMzI3IDQuOTE0LTQuMjU3LTYuNDcxLS41NDktMi41MjktNS45NjctMi41MjkgNS45NjctNi40NzEuNTQ5IDQuOTE0IDQuMjU3LTEuNDc2IDYuMzI3eiIgZmlsbFJ1bGU9ImV2ZW5vZGQiIC8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZD0ibTkgMTQuMTQzIDUuNTYyIDMuMzU3LTEuNDc2LTYuMzI3IDQuOTE0LTQuMjU3LTYuNDcxLS41NDktMi41MjktNS45NjctMi41MjkgNS45NjctNi40NzEuNTQ5IDQuOTE0IDQuMjU3LTEuNDc2IDYuMzI3eiIgZmlsbFJ1bGU9ImV2ZW5vZGQiIC8+PC9zdmc+)
}

.wp-block-coblocks-food-item__attribute--popular .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--popular .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZD0ibTkgMTQuMTQzIDUuNTYyIDMuMzU3LTEuNDc2LTYuMzI3IDQuOTE0LTQuMjU3LTYuNDcxLS41NDktMi41MjktNS45NjctMi41MjkgNS45NjctNi40NzEuNTQ5IDQuOTE0IDQuMjU3LTEuNDc2IDYuMzI3eiIgZmlsbFJ1bGU9ImV2ZW5vZGQiIC8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-item__attribute--spicy .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguOTI5IDExLjgxNUM3Ljc4IDEzLjA2MiA3LjEzMiAxNS4xMjQgNi45ODQgMTggNC4xODYgMTcuMjIzIDIuNSAxNC43OSAyLjUgMTEuOTYzIDIuNSA3LjIgNi4xMDkgNi4xNjYgNS42OSAwYy43ODguMDE0IDMuOTY5IDEuOTQgNC41NjIgNi41MTEuNjIyLS42NS45NC0yLjgwNC44Mi0zLjY4NSAyLjgyMiAyLjI2IDQuMjg1IDUuMTYgNC4yODUgOC4zOTUgMCAzLjIwMy0xLjY3MyA1LjkxOS00LjQ4NCA2Ljc2NS0uMTUtMi44NjktLjc5OC00LjkyNi0xLjk0NC02LjE3MXoiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguOTI5IDExLjgxNUM3Ljc4IDEzLjA2MiA3LjEzMiAxNS4xMjQgNi45ODQgMTggNC4xODYgMTcuMjIzIDIuNSAxNC43OSAyLjUgMTEuOTYzIDIuNSA3LjIgNi4xMDkgNi4xNjYgNS42OSAwYy43ODguMDE0IDMuOTY5IDEuOTQgNC41NjIgNi41MTEuNjIyLS42NS45NC0yLjgwNC44Mi0zLjY4NSAyLjgyMiAyLjI2IDQuMjg1IDUuMTYgNC4yODUgOC4zOTUgMCAzLjIwMy0xLjY3MyA1LjkxOS00LjQ4NCA2Ljc2NS0uMTUtMi44NjktLjc5OC00LjkyNi0xLjk0NC02LjE3MXoiLz48L3N2Zz4=)
}

.wp-block-coblocks-food-item__attribute--spicy .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--spicy .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTguOTI5IDExLjgxNUM3Ljc4IDEzLjA2MiA3LjEzMiAxNS4xMjQgNi45ODQgMTggNC4xODYgMTcuMjIzIDIuNSAxNC43OSAyLjUgMTEuOTYzIDIuNSA3LjIgNi4xMDkgNi4xNjYgNS42OSAwYy43ODguMDE0IDMuOTY5IDEuOTQgNC41NjIgNi41MTEuNjIyLS42NS45NC0yLjgwNC44Mi0zLjY4NSAyLjgyMiAyLjI2IDQuMjg1IDUuMTYgNC4yODUgOC4zOTUgMCAzLjIwMy0xLjY3MyA1LjkxOS00LjQ4NCA2Ljc2NS0uMTUtMi44NjktLjc5OC00LjkyNi0xLjk0NC02LjE3MXoiLz48L3N2Zz4=);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-item__attribute--vegan .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjQ1LjQzMWMtLjEzMS0uNDEyLS42OTQtLjQ2OC0uOTE5LS4wOTNDMTIuNzg3IDMuNTI0IDguOTgxIDQuNSA5LjQ3IDcuMmMuMTEyLjU4MS40NSAxLjA2OS45MzcgMS40NDRhMTEuMjcyIDExLjI3MiAwIDAxMi41MTMtMy4wMzhsLTQuNzQ0IDkuODA3TDMuMDM3IDQuODE5YS43NzYuNzc2IDAgMDAtMS4wMTItLjM1Ni43NzYuNzc2IDAgMDAtLjM1NiAxLjAxMmw1LjgxMiAxMmMuMTMxLjI2My4zOTQuNDMxLjY3NS40MzFzLjU2My0uMTY4LjY3NS0uNDMxbDMuODgxLTcuOTg3YzEuMTI1LjA5MyAyLjI3LS4yMDcgMi45NDQtLjk5NCAxLjM2OS0xLjYxMy41ODEtNS43MzgtLjIwNi04LjA2M3oiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjQ1LjQzMWMtLjEzMS0uNDEyLS42OTQtLjQ2OC0uOTE5LS4wOTNDMTIuNzg3IDMuNTI0IDguOTgxIDQuNSA5LjQ3IDcuMmMuMTEyLjU4MS40NSAxLjA2OS45MzcgMS40NDRhMTEuMjcyIDExLjI3MiAwIDAxMi41MTMtMy4wMzhsLTQuNzQ0IDkuODA3TDMuMDM3IDQuODE5YS43NzYuNzc2IDAgMDAtMS4wMTItLjM1Ni43NzYuNzc2IDAgMDAtLjM1NiAxLjAxMmw1LjgxMiAxMmMuMTMxLjI2My4zOTQuNDMxLjY3NS40MzFzLjU2My0uMTY4LjY3NS0uNDMxbDMuODgxLTcuOTg3YzEuMTI1LjA5MyAyLjI3LS4yMDcgMi45NDQtLjk5NCAxLjM2OS0xLjYxMy41ODEtNS43MzgtLjIwNi04LjA2M3oiLz48L3N2Zz4=)
}

.wp-block-coblocks-food-item__attribute--vegan .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--vegan .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjQ1LjQzMWMtLjEzMS0uNDEyLS42OTQtLjQ2OC0uOTE5LS4wOTNDMTIuNzg3IDMuNTI0IDguOTgxIDQuNSA5LjQ3IDcuMmMuMTEyLjU4MS40NSAxLjA2OS45MzcgMS40NDRhMTEuMjcyIDExLjI3MiAwIDAxMi41MTMtMy4wMzhsLTQuNzQ0IDkuODA3TDMuMDM3IDQuODE5YS43NzYuNzc2IDAgMDAtMS4wMTItLjM1Ni43NzYuNzc2IDAgMDAtLjM1NiAxLjAxMmw1LjgxMiAxMmMuMTMxLjI2My4zOTQuNDMxLjY3NS40MzFzLjU2My0uMTY4LjY3NS0uNDMxbDMuODgxLTcuOTg3YzEuMTI1LjA5MyAyLjI3LS4yMDcgMi45NDQtLjk5NCAxLjM2OS0xLjYxMy41ODEtNS43MzgtLjIwNi04LjA2M3oiLz48L3N2Zz4=);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-item__attribute--vegetarian .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS4yOTUgMTcuODAyYzEuNTIgMS4zNjggMTEuNzEyLTQuNyAxMy4yMi03LjI1NS43MjUtMS4yMjctLjEzLTMuMDI4LTEuNTI4LTQuNDY3IDEuNTktMS4wNTcgMi45ODggMi4yMzMgNC4zMTYgMS41NC42MDQtLjMyMy45OTYtMS4zMTkuNzA0LTEuOTMzLS41MjMtMS4wODYtMi4yNjQtMS4wODYtMy40NC0xLjIxNy44MzQtLjIwMSAyLjgzNy0xLjA1NyAyLjg3Ny0yLjI2NC4wNC0uOTI2LTEuMTM3LTEuOTgyLTIuMDYzLTEuODcxLTEuMjE3LjE0LTEuNjYgMS44OTEtMi4wNzMgMy4wMTgtLjA1LS43MTQtLjItMi4yODQtLjk4Ni0yLjk2OC0xLjA0Ni0uOTE2LTIuMzA0LS4wNS0yLjMzNCAxLjA1Ni0uMDQgMS4zMzkgMi44MzggMi4wODMgMS45MzIgMy42OTMtMS41My0xLjE3Ny0zLjMzLTEuODIxLTQuNDg4LTEuMTQ3LS40OTMuMzEyLTEuMDU2LjkxNi0xLjY0IDEuNy44OTYuOTQ2IDIuMTM0IDIuMDgzIDMuMTEgMi43MzcuMi4xNDEuMjYxLjQyMy4xMS42MjRhLjQ0NC40NDQgMCAwMS0uNjI0LjEyYy0uOTk2LS42NzMtMi4yMTMtMS43OS0zLjExOS0yLjcyNmEyNi45ODUgMjYuOTg1IDAgMDAtMS4zNDggMi4yNDRjLjg1NS44NjUgMS45NDIgMS44NDEgMi44MDcgMi40MjVhLjQ1LjQ1IDAgMDEuMTEuNjIzLjQ1NC40NTQgMCAwMS0uNjMzLjEyMWMtLjg1NS0uNTgzLTEuODcxLTEuNDg5LTIuNzI3LTIuMzM0Qy42OTggMTMuMDMyLS42MSAxNi45OTcuMjk1IDE3Ljh6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS4yOTUgMTcuODAyYzEuNTIgMS4zNjggMTEuNzEyLTQuNyAxMy4yMi03LjI1NS43MjUtMS4yMjctLjEzLTMuMDI4LTEuNTI4LTQuNDY3IDEuNTktMS4wNTcgMi45ODggMi4yMzMgNC4zMTYgMS41NC42MDQtLjMyMy45OTYtMS4zMTkuNzA0LTEuOTMzLS41MjMtMS4wODYtMi4yNjQtMS4wODYtMy40NC0xLjIxNy44MzQtLjIwMSAyLjgzNy0xLjA1NyAyLjg3Ny0yLjI2NC4wNC0uOTI2LTEuMTM3LTEuOTgyLTIuMDYzLTEuODcxLTEuMjE3LjE0LTEuNjYgMS44OTEtMi4wNzMgMy4wMTgtLjA1LS43MTQtLjItMi4yODQtLjk4Ni0yLjk2OC0xLjA0Ni0uOTE2LTIuMzA0LS4wNS0yLjMzNCAxLjA1Ni0uMDQgMS4zMzkgMi44MzggMi4wODMgMS45MzIgMy42OTMtMS41My0xLjE3Ny0zLjMzLTEuODIxLTQuNDg4LTEuMTQ3LS40OTMuMzEyLTEuMDU2LjkxNi0xLjY0IDEuNy44OTYuOTQ2IDIuMTM0IDIuMDgzIDMuMTEgMi43MzcuMi4xNDEuMjYxLjQyMy4xMS42MjRhLjQ0NC40NDQgMCAwMS0uNjI0LjEyYy0uOTk2LS42NzMtMi4yMTMtMS43OS0zLjExOS0yLjcyNmEyNi45ODUgMjYuOTg1IDAgMDAtMS4zNDggMi4yNDRjLjg1NS44NjUgMS45NDIgMS44NDEgMi44MDcgMi40MjVhLjQ1LjQ1IDAgMDEuMTEuNjIzLjQ1NC40NTQgMCAwMS0uNjMzLjEyMWMtLjg1NS0uNTgzLTEuODcxLTEuNDg5LTIuNzI3LTIuMzM0Qy42OTggMTMuMDMyLS42MSAxNi45OTcuMjk1IDE3Ljh6Ii8+PC9zdmc+)
}

.wp-block-coblocks-food-item__attribute--vegetarian .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--vegetarian .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS4yOTUgMTcuODAyYzEuNTIgMS4zNjggMTEuNzEyLTQuNyAxMy4yMi03LjI1NS43MjUtMS4yMjctLjEzLTMuMDI4LTEuNTI4LTQuNDY3IDEuNTktMS4wNTcgMi45ODggMi4yMzMgNC4zMTYgMS41NC42MDQtLjMyMy45OTYtMS4zMTkuNzA0LTEuOTMzLS41MjMtMS4wODYtMi4yNjQtMS4wODYtMy40NC0xLjIxNy44MzQtLjIwMSAyLjgzNy0xLjA1NyAyLjg3Ny0yLjI2NC4wNC0uOTI2LTEuMTM3LTEuOTgyLTIuMDYzLTEuODcxLTEuMjE3LjE0LTEuNjYgMS44OTEtMi4wNzMgMy4wMTgtLjA1LS43MTQtLjItMi4yODQtLjk4Ni0yLjk2OC0xLjA0Ni0uOTE2LTIuMzA0LS4wNS0yLjMzNCAxLjA1Ni0uMDQgMS4zMzkgMi44MzggMi4wODMgMS45MzIgMy42OTMtMS41My0xLjE3Ny0zLjMzLTEuODIxLTQuNDg4LTEuMTQ3LS40OTMuMzEyLTEuMDU2LjkxNi0xLjY0IDEuNy44OTYuOTQ2IDIuMTM0IDIuMDgzIDMuMTEgMi43MzcuMi4xNDEuMjYxLjQyMy4xMS42MjRhLjQ0NC40NDQgMCAwMS0uNjI0LjEyYy0uOTk2LS42NzMtMi4yMTMtMS43OS0zLjExOS0yLjcyNmEyNi45ODUgMjYuOTg1IDAgMDAtMS4zNDggMi4yNDRjLjg1NS44NjUgMS45NDIgMS44NDEgMi44MDcgMi40MjVhLjQ1LjQ1IDAgMDEuMTEuNjIzLjQ1NC40NTQgMCAwMS0uNjMzLjEyMWMtLjg1NS0uNTgzLTEuODcxLTEuNDg5LTIuNzI3LTIuMzM0Qy42OTggMTMuMDMyLS42MSAxNi45OTcuMjk1IDE3Ljh6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-item__attribute--pescatarian .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjgzMyA0LjkwMWMtLjEwNS4wNDktMi4zNDUuOTE3LTMuOTc3IDIuMTIyYTkuNTkyIDkuNTkyIDAgMDAtMi45My0yLjU1NmMtLjgxNy0xLjQ3LjMzNC0yLjc5Ny4zMzQtMi43OTctMi4zNDQtLjY5OS00LjEwMi44OTMtNS4wMjMgMi4wMDItMy40NTMuODY4LTYuMDkgNC44OTUtNi4wOSA1LjY5IDAgLjYyNyAzLjA3NiA1LjQ3NCA2Ljk3IDUuODExLjUyMy42NzUgMS41OSAxLjY0IDIuOTkyIDEuMjMgMCAwLS42Ny0uNzQ3LS4yMy0xLjU5MWE4LjU4IDguNTggMCAwMDQuMTAyLTMuMDM4YzEuNjEyIDEuMTU3IDMuNzQ3IDIgMy44NzIgMi4wNS0uMDQxLS4xNDYtLjk2Mi0zLjMyOC0uOTYyLTQuNDYyLS4wMjEtMS42NjMuOTItNC4zNjQuOTQyLTQuNDZ6TTMuOTk3IDkuMDQ4Yy0uNTQ2IDAtMS0uNDU0LTEtMSAwLS41NDUuNDU0LTEgMS0xczEgLjQ1NSAxIDFjMCAuNTY0LS40NTUgMS0xIDF6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjgzMyA0LjkwMWMtLjEwNS4wNDktMi4zNDUuOTE3LTMuOTc3IDIuMTIyYTkuNTkyIDkuNTkyIDAgMDAtMi45My0yLjU1NmMtLjgxNy0xLjQ3LjMzNC0yLjc5Ny4zMzQtMi43OTctMi4zNDQtLjY5OS00LjEwMi44OTMtNS4wMjMgMi4wMDItMy40NTMuODY4LTYuMDkgNC44OTUtNi4wOSA1LjY5IDAgLjYyNyAzLjA3NiA1LjQ3NCA2Ljk3IDUuODExLjUyMy42NzUgMS41OSAxLjY0IDIuOTkyIDEuMjMgMCAwLS42Ny0uNzQ3LS4yMy0xLjU5MWE4LjU4IDguNTggMCAwMDQuMTAyLTMuMDM4YzEuNjEyIDEuMTU3IDMuNzQ3IDIgMy44NzIgMi4wNS0uMDQxLS4xNDYtLjk2Mi0zLjMyOC0uOTYyLTQuNDYyLS4wMjEtMS42NjMuOTItNC4zNjQuOTQyLTQuNDZ6TTMuOTk3IDkuMDQ4Yy0uNTQ2IDAtMS0uNDU0LTEtMSAwLS41NDUuNDU0LTEgMS0xczEgLjQ1NSAxIDFjMCAuNTY0LS40NTUgMS0xIDF6Ii8+PC9zdmc+)
}

.wp-block-coblocks-food-item__attribute--pescatarian .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--pescatarian .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjgzMyA0LjkwMWMtLjEwNS4wNDktMi4zNDUuOTE3LTMuOTc3IDIuMTIyYTkuNTkyIDkuNTkyIDAgMDAtMi45My0yLjU1NmMtLjgxNy0xLjQ3LjMzNC0yLjc5Ny4zMzQtMi43OTctMi4zNDQtLjY5OS00LjEwMi44OTMtNS4wMjMgMi4wMDItMy40NTMuODY4LTYuMDkgNC44OTUtNi4wOSA1LjY5IDAgLjYyNyAzLjA3NiA1LjQ3NCA2Ljk3IDUuODExLjUyMy42NzUgMS41OSAxLjY0IDIuOTkyIDEuMjMgMCAwLS42Ny0uNzQ3LS4yMy0xLjU5MWE4LjU4IDguNTggMCAwMDQuMTAyLTMuMDM4YzEuNjEyIDEuMTU3IDMuNzQ3IDIgMy44NzIgMi4wNS0uMDQxLS4xNDYtLjk2Mi0zLjMyOC0uOTYyLTQuNDYyLS4wMjEtMS42NjMuOTItNC4zNjQuOTQyLTQuNDZ6TTMuOTk3IDkuMDQ4Yy0uNTQ2IDAtMS0uNDU0LTEtMSAwLS41NDUuNDU0LTEgMS0xczEgLjQ1NSAxIDFjMCAuNTY0LS40NTUgMS0xIDF6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-item__attribute--gluten-free .wp-block-coblocks-food-item__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYuOTk4IDBDMy4xMzkgMCAwIDMuMTQgMCA2Ljk5OHMzLjE0IDYuOTk3IDYuOTk4IDYuOTk3IDYuOTk3LTMuMTM5IDYuOTk3LTYuOTk3UzEwLjg1NiAwIDYuOTk4IDB6bS0uMTY2IDguNzIyYy0uMTc0LjE4Ny0uMzYuMzUzLS42NTguNDk5LS4zLjE0NS0uNjc2LjIxOC0xLjEzMy4yMTgtLjU4IDAtMS4wNjgtLjE4LTEuNDM1LS41NDEtLjM2OC0uMzYtLjU2Ni0uODI5LS41NjYtMS40MDV2LS45OWMwLS41NzQuMTkyLTEuMDQyLjU0NS0xLjQwNC4zNTMtLjM2Mi44MTUtLjU0MyAxLjM3MS0uNTQzLjU3OCAwIDEuMDI1LjE0MSAxLjMzMi40MjIuMzA4LjI4Mi40NjcuNjU4LjQ3MyAxLjExN2wtLjAwNS4wMjZINS44NmMtLjAxNy0uMjc0LS4wOTgtLjQ1OC0uMjQxLS42MDUtLjE0My0uMTQ3LS4zNTMtLjIyMy0uNjMtLjIyM2EuODM4LjgzOCAwIDAwLS42OTUuMzM1Yy0uMTc4LjIyNS0uMjYuNTEzLS4yNi44Njd2Ljk5NmMwIC4zNi4wODUuNjUzLjI3Ljg3OC4xODQuMjI0LjQzLjMzNy43NDIuMzM3LjIyMiAwIC40MDYtLjAyMy41NDEtLjA2OS4xMzUtLjA0NS4yMDEtLjEwMS4zMTMtLjE2OVY3LjZoLS44ODN2LS42NTloMS44MTV2MS43OHptNC4xMTYtMy4zNzJIOC41ODV2MS4zMThoMi4wMjd2LjcwOEg4LjU4NXYxLjk3N2gtLjkzMlY0LjY0MWgzLjI5NXoiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYuOTk4IDBDMy4xMzkgMCAwIDMuMTQgMCA2Ljk5OHMzLjE0IDYuOTk3IDYuOTk4IDYuOTk3IDYuOTk3LTMuMTM5IDYuOTk3LTYuOTk3UzEwLjg1NiAwIDYuOTk4IDB6bS0uMTY2IDguNzIyYy0uMTc0LjE4Ny0uMzYuMzUzLS42NTguNDk5LS4zLjE0NS0uNjc2LjIxOC0xLjEzMy4yMTgtLjU4IDAtMS4wNjgtLjE4LTEuNDM1LS41NDEtLjM2OC0uMzYtLjU2Ni0uODI5LS41NjYtMS40MDV2LS45OWMwLS41NzQuMTkyLTEuMDQyLjU0NS0xLjQwNC4zNTMtLjM2Mi44MTUtLjU0MyAxLjM3MS0uNTQzLjU3OCAwIDEuMDI1LjE0MSAxLjMzMi40MjIuMzA4LjI4Mi40NjcuNjU4LjQ3MyAxLjExN2wtLjAwNS4wMjZINS44NmMtLjAxNy0uMjc0LS4wOTgtLjQ1OC0uMjQxLS42MDUtLjE0My0uMTQ3LS4zNTMtLjIyMy0uNjMtLjIyM2EuODM4LjgzOCAwIDAwLS42OTUuMzM1Yy0uMTc4LjIyNS0uMjYuNTEzLS4yNi44Njd2Ljk5NmMwIC4zNi4wODUuNjUzLjI3Ljg3OC4xODQuMjI0LjQzLjMzNy43NDIuMzM3LjIyMiAwIC40MDYtLjAyMy41NDEtLjA2OS4xMzUtLjA0NS4yMDEtLjEwMS4zMTMtLjE2OVY3LjZoLS44ODN2LS42NTloMS44MTV2MS43OHptNC4xMTYtMy4zNzJIOC41ODV2MS4zMThoMi4wMjd2LjcwOEg4LjU4NXYxLjk3N2gtLjkzMlY0LjY0MWgzLjI5NXoiLz48L3N2Zz4=)
}

.wp-block-coblocks-food-item__attribute--gluten-free .wp-block-coblocks-food-item__icon:last-of-type {
    margin-right: 0
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-food-item__attribute--gluten-free .wp-block-coblocks-food-item__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYuOTk4IDBDMy4xMzkgMCAwIDMuMTQgMCA2Ljk5OHMzLjE0IDYuOTk3IDYuOTk4IDYuOTk3IDYuOTk3LTMuMTM5IDYuOTk3LTYuOTk3UzEwLjg1NiAwIDYuOTk4IDB6bS0uMTY2IDguNzIyYy0uMTc0LjE4Ny0uMzYuMzUzLS42NTguNDk5LS4zLjE0NS0uNjc2LjIxOC0xLjEzMy4yMTgtLjU4IDAtMS4wNjgtLjE4LTEuNDM1LS41NDEtLjM2OC0uMzYtLjU2Ni0uODI5LS41NjYtMS40MDV2LS45OWMwLS41NzQuMTkyLTEuMDQyLjU0NS0xLjQwNC4zNTMtLjM2Mi44MTUtLjU0MyAxLjM3MS0uNTQzLjU3OCAwIDEuMDI1LjE0MSAxLjMzMi40MjIuMzA4LjI4Mi40NjcuNjU4LjQ3MyAxLjExN2wtLjAwNS4wMjZINS44NmMtLjAxNy0uMjc0LS4wOTgtLjQ1OC0uMjQxLS42MDUtLjE0My0uMTQ3LS4zNTMtLjIyMy0uNjMtLjIyM2EuODM4LjgzOCAwIDAwLS42OTUuMzM1Yy0uMTc4LjIyNS0uMjYuNTEzLS4yNi44Njd2Ljk5NmMwIC4zNi4wODUuNjUzLjI3Ljg3OC4xODQuMjI0LjQzLjMzNy43NDIuMzM3LjIyMiAwIC40MDYtLjAyMy41NDEtLjA2OS4xMzUtLjA0NS4yMDEtLjEwMS4zMTMtLjE2OVY3LjZoLS44ODN2LS42NTloMS44MTV2MS43OHptNC4xMTYtMy4zNzJIOC41ODV2MS4zMThoMi4wMjd2LjcwOEg4LjU4NXYxLjk3N2gtLjkzMlY0LjY0MWgzLjI5NXoiLz48L3N2Zz4=);
        color: #0000 !important
    }
}

.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h1,
.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h2,
.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h3,
.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h4,
.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h5,
.wp-block-coblocks-food-and-drinks.has-columns.has-2-columns>h6,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h1,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h2,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h3,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h4,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h5,
.wp-block-coblocks-food-and-drinks.has-columns.has-3-columns>h6,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h1,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h2,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h3,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h4,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h5,
.wp-block-coblocks-food-and-drinks.has-columns.has-4-columns>h6 {
    flex-basis: 100%;
    max-width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-food-and-drinks:not(.is-style-list) .wp-block-coblocks-food-item__content {
        flex-flow: column;
        justify-content: center;
        text-align: center
    }

    .wp-block-coblocks-food-and-drinks:not(.is-style-list) .wp-block-coblocks-food-item__heading-wrapper {
        justify-content: center
    }
}

.wp-block-coblocks-food-and-drinks:not(.is-style-list) .wp-block-coblocks-food-item__price {
    margin-top: 0;
    text-align: right
}

@media(min-width:600px) {
    .wp-block-coblocks-food-and-drinks:not(.is-style-list) .wp-block-coblocks-food-item__price {
        text-align: inherit
    }
}

.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item {
    display: flex;
    flex: 1 100% !important;
    margin-top: 1.5em;
    max-width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item {
        align-items: center
    }
}

.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item .components-placeholder,
.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item figure {
    flex: 0 0 auto;
    margin: 0 20px 0 0 !important;
    max-height: 75px;
    max-width: 75px;
    padding-top: 75px
}

@media(min-width:600px) {

    .wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item .components-placeholder,
    .wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item figure {
        max-height: 100px;
        max-width: 100px;
        padding-top: 100px
    }
}

.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item__attributes {
    margin-left: .6em
}

.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item__description {
    max-width: calc(100% - 50px)
}

.wp-block-coblocks-food-and-drinks.is-style-list .wp-block-coblocks-food-item__price {
    margin-top: 0;
    text-align: right
}

.coblocks-form label {
    display: block;
    float: none;
    margin-bottom: 3px
}

.coblocks-form .coblocks-form__submit+label {
    margin: 1.25rem 0 3px
}

.coblocks-form .required-error.hidden {
    display: none
}

.coblocks-form .coblocks-field,
.coblocks-form select {
    margin: 0 0 1.25rem;
    width: 100%
}

.coblocks-form .coblocks-field.verify,
.coblocks-form select.verify {
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1
}

.coblocks-form .coblocks-field input[type=radio] {
    display: inline-block;
    float: left;
    margin: 5px 5px 0 0
}

.coblocks-form .coblocks-field .coblocks-checkbox-label {
    display: inline-flex;
    width: 95%
}

.coblocks-form textarea {
    float: none;
    height: 200px;
    margin: 0 0 1.15rem;
    resize: vertical;
    width: 100%
}

.coblocks-form span.required {
    color: #cc1818;
    margin-left: 5px
}

.coblocks-form .coblocks-radio-label+.coblocks-field.verify+.coblocks-form__submit {
    margin-top: 1.25rem
}

.coblocks-form .coblocks-form__submit .wp-block-button__link.is-style-outline {
    background-color: #0000;
    border: 2px solid !important
}

.coblocks-form .coblocks-form__submit .wp-block-button__link.is-style-circular {
    border-radius: 100px !important
}

.coblocks-form .coblocks-form__submit .wp-block-button__link.is-style-3d {
    box-shadow: inset 0 -3px 0 0 #00000040
}

.coblocks-form .coblocks-form__submit .wp-block-button__link.is-style-shadow {
    box-shadow: 0 4px 6px #0000001c, 0 1px 3px rgba(0, 0, 0, .075)
}

.coblocks-form .coblocks-form__inline-fields {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1.15rem
}

.coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field {
    margin-bottom: .15rem;
    width: 50%
}

.coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field input[type=text] {
    margin-bottom: 3px;
    width: 100%
}

.coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field:first-child {
    padding-right: 10px
}

.coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field:last-child {
    padding-left: 10px
}

@media only screen and (max-width:535px) {
    .coblocks-form .coblocks-form__inline-fields {
        display: block
    }

    .coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field {
        width: 100%
    }

    .coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field:first-child,
    .coblocks-form .coblocks-form__inline-fields .coblocks-form__inline-field:last-child {
        margin: 0 0 1.15rem;
        padding: 0
    }
}

.coblocks-form__subtext {
    display: block;
    line-height: 1;
    margin-bottom: -.3rem;
    margin-top: .3rem;
    opacity: .66
}

.coblocks-form .coblocks-form-submission {
    margin-bottom: 4em;
    padding: 1.5em 1em
}

.coblocks-form .coblocks-form-submission p {
    margin: 0 auto;
    word-wrap: break-word
}

.coblocks-form .form-errors .form-error-message {
    color: #cc1818
}

.coblocks-form .coblocks--inline {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1.25rem
}

.coblocks-form .coblocks--inline label {
    margin-right: 10px
}

.coblocks-form .coblocks--inline input[type=radio] {
    margin-top: 5px
}

.coblocks-form .coblocks--inline .coblocks-checkbox-label {
    width: auto
}

.coblocks-form .coblocks--inline input[type=checkbox] {
    margin-top: 2px
}

.is-twentynineteen .coblocks-form__submit,
.is-twentysixteen .coblocks-form__submit {
    margin-top: 1.5em
}

.is-twentyseventeen .coblocks-field {
    margin-bottom: 1.75rem
}

.is-twentyseventeen .coblocks-label {
    font-weight: 800
}

.is-twentyseventeen .coblocks-form__submit {
    margin-top: -.75em
}

.is-twentyseventeen .coblocks-form__submit .wp-block-button__link {
    margin-top: .1em
}

.is-twentynineteen .coblocks-form .components-text-control__input,
.is-twentynineteen .coblocks-form .components-textarea-control__input {
    border-color: #ccc;
    border-radius: 0;
    padding: 1.2rem 0
}

.is-twentynineteen .coblocks-form__submit.wp-block-button {
    margin-top: 0
}

.is-twentysixteen .coblocks-form .components-text-control__input,
.is-twentysixteen .coblocks-form .components-textarea-control__input {
    background-color: #f7f7f7;
    border-color: #d1d1d1;
    border-radius: 2px;
    padding: .75rem 0
}

.is-twentysixteen .coblocks-form .components-base-control,
.is-twentysixteen .coblocks-form .components-base-control .components-base-control__field {
    margin-bottom: 0
}

.is-twentysixteen .coblocks-form__submit.wp-block-button {
    margin-top: 0
}

.wp-block-coblocks-gallery-carousel .coblocks-gallery--item {
    height: 100%;
    position: relative;
    width: 100% !important
}

.wp-block-coblocks-gallery-carousel,
.wp-block-coblocks-gallery-carousel .coblocks-gallery {
    overflow: hidden;
    position: relative
}

.wp-block-coblocks-gallery-carousel .coblocks-gallery--figure {
    height: 100%
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-2 img {
    border-radius: 2px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-3 img {
    border-radius: 3px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-4 img {
    border-radius: 4px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-5 img {
    border-radius: 5px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-6 img {
    border-radius: 6px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-7 img {
    border-radius: 7px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-8 img {
    border-radius: 8px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-9 img {
    border-radius: 9px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-10 img {
    border-radius: 10px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-11 img {
    border-radius: 11px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-12 img {
    border-radius: 12px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-13 img {
    border-radius: 13px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-14 img {
    border-radius: 14px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-15 img {
    border-radius: 15px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-16 img {
    border-radius: 16px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-17 img {
    border-radius: 17px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-18 img {
    border-radius: 18px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-19 img {
    border-radius: 19px
}

.wp-block-coblocks-gallery-carousel .carousel-nav.has-border-radius-20 img {
    border-radius: 20px
}

.wp-block-coblocks-gallery-carousel .carousel-nav {
    height: auto
}

.wp-block-coblocks-gallery-carousel .carousel-nav .flickity-viewport {
    height: 80px !important;
    margin-left: 0;
    margin-right: 0
}

.wp-block-coblocks-gallery-carousel .carousel-nav figure {
    margin: 0
}

.wp-block-coblocks-gallery-carousel .carousel-nav .coblocks--figure {
    height: 100%;
    position: relative
}

.wp-block-coblocks-gallery-carousel .carousel-nav .coblocks--item-thumbnail {
    height: 80px;
    opacity: .4;
    overflow: hidden;
    transition: opacity .25s ease;
    width: 100px
}

.wp-block-coblocks-gallery-carousel .carousel-nav .coblocks--item-thumbnail:hover {
    opacity: .66
}

.wp-block-coblocks-gallery-carousel .carousel-nav .coblocks--item-thumbnail.is-selected {
    opacity: 1
}

.wp-block-coblocks-gallery-carousel .carousel-nav .coblocks--item-thumbnail img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

.wp-block-coblocks-gallery-carousel-page-dot-pagination-container {
    align-items: center;
    bottom: 2.2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    width: 100%
}

.wp-block-coblocks-gallery-carousel-page-dot-pagination-container>.wp-block-coblocks-gallery-carousel-page-dot-wrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-grow: .1;
    justify-content: space-evenly;
    min-width: 45px
}

.wp-block-coblocks-gallery-carousel-page-dot-pagination-container>.wp-block-coblocks-gallery-carousel-page-dot-wrapper>.wp-block-coblocks-gallery-carousel-page-dot-pagination {
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 8px;
    padding: 1px 6px;
    transition: background .2s;
    width: 8px
}

.wp-block-coblocks-gallery-carousel-thumbnail-pagination {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: flex-start;
    margin: 0 auto;
    overflow: hidden;
    width: 100%
}

.wp-block-coblocks-gallery-carousel-thumbnail {
    border: none;
    cursor: pointer;
    min-width: 100px;
    opacity: .4;
    padding: 0
}

.wp-block-coblocks-gallery-carousel-thumbnail.is-active {
    opacity: 1
}

.has-responsive-height.has-carousel {
    height: auto !important;
    position: relative
}

.has-responsive-height.has-carousel .flickity-viewport {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

body.rtl .flickity-viewport {
    position: relative
}

body.rtl .flickity-prev-next-button.next {
    left: 0
}

body.rtl .flickity-prev-next-button.previous {
    left: unset
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.alignfull ul,
.wp-block-coblocks-gallery-collage.alignfull ul {
    padding-left: 1em;
    padding-right: 1em
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage:not(.is-style-layered) li,
.wp-block-coblocks-gallery-collage:not(.is-style-layered) li {
    margin: 0
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage ul,
.wp-block-coblocks-gallery-collage ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0 !important;
    padding: 0 !important
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage ul li,
.wp-block-coblocks-gallery-collage ul li {
    list-style: none
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-no-gutter .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-no-gutter .wp-block-coblocks-gallery-collage__item,
.wp-block-coblocks-gallery-collage.has-no-gutter .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item,
.wp-block-coblocks-gallery-collage.has-no-gutter .wp-block-coblocks-gallery-collage__item {
    padding: 0 !important
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item figure,
.wp-block-coblocks-gallery-collage__item .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item figure {
    padding: 0
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child,
.wp-block-coblocks-gallery-collage__item:first-child {
    align-self: flex-end;
    width: 75%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child figure,
.wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item:first-child figure {
    padding-top: 66.6666666667%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2),
.wp-block-coblocks-gallery-collage__item:nth-child(2) {
    align-self: flex-end;
    margin-right: auto !important;
    width: 25%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) figure,
.wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item:nth-child(2) figure {
    padding-top: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3),
.wp-block-coblocks-gallery-collage__item:nth-child(3) {
    align-self: flex-start;
    margin-left: auto !important;
    width: 25%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) figure,
.wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item:nth-child(3) figure {
    padding-top: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4),
.wp-block-coblocks-gallery-collage__item:nth-child(4) {
    align-self: flex-start;
    width: 25%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) figure,
.wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item:nth-child(4) figure {
    padding-top: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(5),
.wp-block-coblocks-gallery-collage__item:nth-child(5) {
    align-self: flex-start;
    width: 25%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(5) .block-editor-media-placeholder,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(5) figure,
.wp-block-coblocks-gallery-collage__item:nth-child(5) .block-editor-media-placeholder,
.wp-block-coblocks-gallery-collage__item:nth-child(5) figure {
    padding-top: 150%
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:first-child,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2) {
    padding-bottom: 0 !important
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:first-child,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4) {
    width: 66.66%
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child figure,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) figure,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:first-child figure,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4) figure {
    padding-top: 66%
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2),
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3) {
    width: 33.33%
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) figure,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) figure,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2) figure,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3) figure {
    padding-top: 100%
}

.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3),
.is-style-tiled .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3),
.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4) {
    padding-left: 0 !important
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item,
.is-style-layered .wp-block-coblocks-gallery-collage__item {
    align-self: flex-start
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child,
.is-style-layered .wp-block-coblocks-gallery-collage__item:first-child {
    margin-left: 16.8539325843% !important;
    width: 40.2247191011%;
    z-index: 4
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:first-child figure,
.is-style-layered .wp-block-coblocks-gallery-collage__item:first-child .block-editor-media-placeholder,
.is-style-layered .wp-block-coblocks-gallery-collage__item:first-child figure {
    padding-top: 137.4301675978%
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2),
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(2) {
    margin-left: 20.5882352941% !important;
    margin-top: 11.8181818182% !important;
    width: 22.2471910112%;
    z-index: 2
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2).is-selected,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(2).is-selected {
    z-index: 4
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(2) figure,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(2) .block-editor-media-placeholder,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(2) figure {
    padding-top: 100%
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3),
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(3) {
    margin-left: 36.8539325843% !important;
    margin-top: -27.9775280899% !important;
    width: 55.2808988764%;
    z-index: 3
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(3) figure,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(3) .block-editor-media-placeholder,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(3) figure {
    padding-top: 69.1056910569%
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4),
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(4) {
    margin-top: -21.2359550562% !important;
    width: 55.2808988764%;
    z-index: 1
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4).is-selected,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(4).is-selected {
    z-index: 4
}

.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.is-style-layered .editor-styles-wrapper .wp-block-coblocks-gallery-collage__item:nth-child(4) figure,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(4) .block-editor-media-placeholder,
.is-style-layered .wp-block-coblocks-gallery-collage__item:nth-child(4) figure {
    padding-top: 76.8292682927%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__figure,
.wp-block-coblocks-gallery-collage__figure {
    display: flex;
    margin: 0;
    position: relative;
    width: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage__figure img,
.wp-block-coblocks-gallery-collage__figure img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage figcaption,
.wp-block-coblocks-gallery-collage figcaption {
    bottom: 0;
    font-size: 13px;
    margin: 0;
    opacity: .9;
    padding: 30px 10px 10px;
    position: absolute;
    text-align: center;
    width: 100%
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-caption-style-dark figcaption,
.wp-block-coblocks-gallery-collage.has-caption-style-dark figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 50%, #0000)
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-caption-style-light figcaption,
.wp-block-coblocks-gallery-collage.has-caption-style-light figcaption {
    background: linear-gradient(0deg, #ffffffed 6.3%, #ffffff80 61%, #fff0)
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage:not(.has-caption-color).has-caption-style-dark figcaption,
.wp-block-coblocks-gallery-collage:not(.has-caption-color).has-caption-style-dark figcaption {
    color: #fff
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage:not(.has-caption-color).has-caption-style-light figcaption,
.wp-block-coblocks-gallery-collage:not(.has-caption-color).has-caption-style-light figcaption {
    color: #000
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage .wp-block-coblocks-gallery-collage__item:first-child,
.editor-styles-wrapper .wp-block-coblocks-gallery-collage .wp-block-coblocks-gallery-collage__item:nth-child(2),
.wp-block-coblocks-gallery-collage .wp-block-coblocks-gallery-collage__item:first-child,
.wp-block-coblocks-gallery-collage .wp-block-coblocks-gallery-collage__item:nth-child(2) {
    padding-bottom: calc(var(--coblocks-spacing--1, .5em)*2)
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage ul>:not(:first-child),
.wp-block-coblocks-gallery-collage ul>:not(:first-child) {
    padding-left: calc(var(--coblocks-spacing--1, .5em)*2)
}

@media(min-width:600px) {

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-medium-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.has-medium-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .wp-block-coblocks-gallery-collage.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-bottom: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-medium-gutter ul>:not(:first-child),
    .wp-block-coblocks-gallery-collage.has-medium-gutter ul>:not(:first-child) {
        padding-left: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-large-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.has-large-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .wp-block-coblocks-gallery-collage.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-large-gutter ul>:not(:first-child),
    .wp-block-coblocks-gallery-collage.has-large-gutter ul>:not(:first-child) {
        padding-left: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-huge-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.has-huge-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .wp-block-coblocks-gallery-collage.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-bottom: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-huge-gutter ul>:not(:first-child),
    .wp-block-coblocks-gallery-collage.has-huge-gutter ul>:not(:first-child) {
        padding-left: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-custom-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.has-custom-gutter .wp-block-coblocks-gallery-collage__item:first-child,
    .wp-block-coblocks-gallery-collage.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-bottom: var(--coblocks-custom-gutter, 0)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.has-custom-gutter ul>:not(:first-child),
    .wp-block-coblocks-gallery-collage.has-custom-gutter ul>:not(:first-child) {
        padding-left: var(--coblocks-custom-gutter, 0)
    }
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2),
.wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(2) {
    padding-left: calc(var(--coblocks-spacing--1, .5em)*2)
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3),
.wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(3) {
    padding-right: calc(var(--coblocks-spacing--1, .5em)*2);
    padding-top: calc(var(--coblocks-spacing--1, .5em)*2)
}

.editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4),
.wp-block-coblocks-gallery-collage.is-style-tiled .wp-block-coblocks-gallery-collage__item:nth-child(4) {
    padding-top: calc(var(--coblocks-spacing--1, .5em)*2)
}

@media(min-width:600px) {

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-left: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3) {
        padding-right: calc(var(--coblocks-spacing--2, 1em)*2);
        padding-top: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-medium-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4) {
        padding-top: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-left: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3) {
        padding-right: calc(var(--coblocks-spacing--3, 1.5em)*2);
        padding-top: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-large-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4) {
        padding-top: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-left: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3) {
        padding-right: calc(var(--coblocks-spacing--4, 2em)*2);
        padding-top: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-huge-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4) {
        padding-top: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(2) {
        padding-left: var(--coblocks-custom-gutter, 0)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(3) {
        padding-right: var(--coblocks-custom-gutter, 0);
        padding-top: var(--coblocks-custom-gutter, 0)
    }

    .editor-styles-wrapper .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4),
    .wp-block-coblocks-gallery-collage.is-style-tiled.has-custom-gutter .wp-block-coblocks-gallery-collage__item:nth-child(4) {
        padding-top: var(--coblocks-custom-gutter, 0)
    }
}

.wp-block-coblocks-gallery-collage .pb-0 {
    padding-bottom: 0 !important
}

.wp-block-coblocks-gallery-collage .pl-0 {
    padding-left: 0 !important
}

div.wp-block-coblocks-gallery-masonry {
    position: relative
}

div.wp-block-coblocks-gallery-masonry ul {
    list-style: none !important;
    padding: 0 !important
}

div.wp-block-coblocks-gallery-masonry ul:not([class*=gutter]) {
    margin-left: 0 !important
}

div.wp-block-coblocks-gallery-masonry li {
    margin: 0 !important
}

div.wp-block-coblocks-gallery-masonry figure {
    margin: 0;
    overflow: hidden
}

div.wp-block-coblocks-gallery-masonry img {
    height: auto;
    vertical-align: bottom;
    width: 100%
}

div.wp-block-coblocks-gallery-masonry figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 50%, #0000);
    bottom: 0;
    font-size: 13px;
    max-height: 100% !important;
    opacity: .9;
    overflow: auto;
    padding: 30px 10px 10px !important;
    position: absolute !important;
    text-align: center;
    width: 100%
}

div.wp-block-coblocks-gallery-masonry figcaption img {
    display: inline
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"].block-editor-block-list__block:after,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"].block-editor-block-list__block:after,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"].block-editor-block-list__block:after {
    box-shadow: none !important
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu {
    top: 1px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-left,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-left,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-left {
    left: 1px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-right,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-right,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-library-gallery-item__inline-menu.is-right {
    right: 1px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure {
    width: auto !important
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected {
    border-radius: 4px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected:after,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected:after,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure.is-selected:after {
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color, #007cba), inset 0 0 0 3px #fff
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure img,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure img,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .coblocks-gallery--figure img {
    vertical-align: bottom
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .components-drop-zone.is-active+ul li:last-child .components-drop-zone,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .components-drop-zone.is-active+ul li:last-child .components-drop-zone,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .components-drop-zone.is-active+ul li:last-child .components-drop-zone {
    display: none
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text {
    bottom: 0;
    left: 0;
    max-height: 100%;
    overflow-y: auto;
    position: absolute;
    right: 0;
    width: 100%
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce,
body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce a,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce a,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce a {
    color: inherit
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:not(.mce-content-body),
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:not(.mce-content-body),
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:not(.mce-content-body) {
    opacity: .6
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected],
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected],
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text .editor-rich-text__tinymce:focus a[data-mce-selected] {
    opacity: .2
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text figcaption:not([data-is-placeholder-visible=true]),
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text figcaption:not([data-is-placeholder-visible=true]),
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .block-editor-rich-text figcaption:not([data-is-placeholder-visible=true]) {
    overflow: hidden;
    position: relative !important
}

@supports(position:sticky) {

    body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text,
    body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text,
    body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text {
        bottom: 4px;
        left: 4px;
        margin-top: -4px;
        right: 4px;
        width: calc(100% - 8px)
    }
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text figcaption,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text figcaption,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text figcaption {
    padding-bottom: 6px !important
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__inline-toolbar,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__inline-toolbar,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__inline-toolbar {
    top: 0
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__tinymce,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__tinymce,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .is-selected .block-editor-rich-text .editor-rich-text__tinymce {
    padding-top: 48px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .components-coblocks-gallery-item__image-link+img+.block-editor-rich-text,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .components-coblocks-gallery-item__image-link+img+.block-editor-rich-text,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .components-coblocks-gallery-item__image-link+img+.block-editor-rich-text {
    margin-bottom: 34px
}

body[class*=version-5-5] [data-type="coblocks/gallery-masonry"] .wp-block-coblocks-gallery-masonry ul,
body[class*=version-5-6] [data-type="coblocks/gallery-masonry"] .wp-block-coblocks-gallery-masonry ul,
body[class*=version-5-7] [data-type="coblocks/gallery-masonry"] .wp-block-coblocks-gallery-masonry ul {
    margin: 0
}

body[class*=version-5-5] [data-type="core/group"] .wp-block-coblocks-gallery-masonry,
body[class*=version-5-6] [data-type="core/group"] .wp-block-coblocks-gallery-masonry,
body[class*=version-5-7] [data-type="core/group"] .wp-block-coblocks-gallery-masonry {
    margin-bottom: 40px !important;
    margin-top: 40px !important
}

body[class*=version-5-5] .block-editor-block-list__block[data-type="coblocks/gallery-masonry"]:not(.is-selected):not(.is-focused) .coblocks-gallery div.components-form-file-upload,
body[class*=version-5-5] .block-editor-inserter__preview-content .wp-block-coblocks-gallery-masonry .coblocks-gallery--item:last-child,
body[class*=version-5-6] .block-editor-block-list__block[data-type="coblocks/gallery-masonry"]:not(.is-selected):not(.is-focused) .coblocks-gallery div.components-form-file-upload,
body[class*=version-5-6] .block-editor-inserter__preview-content .wp-block-coblocks-gallery-masonry .coblocks-gallery--item:last-child,
body[class*=version-5-7] .block-editor-block-list__block[data-type="coblocks/gallery-masonry"]:not(.is-selected):not(.is-focused) .coblocks-gallery div.components-form-file-upload,
body[class*=version-5-7] .block-editor-inserter__preview-content .wp-block-coblocks-gallery-masonry .coblocks-gallery--item:last-child {
    display: none
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid {
    column-fill: initial;
    column-gap: 30px;
    transition: all .5s ease-in-out
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.alignfull,
figure.wp-block-coblocks-gallery-masonry.masonry-grid.alignwide {
    margin: 0
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid figure.wp-block-image {
    position: relative
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid figure.wp-block-image:first-of-type {
    margin-top: 0 !important
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid figure.wp-block-image img {
    border: 0;
    display: block;
    font: inherit;
    font-size: 100%;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: 100%
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid figure.wp-block-image figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 50%, #0000);
    bottom: 0;
    font-size: 13px;
    margin-bottom: 0;
    max-height: 100% !important;
    opacity: .9;
    overflow: auto;
    padding: 30px 10px 10px !important;
    position: absolute !important;
    text-align: center;
    width: 100%
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid figure.wp-block-image figcaption img {
    display: inline
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-small-gutter {
    column-gap: calc(var(--coblocks-spacing--1, .5em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-small-gutter>figure {
    margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-medium-gutter {
    column-gap: calc(var(--coblocks-spacing--2, 1em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-medium-gutter>figure {
    margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-large-gutter {
    column-gap: calc(var(--coblocks-spacing--3, 1.5em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-large-gutter>figure {
    margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-custom-gutter {
    column-gap: calc(var(--coblocks-custom-gutter, 0em)*2)
}

figure.wp-block-coblocks-gallery-masonry.masonry-grid.has-custom-gutter>figure {
    margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2)
}

@media only screen and (min-width:768px)and (max-width:1023px) {
    figure.wp-block-coblocks-gallery-masonry.masonry-grid {
        column-count: 2
    }
}

@media only screen and (min-width:1024px) {
    figure.wp-block-coblocks-gallery-masonry.masonry-grid {
        column-count: 3
    }
}

.is-twentytwenty figure.wp-block-coblocks-gallery-masonry.masonry-grid {
    margin-left: auto;
    margin-right: auto
}

.wp-block-coblocks-gallery-offset .coblocks-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0
}

.wp-block-coblocks-gallery-offset img {
    max-height: 22vw;
    width: auto
}

.wp-block-coblocks-gallery-offset figcaption {
    background: linear-gradient(0deg, #000000b3, #0000004d 50%, #0000);
    bottom: 0;
    font-size: 13px;
    max-height: 100% !important;
    opacity: 1;
    overflow: hidden;
    padding: 30px 10px 10px !important;
    position: absolute !important;
    text-align: center;
    width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-small-images img {
        max-height: 22vw
    }
}

@media(min-width:960px) {
    .wp-block-coblocks-gallery-offset .has-small-images img {
        max-height: 11vw
    }
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-medium-images img {
        max-height: 28vw
    }
}

@media(min-width:960px) {
    .wp-block-coblocks-gallery-offset .has-medium-images img {
        max-height: 12vw
    }
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-large-images img {
        max-height: 40vw
    }
}

@media(min-width:960px) {
    .wp-block-coblocks-gallery-offset .has-large-images img {
        max-height: 20vw
    }
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-huge-images img {
        max-height: 40vw
    }
}

@media(min-width:960px) {
    .wp-block-coblocks-gallery-offset .has-huge-images img {
        max-height: 30vw
    }
}

.wp-block-coblocks-gallery-offset .has-huge-gutter,
.wp-block-coblocks-gallery-offset .has-large-gutter,
.wp-block-coblocks-gallery-offset .has-medium-gutter,
.wp-block-coblocks-gallery-offset .has-small-gutter {
    margin-bottom: calc(var(--coblocks-spacing--1, .5em)*-1*2);
    margin-left: calc(var(--coblocks-spacing--1, .5em)*-.5*2)
}

.wp-block-coblocks-gallery-offset .has-huge-gutter figure,
.wp-block-coblocks-gallery-offset .has-large-gutter figure,
.wp-block-coblocks-gallery-offset .has-medium-gutter figure,
.wp-block-coblocks-gallery-offset .has-small-gutter figure {
    margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2);
    margin-left: calc(var(--coblocks-spacing--1, .5em)*2)
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-medium-gutter {
        margin-bottom: calc(var(--coblocks-spacing--2, 1em)*-1*2);
        margin-left: calc(var(--coblocks-spacing--2, 1em)*-.5*2)
    }

    .wp-block-coblocks-gallery-offset .has-medium-gutter figure {
        margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2);
        margin-left: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .wp-block-coblocks-gallery-offset .has-large-gutter {
        margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*-1*2);
        margin-left: calc(var(--coblocks-spacing--3, 1.5em)*-.5*2)
    }

    .wp-block-coblocks-gallery-offset .has-large-gutter figure {
        margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2);
        margin-left: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .wp-block-coblocks-gallery-offset .has-huge-gutter {
        margin-bottom: calc(var(--coblocks-spacing--4, 2em)*-1*2);
        margin-left: calc(var(--coblocks-spacing--4, 2em)*-.5*2)
    }

    .wp-block-coblocks-gallery-offset .has-huge-gutter figure {
        margin-bottom: calc(var(--coblocks-spacing--4, 2em)*2);
        margin-left: calc(var(--coblocks-spacing--4, 2em)*2)
    }
}

.wp-block-coblocks-gallery-offset .has-custom-gutter {
    margin-bottom: calc(var(--coblocks-custom-gutter, 0)*-1*2);
    margin-left: calc(var(--coblocks-custom-gutter, 0)*-.5*2)
}

.wp-block-coblocks-gallery-offset .has-custom-gutter figure {
    margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2);
    margin-left: calc(var(--coblocks-custom-gutter, 0)*2)
}

@media(min-width:600px) {
    .wp-block-coblocks-gallery-offset .has-custom-gutter {
        margin-bottom: calc(var(--coblocks-custom-gutter, 0)*-1*2);
        margin-left: calc(var(--coblocks-custom-gutter, 0)*-.5*2)
    }

    .wp-block-coblocks-gallery-offset .has-custom-gutter figure {
        margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2);
        margin-left: calc(var(--coblocks-custom-gutter, 0)*2)
    }
}

.wp-block-coblocks-gallery-stacked {
    position: relative;
    text-align: center
}

.wp-block-coblocks-gallery-stacked.alignleft,
.wp-block-coblocks-gallery-stacked.alignright {
    max-width: 305px
}

.wp-block-coblocks-gallery-stacked:not(.has-caption-color) {
    color: #1e1e1e !important
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery {
    margin-left: 0;
    margin-top: 0;
    padding-left: 0
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery.has-small-gutter li:not(:last-of-type) {
    margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2)
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery.has-medium-gutter li:not(:last-of-type) {
    margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2)
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery.has-large-gutter li:not(:last-of-type) {
    margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2)
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery.has-custom-gutter li:not(:last-of-type) {
    margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2)
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--item {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--item .coblocks-gallery--figure {
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--item:last-child {
    margin-bottom: 0
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--item:last-child figure {
    margin-bottom: 0 !important
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--item:last-child figcaption {
    padding-bottom: 0
}

.wp-block-coblocks-gallery-stacked:not([style*=font-size]):not([class*=font-size]) .coblocks-gallery--caption {
    font-size: 13px
}

.wp-block-coblocks-gallery-stacked .coblocks-gallery--caption {
    padding-bottom: 1em;
    padding-top: 1em;
    text-align: center
}

.is-selected .wp-block-coblocks-gallery-stacked .coblocks-gallery--caption,
.is-typing .wp-block-coblocks-gallery-stacked .coblocks-gallery--caption {
    padding-left: 1em;
    padding-right: 1em
}

.wp-block-coblocks-gallery-stacked .has-fullwidth-images img {
    width: 100%
}

.wp-block-coblocks-gallery-stacked .coblocks-video-bg {
    z-index: 1
}

.wp-block-coblocks-gif.alignfull,
.wp-block-coblocks-gif.alignwide {
    width: inherit
}

.wp-block-coblocks-gif.alignfull img,
.wp-block-coblocks-gif.alignwide img {
    width: 100%
}

.wp-block-coblocks-hero {
    position: relative
}

.wp-block-coblocks-hero .has-left-content {
    text-align: left
}

.wp-block-coblocks-hero .has-center-content {
    text-align: center
}

.wp-block-coblocks-hero .has-center-content .wp-block-coblocks-buttons__inner {
    justify-content: center
}

.wp-block-coblocks-hero .has-center-content h1:before,
.wp-block-coblocks-hero .has-center-content h2:before {
    margin-left: auto;
    margin-right: auto
}

.wp-block-coblocks-hero .has-right-content {
    text-align: right
}

.wp-block-coblocks-hero .has-right-content .wp-block-coblocks-buttons__inner {
    justify-content: flex-end
}

.wp-block-coblocks-hero .has-right-content h1:before,
.wp-block-coblocks-hero .has-right-content h2:before {
    margin-left: auto
}

.wp-block-coblocks-hero__inner {
    display: flex;
    position: relative
}

.wp-block-coblocks-hero__inner.is-fullscreen {
    height: 100vh
}

.wp-block-coblocks-hero__inner .wp-block-coblocks-hero__content {
    position: relative
}

.wp-block-coblocks-hero__inner[class*=hero-top] {
    align-items: flex-start
}

.wp-block-coblocks-hero__inner[class*=hero-center] {
    align-items: center
}

.wp-block-coblocks-hero__inner[class*=hero-bottom] {
    align-items: flex-end
}

.wp-block-coblocks-hero__inner[class*=left-align] {
    justify-content: flex-start
}

.wp-block-coblocks-hero__inner[class*=center-align] {
    justify-content: center
}

.wp-block-coblocks-hero__inner[class*=right-align] {
    justify-content: flex-end
}

.wp-block-coblocks-hero .wp-block-button {
    margin-bottom: 0
}

.wp-block-coblocks-highlight {
    background: #0000 !important
}

.wp-block-coblocks-highlight:empty {
    display: none
}

.wp-block-coblocks-highlight+.wp-block-coblocks-highlight {
    padding-top: 7px
}

.wp-block-coblocks-highlight__content {
    padding: 2px 5px 2px 3px;
    position: relative
}

.wp-block-coblocks-highlight__content:not(.has-background) {
    background-color: #fff8e5
}

.wp-block-coblocks-icon {
    position: relative
}

.wp-block-coblocks-icon__inner {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.wp-block-coblocks-icon__inner a {
    border: 0 !important;
    box-shadow: none !important;
    height: 100%;
    outline: none;
    text-shadow: none;
    width: 100%
}

.wp-block-coblocks-icon__inner svg {
    fill: currentColor;
    height: 100%;
    vertical-align: middle;
    width: 100%
}

.wp-block-coblocks-logos.has-filter-grayscale img,
.wp-block-coblocks-logos.is-style-black-and-white img {
    filter: grayscale(1) brightness(0)
}

.wp-block-coblocks-logos.is-style-grayscale img {
    filter: grayscale(1)
}

.wp-block-coblocks-logos__row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

@media(max-width:600px) {
    .wp-block-coblocks-logos__row {
        flex-wrap: wrap
    }
}

.wp-block-coblocks-logos__row+.wp-block-coblocks-logos__row {
    margin-top: 2em
}

.wp-block-coblocks-logos__row>div {
    padding: 0 1.5vw
}

.wp-block-coblocks-logos__row img {
    vertical-align: middle;
    width: 100%
}

.wp-block-coblocks-media-card__wrapper {
    align-items: center;
    display: grid;
    grid-template-areas: "media-text-media media-text-content";
    grid-template-columns: 55% auto;
    grid-template-rows: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 0 !important;
    position: relative
}

.wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-media-card__wrapper {
    grid-template-areas: "media-text-content media-text-media";
    grid-template-columns: auto 55%
}

.wp-block-coblocks-media-card__inner {
    color: inherit !important
}

.wp-block-coblocks-media-card__media {
    grid-area: media-text-media;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    margin: 0;
    position: relative
}

.wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__media,
body.rtl .is-style-left .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__media {
    -ms-grid-column: 2;
    -ms-grid-row: 1
}

body.rtl .is-style-right .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__media {
    -ms-grid-column: 1;
    -ms-grid-row: 1
}

.has-no-media .wp-block-coblocks-media-card__media {
    align-items: center;
    background: #8b8b961a;
    display: flex;
    height: 70vw;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 0;
    max-height: 600px
}

@media(min-width:600px) {
    .has-no-media .wp-block-coblocks-media-card__media {
        width: 100%
    }
}

.has-no-media.alignfull .wp-block-coblocks-media-card__media,
.has-no-media.alignwide .wp-block-coblocks-media-card__media {
    max-height: 700px
}

.wp-block-coblocks-media-card__media svg {
    height: 30px;
    opacity: .15;
    position: relative;
    top: -30px;
    width: 30px
}

@media(min-width:600px) {
    .wp-block-coblocks-media-card__media svg {
        height: 50px;
        width: 50px
    }
}

.wp-block-coblocks-media-card__content {
    grid-area: media-text-content;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    margin-left: -50%;
    position: relative;
    word-break: break-word;
    z-index: 1
}

.wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content,
body.rtl .is-style-left .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content {
    -ms-grid-column: 1;
    -ms-grid-row: 1
}

body.rtl .is-style-right .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content {
    -ms-grid-column: 2;
    -ms-grid-row: 1
}

@media(min-width:600px) {
    .wp-block-coblocks-media-card__content {
        margin-left: -100px
    }
}

.wp-block-coblocks-media-card__content p:last-of-type {
    margin-bottom: 0
}

.wp-block-coblocks-media-card__content h1,
.wp-block-coblocks-media-card__content h2,
.wp-block-coblocks-media-card__content h3,
.wp-block-coblocks-media-card__content h4,
.wp-block-coblocks-media-card__content h5,
.wp-block-coblocks-media-card__content h6 {
    margin-top: 0 !important
}

.wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-media-card__content {
    margin-left: 0;
    margin-right: -50%
}

@media(min-width:600px) {
    .wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-media-card__content {
        margin-right: -100px
    }
}

.wp-block-coblocks-media-card__wrapper>figure>img,
.wp-block-coblocks-media-card__wrapper>figure>video {
    max-width: unset;
    vertical-align: middle;
    width: 100%
}

@media(max-width:599px) {
    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper {
        grid-template-areas: "media-text-media" "media-text-content";
        grid-template-columns: 100% !important
    }

    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__media {
        -ms-grid-column: 1;
        -ms-grid-row: 1
    }

    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content {
        -ms-grid-column: 1;
        -ms-grid-row: 2
    }
}

@media(max-width:599px)and (min-width:600px) {
    .wp-block-coblocks-media-card.is-stacked-on-mobile.is-style-right .wp-block-coblocks-media-card__content {
        margin-right: -100px
    }

    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__media {
        position: inherit
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__content {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: -33%
    }
}

@media(max-width:599px)and (min-width:600px) {
    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__content {
        grid-area: media-text-content;
        -ms-grid-column: 2;
        -ms-grid-row: 1;
        margin-left: -100px
    }

    @media (max-width:599px) {
        .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content {
            -ms-grid-column: 1;
            -ms-grid-row: 2
        }
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__content p:last-of-type {
        margin-bottom: 0
    }
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-media-card .wp-block-coblocks-media-card__wrapper {
        display: flex
    }

    .wp-block-coblocks-media-card .wp-block-coblocks-media-card__wrapper .wp-block-coblocks-row__inner {
        flex-grow: 1
    }

    .wp-block-coblocks-media-card.is-style-right figure {
        order: 2
    }

    .wp-block-coblocks-media-card.is-style-right .wp-block-coblocks-row__inner {
        order: 1
    }
}

body.rtl .is-style-left .wp-block-coblocks-media-card__wrapper {
    grid-template-areas: "media-text-content media-text-media" "resizer resizer" !important;
    grid-template-columns: auto 55% !important
}

body.rtl .is-style-left .wp-block-coblocks-media-card__content {
    margin-left: 0;
    margin-right: -100px
}

body.rtl .is-style-right .wp-block-coblocks-media-card__wrapper {
    grid-template-areas: "media-text-media media-text-content" "resizer resizer" !important;
    grid-template-columns: 55% auto !important
}

body.rtl .is-style-right .wp-block-coblocks-media-card__content {
    margin-left: -100px;
    margin-right: 0
}

@media(min-width:768px)and (max-width:1024px) {
    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile {
        flex-direction: column
    }

    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper {
        grid-template-areas: "media-text-media" "media-text-content";
        grid-template-columns: 100% !important
    }

    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__media {
        -ms-grid-column: 1;
        -ms-grid-row: 1
    }

    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__wrapper>.wp-block-coblocks-media-card__content {
        -ms-grid-column: 1;
        -ms-grid-row: 2
    }
}

@media(min-width:768px)and (max-width:1024px)and (max-width:599px) {
    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__media {
        position: inherit
    }
}

@media(min-width:768px)and (max-width:1024px) {
    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__content {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: -33%
    }

    .is-twentynineteen .entry .entry-content .wp-block-coblocks-media-card.is-stacked-on-mobile .wp-block-coblocks-media-card__content p:last-of-type {
        margin-bottom: 0
    }
}

.wp-block-coblocks-opentable.has-filter-grayscale img,
.wp-block-coblocks-opentable.is-style-black-and-white img {
    filter: grayscale(1) brightness(0)
}

.wp-block-coblocks-opentable.is-style-grayscale img {
    filter: grayscale(1)
}

.wp-block-coblocks-opentable__row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

@media(max-width:600px) {
    .wp-block-coblocks-opentable__row {
        flex-wrap: wrap
    }
}

.wp-block-coblocks-opentable__row+.wp-block-coblocks-opentable__row {
    margin-top: 2em
}

.wp-block-coblocks-opentable__row>div {
    padding: 0 1.5vw
}

.wp-block-coblocks-opentable__row img {
    vertical-align: middle;
    width: 100%
}

.wp-block-coblocks-post-carousel {
    position: relative
}

.wp-block-coblocks-post-carousel.alignfull {
    padding-left: var(--coblocks-spacing--8, 1em);
    padding-right: var(--coblocks-spacing--8, 1em)
}

@media(min-width:600px) {
    .wp-block-coblocks-post-carousel.alignfull {
        padding-left: var(--coblocks-spacing--10, 2em);
        padding-right: var(--coblocks-spacing--10, 2em)
    }
}

.wp-block-coblocks-post-carousel.alignfull .wp-coblocks-post-carousel-nav-button__next,
.wp-block-coblocks-post-carousel.alignfull .wp-coblocks-post-carousel-nav-button__prev {
    background-color: #0000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    height: 62px;
    margin: 0 1%;
    padding: 15px;
    position: absolute;
    top: 50%;
    width: 62px
}

.wp-block-coblocks-post-carousel.alignfull .wp-coblocks-post-carousel-nav-button__prev {
    left: 0;
    transform: rotate(180deg)
}

.wp-block-coblocks-post-carousel.alignfull .wp-coblocks-post-carousel-nav-button__next {
    right: 0
}

@media(min-width:782px) {
    .wp-block-coblocks-post-carousel:not(.alignwide) .coblocks-slick {
        padding-bottom: 0
    }
}

.wp-block-coblocks-post-carousel .slick-slider {
    box-sizing: border-box;
    display: block;
    position: relative;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none
}

.wp-block-coblocks-post-carousel .slick-slider .slick-list,
.wp-block-coblocks-post-carousel .slick-slider .slick-track {
    transform: translateZ(0)
}

.wp-block-coblocks-post-carousel .slick-list {
    display: block;
    margin: 0;
    margin-bottom: calc(var(--coblocks-spacing--2, 1em)*-1);
    overflow: hidden;
    padding: 0;
    position: relative
}

.wp-block-coblocks-post-carousel .slick-list:focus {
    outline: none
}

.wp-block-coblocks-post-carousel .slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.wp-block-coblocks-post-carousel .slick-track {
    display: flex;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0
}

.wp-block-coblocks-post-carousel .slick-track:after,
.wp-block-coblocks-post-carousel .slick-track:before {
    content: "";
    display: table
}

.wp-block-coblocks-post-carousel .slick-track:after {
    clear: both
}

.slick-loading .wp-block-coblocks-post-carousel .slick-track {
    visibility: hidden
}

.wp-block-coblocks-post-carousel .slick-slide {
    display: none;
    float: left;
    height: auto;
    margin: 0 var(--coblocks-spacing--2, 1em);
    min-height: 1px;
    outline: none
}

[dir=rtl] .wp-block-coblocks-post-carousel .slick-slide {
    float: right
}

.wp-block-coblocks-post-carousel .slick-slide img {
    display: block
}

.wp-block-coblocks-post-carousel .slick-slide.slick-loading img {
    display: none
}

.wp-block-coblocks-post-carousel .slick-slide.dragging img {
    pointer-events: none
}

.wp-block-coblocks-post-carousel .slick-initialized .slick-slide {
    display: block
}

.wp-block-coblocks-post-carousel .slick-next,
.wp-block-coblocks-post-carousel .slick-prev {
    background: #0000;
    border: none;
    bottom: 0;
    color: #0000;
    cursor: pointer;
    display: inline-block;
    font-size: medium;
    height: var(--coblocks-spacing--8, 4em);
    line-height: 0;
    outline: none;
    padding: .5em;
    position: absolute;
    width: var(--coblocks-spacing--8, 4em)
}

.wp-block-coblocks-post-carousel .slick-next:focus,
.wp-block-coblocks-post-carousel .slick-next:hover,
.wp-block-coblocks-post-carousel .slick-prev:focus,
.wp-block-coblocks-post-carousel .slick-prev:hover {
    cursor: pointer;
    opacity: .5;
    outline: none
}

.wp-block-coblocks-post-carousel .slick-next:focus:before,
.wp-block-coblocks-post-carousel .slick-next:hover:before,
.wp-block-coblocks-post-carousel .slick-prev:focus:before,
.wp-block-coblocks-post-carousel .slick-prev:hover:before {
    opacity: 1
}

.wp-block-coblocks-post-carousel .slick-prev {
    left: 50%;
    transform: translateX(-100%)
}

.wp-block-coblocks-post-carousel .slick-next {
    right: 50%;
    transform: translateX(100%)
}

.wp-block-coblocks-post-carousel .slick-next.slick-disabled:before,
.wp-block-coblocks-post-carousel .slick-prev.slick-disabled:before {
    opacity: .25
}

.wp-block-coblocks-post-carousel .slick-next:before,
.wp-block-coblocks-post-carousel .slick-prev:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+);
    background-position: 50%;
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 100%;
    width: 100%
}

.wp-block-coblocks-post-carousel .slick-next:before,
.wp-block-coblocks-post-carousel [dir=rtl] .slick-prev:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=)
}

.wp-block-coblocks-post-carousel [dir=rtl] .slick-next:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+)
}

.wp-block-coblocks-post-carousel__image {
    display: table;
    margin-bottom: var(--coblocks-spacing--2, 1em);
    position: relative;
    width: 100%
}

.wp-block-coblocks-post-carousel__image a {
    display: block;
    outline: none;
    padding-top: 100%;
    width: 100%
}

.wp-block-coblocks-post-carousel__content {
    display: flex;
    flex-direction: column;
    width: 100%
}

.wp-block-coblocks-post-carousel__date {
    color: #6c7781;
    display: block;
    font-size: 16px;
    margin-bottom: var(--coblocks-spacing--1, .5em)
}

.wp-block-coblocks-post-carousel__more-link {
    align-self: self-start;
    margin-top: var(--coblocks-spacing--2, 1em)
}

.wp-block-coblocks-post-carousel__excerpt {
    margin-top: var(--coblocks-spacing--1, .5em)
}

@media(min-width:782px) {

    .wp-block-coblocks-post-carousel:not(.alignwide) .slick-next,
    .wp-block-coblocks-post-carousel:not(.alignwide) .slick-prev {
        bottom: 50%;
        transform: translateY(-50%)
    }

    .wp-block-coblocks-post-carousel:not(.alignwide) .slick-prev {
        left: -5em
    }

    .wp-block-coblocks-post-carousel:not(.alignwide) .slick-next {
        right: -5em
    }
}

body.rtl .wp-block-coblocks-post-carousel:not(.alignwide) .slick-prev:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=)
}

body.rtl .wp-block-coblocks-post-carousel:not(.alignwide) .slick-next:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNTAuOTA2MjUgOTkuMDkzNzUtNDYuODc1LTQ2Ljg3NWMtMS4yMTE2MzYyMy0xLjIxODg2Ny0xLjIxMTYzNjIzLTMuMTg3MzgzIDAtNC40MDYyNWw0Ni44NzUtNDYuODc1IDQuNDA2MjUgNC40MDYyNS00NC42NTYyNSA0NC42NTYyNSA0NC42ODc1IDQ0LjY1NjI1eiIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi44NzUgMTUpIi8+PC9zdmc+)
}

.wp-coblocks-post-carousel-nav-button__next,
.wp-coblocks-post-carousel-nav-button__prev {
    background-color: #0000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTMwIDEzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNS4zNDM3NSA5OS4wOTM3NS00LjQzNzUtNC40Mzc1IDQ0LjY4NzUtNDQuNjU2MjUtNDQuNjg3NS00NC42NTYyNSA0LjQzNzUtNC40Mzc1IDQ2Ljg3NSA0Ni44NzVjMS4yMTE2MzYyIDEuMjE4ODY3IDEuMjExNjM2MiAzLjE4NzM4MyAwIDQuNDA2MjV6IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5Ljg3NSAxNSkiLz48L3N2Zz4=);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    height: 62px;
    margin: 0 1%;
    padding: 15px;
    position: absolute;
    top: 50%;
    width: 62px
}

.wp-coblocks-post-carousel-nav-button__prev {
    left: -5em;
    transform: rotate(180deg)
}

.wp-coblocks-post-carousel-nav-button__next {
    right: -5em
}

.is-twentynineteen .wp-block-coblocks-post-carousel {
    line-height: 1.6
}

.is-twentynineteen .wp-block-coblocks-post-carousel__content a {
    font-size: 24.75px;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: .5rem;
    text-decoration: none !important
}

.is-twentynineteen .wp-block-coblocks-post-carousel__content a,
.is-twentynineteen .wp-block-coblocks-post-carousel__date {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-weight: 700
}

.is-twentytwenty .wp-block-coblocks-post-carousel {
    color: #6d6d6d
}

.is-twentytwenty .wp-block-coblocks-post-carousel .columns {
    margin-bottom: .5em
}

.is-twentytwenty .wp-block-coblocks-post-carousel a {
    font-family: Inter var, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
    text-decoration: none
}

.is-twentytwenty .wp-block-coblocks-post-carousel a:hover {
    text-decoration: underline
}

.is-twentytwenty .wp-block-coblocks-post-carousel__date {
    color: #6d6d6d;
    font-family: Inter var, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-size: .7em;
    font-weight: 600;
    letter-spacing: normal;
    margin-bottom: .2em
}

.wp-block-coblocks-posts+.wp-block-coblocks-posts {
    margin-top: var(--coblocks-spacing--2, 1em)
}

.wp-block-coblocks-posts.has-1-columns>div:first-child {
    margin-top: 0
}

.wp-block-coblocks-posts.has-1-columns>div:last-child {
    margin-bottom: 0
}

.wp-block-coblocks-posts__inner {
    margin-left: 0;
    padding-left: 0
}

.wp-block-coblocks-posts__item {
    align-items: stretch;
    flex: 1 1 auto;
    margin-bottom: var(--coblocks-spacing--3, 1.5em);
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
    width: 100%
}

.is-style-stacked .wp-block-coblocks-posts__item {
    flex-direction: column
}

.is-style-horizontal .has-image-right .wp-block-coblocks-posts__item {
    flex-direction: row-reverse
}

.wp-block-coblocks-posts.is-style-horizontal .wp-block-coblocks-posts__item {
    display: flex
}

.wp-block-coblocks-posts__image {
    display: table;
    flex: 0 0 auto;
    height: 14.285%;
    margin-right: var(--coblocks-spacing--2, 1em);
    position: relative;
    width: 14.285%
}

@media(min-width:600px) {
    .wp-block-coblocks-posts__image {
        margin-right: var(--coblocks-spacing--3, 1.5em)
    }
}

.has-image-right .wp-block-coblocks-posts__image {
    margin-left: var(--coblocks-spacing--2, 1em);
    margin-right: 0
}

@media(min-width:600px) {
    .has-image-right .wp-block-coblocks-posts__image {
        margin-left: var(--coblocks-spacing--3, 1.5em)
    }
}

.wp-block-coblocks-posts__image>* {
    display: block;
    padding-top: 100%;
    width: 100%
}

.is-style-stacked .wp-block-coblocks-posts__image {
    margin-bottom: var(--coblocks-spacing--2, 1em);
    width: 100%
}

@media(min-width:600px) {
    .has-medium-image .wp-block-coblocks-posts__image {
        height: 20%;
        width: 20%
    }

    .has-huge-image .wp-block-coblocks-posts__image,
    .has-large-image .wp-block-coblocks-posts__image {
        height: 33.33%;
        width: 33.33%
    }
}

@media(min-width:782px) {
    .has-huge-image .wp-block-coblocks-posts__image {
        height: 50%;
        width: 50%
    }
}

.has-four-to-three-image .wp-block-coblocks-posts__image>* {
    padding-top: 75%
}

.has-sixteen-to-nine-image .wp-block-coblocks-posts__image>* {
    padding-top: 56.25%
}

.has-circle-image .wp-block-coblocks-posts__image>* {
    border-radius: 100%
}

.wp-block-coblocks-posts__content {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    width: 100%
}

.wp-block-coblocks-posts__content.self-center {
    align-self: center
}

.wp-block-coblocks-posts__date {
    color: #6c7781;
    display: block;
    font-size: 16px
}

.wp-block-coblocks-posts__date,
.wp-block-coblocks-posts__excerpt {
    margin-top: var(--coblocks-spacing--1, .5em)
}

.wp-block-coblocks-posts__more-link {
    align-self: self-start;
    display: block
}

.is-twentynineteen .wp-block-coblocks-posts {
    line-height: 1.6
}

.is-twentynineteen .wp-block-coblocks-posts__content a {
    font-size: 24.75px;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: .5rem;
    text-decoration: none !important
}

.is-twentynineteen .wp-block-coblocks-posts__content a,
.is-twentynineteen .wp-block-coblocks-posts__date {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-weight: 700
}

.is-twentytwenty .wp-block-coblocks-posts .has-columns {
    margin-bottom: .5em
}

.is-twentytwenty .wp-block-coblocks-posts a {
    font-family: Inter var, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
    text-decoration: none
}

.is-twentytwenty .wp-block-coblocks-posts a:hover {
    text-decoration: underline
}

.is-twentytwenty .wp-block-coblocks-posts__date {
    color: #6d6d6d;
    font-family: Inter var, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-size: .7em;
    font-weight: 600;
    letter-spacing: normal;
    margin-bottom: .2em
}

.wp-block-coblocks-pricing-table-item {
    padding: 4em 1.5em;
    position: relative;
    width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-pricing-table-item {
        margin-bottom: 0
    }
}

.wp-block-coblocks-pricing-table-item:not(.has-background) {
    background: #8c8c971a
}

.wp-block-coblocks-pricing-table-item__title {
    margin-top: 0;
    padding: 0
}

.wp-block-coblocks-pricing-table-item__price-wrapper {
    display: flex;
    line-height: 1;
    position: relative
}

.wp-block-coblocks-pricing-table-item__currency {
    font-size: 1em
}

.wp-block-coblocks-pricing-table-item__amount {
    font-size: 5em;
    letter-spacing: normal;
    line-height: 1 !important;
    margin: 0;
    padding: 0
}

.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__features {
    margin: 0 0 30px;
    max-width: none;
    padding: 0
}

.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__features li,
.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__features ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__features li:after {
    content: " "
}

.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__title {
    display: block;
    margin-bottom: 20px
}

.wp-block-coblocks-pricing-table-item .wp-block-coblocks-pricing-table-item__price-wrapper {
    margin-bottom: 20px
}

.wp-block-coblocks-pricing-table-item .wp-block-button {
    margin-bottom: 0
}

.has-text-align-center .wp-block-coblocks-pricing-table-item__price-wrapper {
    justify-content: center
}

.has-text-align-right .wp-block-coblocks-pricing-table-item__price-wrapper {
    justify-content: flex-end
}

@media(max-width:959px) {

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-small-gutter>:not(.block-editor-inner-blocks):first-of-type,
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-small-gutter>:not(.block-editor-inner-blocks):nth-of-type(2) {
        flex-basis: 50%;
        max-width: calc(50% - var(--coblocks-spacing--1, .5em))
    }

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-small-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        flex-basis: 100%;
        margin-top: calc(var(--coblocks-spacing--1, .5em)*2);
        max-width: 100%
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-small-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        margin-top: 0
    }
}

@media(max-width:959px) {

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-medium-gutter>:not(.block-editor-inner-blocks):first-of-type,
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-medium-gutter>:not(.block-editor-inner-blocks):nth-of-type(2) {
        flex-basis: 50%;
        max-width: calc(50% - var(--coblocks-spacing--2, 1em))
    }

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-medium-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        flex-basis: 100%;
        margin-top: calc(var(--coblocks-spacing--2, 1em)*2);
        max-width: 100%
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-medium-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        margin-top: 0
    }
}

@media(max-width:959px) {

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-large-gutter>:not(.block-editor-inner-blocks):first-of-type,
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-large-gutter>:not(.block-editor-inner-blocks):nth-of-type(2) {
        flex-basis: 50%;
        max-width: calc(49.75124% - var(--coblocks-spacing--3, 1.5em))
    }

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-large-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        flex-basis: 100%;
        margin-top: calc(var(--coblocks-spacing--3, 1.5em)*2);
        max-width: 100%
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-large-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        margin-top: 0
    }
}

@media(max-width:959px) {

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-huge-gutter>:not(.block-editor-inner-blocks):first-of-type,
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-huge-gutter>:not(.block-editor-inner-blocks):nth-of-type(2) {
        flex-basis: 50%;
        max-width: calc(49.50495% - var(--coblocks-spacing--4, 2em))
    }

    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-huge-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        flex-basis: 100%;
        margin-top: calc(var(--coblocks-spacing--4, 2em)*2);
        max-width: 100%
    }
}

@media(max-width:599px) {
    .wp-block-coblocks-pricing-table__inner.has-3-columns.has-huge-gutter>:not(.block-editor-inner-blocks):nth-of-type(3) {
        margin-top: 0
    }
}

@media(min-width:600px) {
    .wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between
    }
}

.wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) .wp-block-coblocks-pricing-table-item {
    margin-bottom: 1.5em
}

@media(min-width:600px) {
    .wp-block-coblocks-pricing-table.has-2-columns .wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) .wp-block-coblocks-pricing-table-item {
        flex-basis: 50%;
        max-width: calc(50% - .75em)
    }

    .wp-block-coblocks-pricing-table.has-3-columns .wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) .wp-block-coblocks-pricing-table-item {
        flex-basis: 33.333%;
        max-width: calc(33.33333% - .75em)
    }

    .wp-block-coblocks-pricing-table.has-4-columns .wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) .wp-block-coblocks-pricing-table-item {
        flex-basis: 25%;
        max-width: calc(25% - .75em)
    }
}

@media(min-width:600px)and (max-width:1200px) {
    .wp-block-coblocks-pricing-table.has-4-columns .wp-block-coblocks-pricing-table__inner:not(.has-responsive-columns) .wp-block-coblocks-pricing-table-item {
        flex-basis: 50%;
        max-width: calc(50% - .75em)
    }
}

.wp-block-coblocks-row {
    position: relative
}

.wp-block-coblocks-row:not([data-columns="1"]) {
    display: flex
}

.wp-block-coblocks-row:not([data-columns="1"]) .wp-block-coblocks-row__inner {
    display: flex;
    flex: 1
}

.wp-block-coblocks-row[data-columns="1"] .wp-block-coblocks-column__inner>[class*=wp-block-] {
    margin-left: auto;
    margin-right: auto;
    max-width: 48vw
}

.wp-block-coblocks-row[data-columns="1"] .wp-block-coblocks-column__inner>[class*=wp-block-].alignwide {
    max-width: 70.5882352941vw
}

.wp-block-coblocks-row[data-columns="1"] .wp-block-coblocks-column__inner>[class*=wp-block-].alignfull,
.wp-block-coblocks-row[data-columns="1"] .wp-block-coblocks-column__inner>[class*=wp-block-][data-columns="1"] .wp-block-coblocks-column__inner>:not([class*=wp-block-]) {
    max-width: 100%
}

.wp-block-coblocks-row[data-columns="1"] .wp-block-coblocks-column__inner>:not([class*=wp-block-]) {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%
}

.wp-block-coblocks-column {
    height: 100%;
    margin-bottom: 32px;
    min-width: 0;
    overflow-wrap: break-word;
    position: relative;
    word-break: break-word
}

@media(min-width:600px) {
    .wp-block-coblocks-column {
        margin-bottom: 0
    }
}

.wp-block-coblocks-column p {
    margin-top: 0
}

.wp-block-coblocks-column p:last-of-type {
    margin-bottom: 0
}

.wp-block-coblocks-column__inner.has-background-overlay * {
    position: relative
}

.has-small-gutter>[class*=wp-block-coblocks-column]:nth-child(odd) {
    margin-right: var(--coblocks-spacing--1, .5em)
}

.has-small-gutter>[class*=wp-block-coblocks-column]:not(:first-child),
.has-small-gutter>[class*=wp-block-coblocks-column]:nth-child(2n) {
    margin-left: var(--coblocks-spacing--1, .5em)
}

.has-small-gutter>[class*=wp-block-coblocks-column]:not(:last-child) {
    margin-right: var(--coblocks-spacing--1, .5em)
}

.has-medium-gutter>[class*=wp-block-coblocks-column]:nth-child(odd) {
    margin-right: var(--coblocks-spacing--2, 1em)
}

.has-medium-gutter>[class*=wp-block-coblocks-column]:not(:first-child),
.has-medium-gutter>[class*=wp-block-coblocks-column]:nth-child(2n) {
    margin-left: var(--coblocks-spacing--2, 1em)
}

.has-medium-gutter>[class*=wp-block-coblocks-column]:not(:last-child) {
    margin-right: var(--coblocks-spacing--2, 1em)
}

.has-large-gutter>[class*=wp-block-coblocks-column]:nth-child(odd) {
    margin-right: var(--coblocks-spacing--3, 1.5em)
}

.has-large-gutter>[class*=wp-block-coblocks-column]:not(:first-child),
.has-large-gutter>[class*=wp-block-coblocks-column]:nth-child(2n) {
    margin-left: var(--coblocks-spacing--3, 1.5em)
}

.has-large-gutter>[class*=wp-block-coblocks-column]:not(:last-child) {
    margin-right: var(--coblocks-spacing--3, 1.5em)
}

.has-huge-gutter>[class*=wp-block-coblocks-column]:nth-child(odd) {
    margin-right: var(--coblocks-spacing--4, 2em)
}

.has-huge-gutter>[class*=wp-block-coblocks-column]:not(:first-child),
.has-huge-gutter>[class*=wp-block-coblocks-column]:nth-child(2n) {
    margin-left: var(--coblocks-spacing--4, 2em)
}

.has-huge-gutter>[class*=wp-block-coblocks-column]:not(:last-child) {
    margin-right: var(--coblocks-spacing--4, 2em)
}

.has-custom-gutter>[class*=wp-block-coblocks-column]:nth-child(odd) {
    margin-right: var(--coblocks-custom-gutter, 0)
}

.has-custom-gutter>[class*=wp-block-coblocks-column]:not(:first-child),
.has-custom-gutter>[class*=wp-block-coblocks-column]:nth-child(2n) {
    margin-left: var(--coblocks-custom-gutter, 0)
}

.has-custom-gutter>[class*=wp-block-coblocks-column]:not(:last-child) {
    margin-right: var(--coblocks-custom-gutter, 0)
}

@media(max-width:599px) {
    .wp-block-coblocks-row__inner.is-stacked-on-mobile {
        flex-direction: column
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile>.wp-block-coblocks-column {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-no-gutter>[class*=wp-block]:not(:last-child),
    .wp-block-coblocks-row__inner.is-stacked-on-mobile>.wp-block-coblocks-column:last-child {
        margin-bottom: 0
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-small-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--1, .5em)*2)
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-medium-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--2, 1em)*2)
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-large-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--3, 1.5em)*2)
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-huge-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-spacing--4, 2em)*2)
    }

    .wp-block-coblocks-row__inner.is-stacked-on-mobile.has-custom-gutter>[class*=wp-block]:not(:last-child) {
        margin-bottom: calc(var(--coblocks-custom-gutter, 0)*2)
    }
}

.wp-block-coblocks-row__inner [data-type="coblocks/column"] {
    display: flex;
    margin-bottom: 0;
    margin-top: 0
}

.wp-block-coblocks-row__inner [data-type="coblocks/column"] .wp-block-coblocks-column,
.wp-block-coblocks-row__inner [data-type="coblocks/column"] .wp-block-coblocks-column__inner {
    flex: 1
}

.wp-block-coblocks-row__inner.are-vertically-aligned-top {
    align-items: flex-start
}

.wp-block-coblocks-row__inner.are-vertically-aligned-center {
    align-items: center
}

.wp-block-coblocks-row__inner.are-vertically-aligned-bottom {
    align-items: flex-end
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-top {
    display: flex
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-top .wp-block-coblocks-column__inner {
    align-self: flex-start
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-center {
    display: flex
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-center .wp-block-coblocks-column__inner {
    align-self: center
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-bottom {
    display: flex
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-bottom .wp-block-coblocks-column__inner {
    align-self: flex-end
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column .wp-block-coblocks-column__inner {
    flex: 1
}

.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-bottom,
.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-center,
.wp-block-coblocks-row__inner .wp-block-coblocks-column.is-vertically-aligned-top {
    width: 100%
}

.wp-block-coblocks-service {
    margin: 0 0 var(--coblocks-spacing--3, 1.5em);
    max-width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-service {
        margin: 0
    }
}

.wp-block-coblocks-service:last-child {
    margin-bottom: 0
}

.wp-block-coblocks-service h2,
.wp-block-coblocks-service h3,
.wp-block-coblocks-service h4,
.wp-block-coblocks-service h5,
.wp-block-coblocks-service h6 {
    margin-bottom: .5em;
    margin-top: 0
}

.wp-block-coblocks-service p:first-of-type {
    margin-top: 0
}

.wp-block-coblocks-service p:last-of-type {
    margin-bottom: 0
}

.wp-block-coblocks-service .wp-block-buttons {
    margin: 0 0 1.5em
}

.wp-block-coblocks-service .wp-block-buttons .wp-block-button {
    margin-bottom: 0;
    margin-top: 1.5em
}

.wp-block-coblocks-service__figure {
    display: flex;
    margin: 0 0 1.5em;
    padding: 75% 0 0;
    position: relative;
    width: 100%
}

.is-style-sixbynine .wp-block-coblocks-service__figure {
    padding-top: 56.25%
}

.is-style-circle .wp-block-coblocks-service__figure {
    border-radius: 100%;
    padding-top: 100%
}

.is-style-circle .wp-block-coblocks-service__figure img {
    border-radius: 100%
}

.is-style-square .wp-block-coblocks-service__figure {
    padding-top: 100%
}

.wp-block-coblocks-service__figure img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 100%
}

@media(min-width:600px) {
    .wp-block-coblocks-services[data-columns] {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .wp-block-coblocks-services[data-columns][data-columns="2"]>.wp-block-coblocks-service {
        flex-basis: 50%;
        max-width: calc(50% - var(--coblocks-spacing--2, 1em))
    }

    .wp-block-coblocks-services[data-columns][data-columns="3"]>.wp-block-coblocks-service {
        flex-basis: 33.333%;
        max-width: calc(33.33333% - var(--coblocks-spacing--2, 1em))
    }
}

@media(min-width:600px)and (max-width:1280px) {
    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service {
        flex-basis: 50%;
        margin-bottom: 3em;
        max-width: calc(50% - var(--coblocks-spacing--2, 1em))
    }

    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:first-child,
    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:nth-child(3) {
        margin-left: 0
    }

    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:nth-child(2),
    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:nth-child(4) {
        margin-right: 0
    }

    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:nth-child(3),
    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service:nth-child(4) {
        margin-bottom: 0
    }
}

@media(min-width:1280px) {
    .wp-block-coblocks-services[data-columns][data-columns="4"]>.wp-block-coblocks-service {
        flex-basis: 25%;
        max-width: calc(25% - var(--coblocks-spacing--2, 1em))
    }
}

.wp-block-coblocks-services .has-1-columns {
    justify-content: center
}

.is-twentytwenty .wp-block-coblocks-services .has-1-columns .wp-block-coblocks-service-column {
    max-width: 58rem
}

.wp-block-coblocks-shape-divider {
    display: flex;
    flex-direction: column;
    position: relative
}

.wp-block-coblocks-shape-divider svg {
    bottom: -1px;
    fill: currentColor;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%
}

.wp-block-coblocks-shape-divider__svg-wrapper {
    position: relative
}

.wp-block-coblocks-shape-divider__alt-wrapper {
    background-color: currentColor
}

.wp-block-coblocks-shape-divider.is-horizontally-flipped svg {
    transform: scaleX(-1)
}

.wp-block-coblocks-shape-divider.is-vertically-flipped {
    flex-direction: column-reverse
}

.wp-block-coblocks-shape-divider.is-vertically-flipped svg {
    bottom: 0;
    top: -1px;
    transform: scaleY(-1)
}

.wp-block-coblocks-shape-divider.is-vertically-flipped.is-horizontally-flipped svg {
    transform: scaleX(-1) scaleY(-1)
}

.wp-block-coblocks-shape-divider .divider--waves path:first-child {
    opacity: .15
}

.wp-block-coblocks-shape-divider .divider--waves path:nth-child(2) {
    opacity: .3
}

.wp-block-coblocks-social.has-background {
    padding: 20px 30px
}

.wp-block-coblocks-social .wp-block-button__link:not(.has-background) {
    background-color: #31373c
}

.wp-block-coblocks-social .wp-block-button__link:not(.has-text-color) {
    color: #fff
}

.wp-block-coblocks-social li,
.wp-block-coblocks-social ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important
}

.wp-block-coblocks-social li {
    display: inline-block;
    margin: 3px 6px 3px 0 !important;
    vertical-align: middle
}

.wp-block-coblocks-social li:after,
.wp-block-coblocks-social li:before {
    display: none !important
}

.wp-block-coblocks-social__button {
    align-items: center;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    cursor: pointer;
    display: inline-flex !important;
    font-size: 15px;
    justify-content: center;
    line-height: 1;
    padding: 10px 14px;
    text-align: center;
    text-decoration: none !important;
    white-space: normal;
    word-break: break-all
}

.wp-block-coblocks-social__button:first-of-type {
    margin-left: 0 !important
}

.wp-block-coblocks-social__button:last-of-type {
    margin-right: 0 !important
}

.wp-block-coblocks-social:not(.is-style-mask) .wp-block-coblocks-social__icon,
.wp-block-coblocks-social:not(.is-style-mask) .wp-block-coblocks-social__icon:hover,
.wp-block-coblocks-social__text,
.wp-block-coblocks-social__text:hover {
    color: inherit
}

.wp-block-coblocks-social__icon+.wp-block-coblocks-social__text {
    margin-left: 8px
}

.wp-block-coblocks-social__icon {
    background-color: currentColor;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    height: 18px;
    width: 18px
}

.wp-block-coblocks-social__button--facebook .wp-block-coblocks-social__icon+.wp-block-coblocks-social__text,
.wp-block-coblocks-social__button--linkedin .wp-block-coblocks-social__icon+.wp-block-coblocks-social__text {
    margin-left: 9px
}

.wp-block-coblocks-social__button--tumblr .wp-block-coblocks-social__icon+.wp-block-coblocks-social__text {
    margin-left: 4px
}

.wp-block-coblocks-social__button--twitter .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--twitter .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjk1NCA0LjU2OWMtLjg4NS4zODktMS44My42NTQtMi44MjUuNzc1IDEuMDE0LS42MTEgMS43OTQtMS41NzQgMi4xNjMtMi43MjMtLjk1MS41NTUtMi4wMDUuOTU5LTMuMTI3IDEuMTg0LS44OTYtLjk1OS0yLjE3My0xLjU1OS0zLjU5MS0xLjU1OS0yLjcxNyAwLTQuOTIgMi4yMDMtNC45MiA0LjkxNyAwIC4zOS4wNDUuNzY1LjEyNyAxLjEyNC00LjA5LS4xOTMtNy43MTUtMi4xNTctMTAuMTQxLTUuMTI2LS40MjcuNzIyLS42NjYgMS41NjEtLjY2NiAyLjQ3NSAwIDEuNzEuODcgMy4yMTMgMi4xODggNC4wOTYtLjgwNy0uMDI2LTEuNTY2LS4yNDgtMi4yMjgtLjYxNnYuMDYxYzAgMi4zODUgMS42OTMgNC4zNzQgMy45NDYgNC44MjctLjQxMy4xMTEtLjg0OS4xNzEtMS4yOTYuMTcxLS4zMTQgMC0uNjE1LS4wMy0uOTE2LS4wODYuNjMxIDEuOTUzIDIuNDQ1IDMuMzc3IDQuNjA0IDMuNDE3LTEuNjggMS4zMTktMy44MDkgMi4xMDUtNi4xMDIgMi4xMDUtLjM5IDAtLjc3OS0uMDIzLTEuMTctLjA2NyAyLjE4OSAxLjM5NCA0Ljc2OCAyLjIwOSA3LjU1NyAyLjIwOSA5LjA1NCAwIDEzLjk5OS03LjQ5NiAxMy45OTktMTMuOTg2IDAtLjIwOSAwLS40Mi0uMDE1LS42My45NjEtLjY4OSAxLjgtMS41NiAyLjQ2LTIuNTQ4eiIvPjwvc3ZnPg==);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--facebook .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEyLDBhMTIuMDgsMTIuMDgsMCwwLDAtMS44OCwyNFYxNS41N2gtM1YxMi4wOGgzVjkuMzhjMC0zLDEuOC00LjcsNC41NC00LjdhMTguNTIsMTguNTIsMCwwLDEsMi42OC4yM1Y4SDE1LjgzYTEuNzMsMS43MywwLDAsMC0xLjk0LDEuNDloMGExLjIxLDEuMjEsMCwwLDAsMCwuMzh2Mi4yM0gxNy4ybC0uNTMsMy40OUgxMy44OFYyNEExMi4wOCwxMi4wOCwwLDAsMCwxMiwwWiIvPjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEyLDBhMTIuMDgsMTIuMDgsMCwwLDAtMS44OCwyNFYxNS41N2gtM1YxMi4wOGgzVjkuMzhjMC0zLDEuOC00LjcsNC41NC00LjdhMTguNTIsMTguNTIsMCwwLDEsMi42OC4yM1Y4SDE1LjgzYTEuNzMsMS43MywwLDAsMC0xLjk0LDEuNDloMGExLjIxLDEuMjEsMCwwLDAsMCwuMzh2Mi4yM0gxNy4ybC0uNTMsMy40OUgxMy44OFYyNEExMi4wOCwxMi4wOCwwLDAsMCwxMiwwWiIvPjwvc3ZnPgo=)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--facebook .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEyLDBhMTIuMDgsMTIuMDgsMCwwLDAtMS44OCwyNFYxNS41N2gtM1YxMi4wOGgzVjkuMzhjMC0zLDEuOC00LjcsNC41NC00LjdhMTguNTIsMTguNTIsMCwwLDEsMi42OC4yM1Y4SDE1LjgzYTEuNzMsMS43MywwLDAsMC0xLjk0LDEuNDloMGExLjIxLDEuMjEsMCwwLDAsMCwuMzh2Mi4yM0gxNy4ybC0uNTMsMy40OUgxMy44OFYyNEExMi4wOCwxMi4wOCwwLDAsMCwxMiwwWiIvPjwvc3ZnPgo=);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--pinterest .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjAxNyAwYy02LjYyMSAwLTExLjk4OCA1LjM2Ny0xMS45ODggMTEuOTg3IDAgNS4wNzkgMy4xNTggOS40MTcgNy42MTggMTEuMTYyLS4xMDUtLjk0OS0uMTk5LTIuNDAzLjA0MS0zLjQzOS4yMTktLjkzNyAxLjQwNi01Ljk1NyAxLjQwNi01Ljk1N3MtLjM1OS0uNzItLjM1OS0xLjc4MWMwLTEuNjYzLjk2Ny0yLjkxMSAyLjE2OC0yLjkxMSAxLjAyNCAwIDEuNTE4Ljc2OSAxLjUxOCAxLjY4OCAwIDEuMDI5LS42NTMgMi41NjctLjk5MiAzLjk5Mi0uMjg1IDEuMTkzLjYgMi4xNjUgMS43NzUgMi4xNjUgMi4xMjggMCAzLjc2OC0yLjI0NSAzLjc2OC01LjQ4NyAwLTIuODYxLTIuMDYzLTQuODY5LTUuMDA4LTQuODY5LTMuNDEgMC01LjQwOSAyLjU2Mi01LjQwOSA1LjE5OSAwIDEuMDMzLjM5NCAyLjE0My44ODkgMi43NDEuMDk5LjEyLjExMi4yMjUuMDg1LjM0NS0uMDkuMzc1LS4yOTMgMS4xOTktLjMzNCAxLjM2My0uMDUzLjIyNS0uMTcyLjI3MS0uNDAxLjE2NS0xLjQ5NS0uNjktMi40MzMtMi44NzgtMi40MzMtNC42NDYgMC0zLjc3NiAyLjc0OC03LjI1MiA3LjkyLTcuMjUyIDQuMTU4IDAgNy4zOTIgMi45NjcgNy4zOTIgNi45MjMgMCA0LjEzNS0yLjYwNyA3LjQ2Mi02LjIzMyA3LjQ2Mi0xLjIxNCAwLTIuMzU0LS42MjktMi43NTgtMS4zNzlsLS43NDkgMi44NDhjLS4yNjkgMS4wNDUtMS4wMDQgMi4zNTItMS40OTggMy4xNDYgMS4xMjMuMzQ1IDIuMzA2LjUzNSAzLjU1LjUzNSA2LjYwNyAwIDExLjk4NS01LjM2NSAxMS45ODUtMTEuOTg3IDAtNi42MjMtNS4zNzgtMTEuOTg3LTExLjk4NS0xMS45ODd6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjAxNyAwYy02LjYyMSAwLTExLjk4OCA1LjM2Ny0xMS45ODggMTEuOTg3IDAgNS4wNzkgMy4xNTggOS40MTcgNy42MTggMTEuMTYyLS4xMDUtLjk0OS0uMTk5LTIuNDAzLjA0MS0zLjQzOS4yMTktLjkzNyAxLjQwNi01Ljk1NyAxLjQwNi01Ljk1N3MtLjM1OS0uNzItLjM1OS0xLjc4MWMwLTEuNjYzLjk2Ny0yLjkxMSAyLjE2OC0yLjkxMSAxLjAyNCAwIDEuNTE4Ljc2OSAxLjUxOCAxLjY4OCAwIDEuMDI5LS42NTMgMi41NjctLjk5MiAzLjk5Mi0uMjg1IDEuMTkzLjYgMi4xNjUgMS43NzUgMi4xNjUgMi4xMjggMCAzLjc2OC0yLjI0NSAzLjc2OC01LjQ4NyAwLTIuODYxLTIuMDYzLTQuODY5LTUuMDA4LTQuODY5LTMuNDEgMC01LjQwOSAyLjU2Mi01LjQwOSA1LjE5OSAwIDEuMDMzLjM5NCAyLjE0My44ODkgMi43NDEuMDk5LjEyLjExMi4yMjUuMDg1LjM0NS0uMDkuMzc1LS4yOTMgMS4xOTktLjMzNCAxLjM2My0uMDUzLjIyNS0uMTcyLjI3MS0uNDAxLjE2NS0xLjQ5NS0uNjktMi40MzMtMi44NzgtMi40MzMtNC42NDYgMC0zLjc3NiAyLjc0OC03LjI1MiA3LjkyLTcuMjUyIDQuMTU4IDAgNy4zOTIgMi45NjcgNy4zOTIgNi45MjMgMCA0LjEzNS0yLjYwNyA3LjQ2Mi02LjIzMyA3LjQ2Mi0xLjIxNCAwLTIuMzU0LS42MjktMi43NTgtMS4zNzlsLS43NDkgMi44NDhjLS4yNjkgMS4wNDUtMS4wMDQgMi4zNTItMS40OTggMy4xNDYgMS4xMjMuMzQ1IDIuMzA2LjUzNSAzLjU1LjUzNSA2LjYwNyAwIDExLjk4NS01LjM2NSAxMS45ODUtMTEuOTg3IDAtNi42MjMtNS4zNzgtMTEuOTg3LTExLjk4NS0xMS45ODd6Ii8+PC9zdmc+)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--pinterest .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjAxNyAwYy02LjYyMSAwLTExLjk4OCA1LjM2Ny0xMS45ODggMTEuOTg3IDAgNS4wNzkgMy4xNTggOS40MTcgNy42MTggMTEuMTYyLS4xMDUtLjk0OS0uMTk5LTIuNDAzLjA0MS0zLjQzOS4yMTktLjkzNyAxLjQwNi01Ljk1NyAxLjQwNi01Ljk1N3MtLjM1OS0uNzItLjM1OS0xLjc4MWMwLTEuNjYzLjk2Ny0yLjkxMSAyLjE2OC0yLjkxMSAxLjAyNCAwIDEuNTE4Ljc2OSAxLjUxOCAxLjY4OCAwIDEuMDI5LS42NTMgMi41NjctLjk5MiAzLjk5Mi0uMjg1IDEuMTkzLjYgMi4xNjUgMS43NzUgMi4xNjUgMi4xMjggMCAzLjc2OC0yLjI0NSAzLjc2OC01LjQ4NyAwLTIuODYxLTIuMDYzLTQuODY5LTUuMDA4LTQuODY5LTMuNDEgMC01LjQwOSAyLjU2Mi01LjQwOSA1LjE5OSAwIDEuMDMzLjM5NCAyLjE0My44ODkgMi43NDEuMDk5LjEyLjExMi4yMjUuMDg1LjM0NS0uMDkuMzc1LS4yOTMgMS4xOTktLjMzNCAxLjM2My0uMDUzLjIyNS0uMTcyLjI3MS0uNDAxLjE2NS0xLjQ5NS0uNjktMi40MzMtMi44NzgtMi40MzMtNC42NDYgMC0zLjc3NiAyLjc0OC03LjI1MiA3LjkyLTcuMjUyIDQuMTU4IDAgNy4zOTIgMi45NjcgNy4zOTIgNi45MjMgMCA0LjEzNS0yLjYwNyA3LjQ2Mi02LjIzMyA3LjQ2Mi0xLjIxNCAwLTIuMzU0LS42MjktMi43NTgtMS4zNzlsLS43NDkgMi44NDhjLS4yNjkgMS4wNDUtMS4wMDQgMi4zNTItMS40OTggMy4xNDYgMS4xMjMuMzQ1IDIuMzA2LjUzNSAzLjU1LjUzNSA2LjYwNyAwIDExLjk4NS01LjM2NSAxMS45ODUtMTEuOTg3IDAtNi42MjMtNS4zNzgtMTEuOTg3LTExLjk4NS0xMS45ODd6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--linkedin .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjQ0NyAyMC40NTJoLTMuNTU0di01LjU2OWMwLTEuMzI4LS4wMjctMy4wMzctMS44NTItMy4wMzctMS44NTMgMC0yLjEzNiAxLjQ0NS0yLjEzNiAyLjkzOXY1LjY2N2gtMy41NTR2LTExLjQ1MmgzLjQxNHYxLjU2MWguMDQ2Yy40NzctLjkgMS42MzctMS44NSAzLjM3LTEuODUgMy42MDEgMCA0LjI2NyAyLjM3IDQuMjY3IDUuNDU1djYuMjg2em0tMTUuMTEtMTMuMDE5Yy0xLjE0NCAwLTIuMDYzLS45MjYtMi4wNjMtMi4wNjUgMC0xLjEzOC45Mi0yLjA2MyAyLjA2My0yLjA2MyAxLjE0IDAgMi4wNjQuOTI1IDIuMDY0IDIuMDYzIDAgMS4xMzktLjkyNSAyLjA2NS0yLjA2NCAyLjA2NXptMS43ODIgMTMuMDE5aC0zLjU2NHYtMTEuNDUyaDMuNTY0em0xNS4xMDYtMjAuNDUyaC0yMC40NTRjLS45NzkgMC0xLjc3MS43NzQtMS43NzEgMS43Mjl2MjAuNTQyYzAgLjk1Ni43OTIgMS43MjkgMS43NzEgMS43MjloMjAuNDUxYy45NzggMCAxLjc3OC0uNzczIDEuNzc4LTEuNzI5di0yMC41NDJjMC0uOTU1LS44LTEuNzI5LTEuNzc4LTEuNzI5eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjQ0NyAyMC40NTJoLTMuNTU0di01LjU2OWMwLTEuMzI4LS4wMjctMy4wMzctMS44NTItMy4wMzctMS44NTMgMC0yLjEzNiAxLjQ0NS0yLjEzNiAyLjkzOXY1LjY2N2gtMy41NTR2LTExLjQ1MmgzLjQxNHYxLjU2MWguMDQ2Yy40NzctLjkgMS42MzctMS44NSAzLjM3LTEuODUgMy42MDEgMCA0LjI2NyAyLjM3IDQuMjY3IDUuNDU1djYuMjg2em0tMTUuMTEtMTMuMDE5Yy0xLjE0NCAwLTIuMDYzLS45MjYtMi4wNjMtMi4wNjUgMC0xLjEzOC45Mi0yLjA2MyAyLjA2My0yLjA2MyAxLjE0IDAgMi4wNjQuOTI1IDIuMDY0IDIuMDYzIDAgMS4xMzktLjkyNSAyLjA2NS0yLjA2NCAyLjA2NXptMS43ODIgMTMuMDE5aC0zLjU2NHYtMTEuNDUyaDMuNTY0em0xNS4xMDYtMjAuNDUyaC0yMC40NTRjLS45NzkgMC0xLjc3MS43NzQtMS43NzEgMS43Mjl2MjAuNTQyYzAgLjk1Ni43OTIgMS43MjkgMS43NzEgMS43MjloMjAuNDUxYy45NzggMCAxLjc3OC0uNzczIDEuNzc4LTEuNzI5di0yMC41NDJjMC0uOTU1LS44LTEuNzI5LTEuNzc4LTEuNzI5eiIvPjwvc3ZnPg==)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--linkedin .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjQ0NyAyMC40NTJoLTMuNTU0di01LjU2OWMwLTEuMzI4LS4wMjctMy4wMzctMS44NTItMy4wMzctMS44NTMgMC0yLjEzNiAxLjQ0NS0yLjEzNiAyLjkzOXY1LjY2N2gtMy41NTR2LTExLjQ1MmgzLjQxNHYxLjU2MWguMDQ2Yy40NzctLjkgMS42MzctMS44NSAzLjM3LTEuODUgMy42MDEgMCA0LjI2NyAyLjM3IDQuMjY3IDUuNDU1djYuMjg2em0tMTUuMTEtMTMuMDE5Yy0xLjE0NCAwLTIuMDYzLS45MjYtMi4wNjMtMi4wNjUgMC0xLjEzOC45Mi0yLjA2MyAyLjA2My0yLjA2MyAxLjE0IDAgMi4wNjQuOTI1IDIuMDY0IDIuMDYzIDAgMS4xMzktLjkyNSAyLjA2NS0yLjA2NCAyLjA2NXptMS43ODIgMTMuMDE5aC0zLjU2NHYtMTEuNDUyaDMuNTY0em0xNS4xMDYtMjAuNDUyaC0yMC40NTRjLS45NzkgMC0xLjc3MS43NzQtMS43NzEgMS43Mjl2MjAuNTQyYzAgLjk1Ni43OTIgMS43MjkgMS43NzEgMS43MjloMjAuNDUxYy45NzggMCAxLjc3OC0uNzczIDEuNzc4LTEuNzI5di0yMC41NDJjMC0uOTU1LS44LTEuNzI5LTEuNzc4LTEuNzI5eiIvPjwvc3ZnPg==);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--tumblr .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTE0LjU2MyAyNGMtNS4wOTMgMC03LjAzMS0zLjc1Ni03LjAzMS02LjQxMXYtNy44NDJoLTIuNDE2di0zLjA5OWMzLjYzLTEuMzEzIDQuNTEyLTQuNTk2IDQuNzEtNi40NjkuMDE0LS4xMjguMTE1LS4xNzkuMTczLS4xNzloMy41MTd2Ni4xMTRoNC44MDF2My42MzNoLTQuODJ2Ny40N2MuMDE2IDEuMDAxLjM3NSAyLjM3MSAyLjIwNyAyLjM3MWguMDljLjYzMS0uMDIgMS40ODYtLjIwNSAxLjkzNi0uNDE5bDEuMTU2IDMuNDI1Yy0uNDM2LjYzNi0yLjQgMS4zNzQtNC4xNTYgMS40MDRoLS4xNzh6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTE0LjU2MyAyNGMtNS4wOTMgMC03LjAzMS0zLjc1Ni03LjAzMS02LjQxMXYtNy44NDJoLTIuNDE2di0zLjA5OWMzLjYzLTEuMzEzIDQuNTEyLTQuNTk2IDQuNzEtNi40NjkuMDE0LS4xMjguMTE1LS4xNzkuMTczLS4xNzloMy41MTd2Ni4xMTRoNC44MDF2My42MzNoLTQuODJ2Ny40N2MuMDE2IDEuMDAxLjM3NSAyLjM3MSAyLjIwNyAyLjM3MWguMDljLjYzMS0uMDIgMS40ODYtLjIwNSAxLjkzNi0uNDE5bDEuMTU2IDMuNDI1Yy0uNDM2LjYzNi0yLjQgMS4zNzQtNC4xNTYgMS40MDRoLS4xNzh6Ii8+PC9zdmc+)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--tumblr .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTE0LjU2MyAyNGMtNS4wOTMgMC03LjAzMS0zLjc1Ni03LjAzMS02LjQxMXYtNy44NDJoLTIuNDE2di0zLjA5OWMzLjYzLTEuMzEzIDQuNTEyLTQuNTk2IDQuNzEtNi40NjkuMDE0LS4xMjguMTE1LS4xNzkuMTczLS4xNzloMy41MTd2Ni4xMTRoNC44MDF2My42MzNoLTQuODJ2Ny40N2MuMDE2IDEuMDAxLjM3NSAyLjM3MSAyLjIwNyAyLjM3MWguMDljLjYzMS0uMDIgMS40ODYtLjIwNSAxLjkzNi0uNDE5bDEuMTU2IDMuNDI1Yy0uNDM2LjYzNi0yLjQgMS4zNzQtNC4xNTYgMS40MDRoLS4xNzh6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--reddit .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTI0IDExLjc3OWMwLTEuNDU5LTEuMTkyLTIuNjQ1LTIuNjU3LTIuNjQ1LS43MTUgMC0xLjM2My4yODYtMS44NC43NDYtMS44MS0xLjE5MS00LjI1OS0xLjk0OS02Ljk3MS0yLjA0NmwxLjQ4My00LjY2OSA0LjAxNi45NDEtLjAwNi4wNThjMCAxLjE5My45NzUgMi4xNjMgMi4xNzQgMi4xNjMgMS4xOTggMCAyLjE3Mi0uOTcgMi4xNzItMi4xNjNzLS45NzUtMi4xNjQtMi4xNzItMi4xNjRjLS45MiAwLTEuNzA0LjU3NC0yLjAyMSAxLjM3OWwtNC4zMjktMS4wMTVjLS4xODktLjA0Ni0uMzgxLjA2My0uNDQuMjQ5bC0xLjY1NCA1LjIwN2MtMi44MzguMDM0LTUuNDA5Ljc5OC03LjMgMi4wMjUtLjQ3NC0uNDM4LTEuMTAzLS43MTItMS43OTktLjcxMi0xLjQ2NSAwLTIuNjU2IDEuMTg3LTIuNjU2IDIuNjQ2IDAgLjk3LjUzMyAxLjgxMSAxLjMxNyAyLjI3MS0uMDUyLjI4Mi0uMDg2LjU2Ny0uMDg2Ljg1NyAwIDMuOTExIDQuODA4IDcuMDkzIDEwLjcxOSA3LjA5M3MxMC43Mi0zLjE4MiAxMC43Mi03LjA5M2MwLS4yNzQtLjAyOS0uNTQ0LS4wNzUtLjgxLjgzMi0uNDQ3IDEuNDA1LTEuMzEyIDEuNDA1LTIuMzE4em0tMTcuMjI0IDEuODE2YzAtLjg2OC43MS0xLjU3NSAxLjU4Mi0xLjU3NXMxLjU4MS43MDcgMS41ODEgMS41NzUtLjcwOSAxLjU3NC0xLjU4MSAxLjU3NC0xLjU4Mi0uNzA2LTEuNTgyLTEuNTc0em05LjA2MSA0LjY2OWMtLjc5Ny43OTMtMi4wNDggMS4xNzktMy44MjQgMS4xNzlsLS4wMTMtLjAwMy0uMDEzLjAwM2MtMS43NzcgMC0zLjAyOC0uMzg2LTMuODI0LTEuMTc5LS4xNDUtLjE0NC0uMTQ1LS4zNzkgMC0uNTIzLjE0NS0uMTQ1LjM4MS0uMTQ1LjUyNiAwIC42NS42NDcgMS43MjkuOTYxIDMuMjk4Ljk2MWwuMDEzLjAwMy4wMTMtLjAwM2MxLjU2OSAwIDIuNjQ4LS4zMTUgMy4yOTgtLjk2Mi4xNDUtLjE0NS4zODEtLjE0NC41MjYgMCAuMTQ1LjE0NS4xNDUuMzc5IDAgLjUyNHptLS4xODktMy4wOTVjLS44NzIgMC0xLjU4MS0uNzA2LTEuNTgxLTEuNTc0cy43MDktMS41NzUgMS41ODEtMS41NzUgMS41ODEuNzA3IDEuNTgxIDEuNTc1LS43MDkgMS41NzQtMS41ODEgMS41NzR6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTI0IDExLjc3OWMwLTEuNDU5LTEuMTkyLTIuNjQ1LTIuNjU3LTIuNjQ1LS43MTUgMC0xLjM2My4yODYtMS44NC43NDYtMS44MS0xLjE5MS00LjI1OS0xLjk0OS02Ljk3MS0yLjA0NmwxLjQ4My00LjY2OSA0LjAxNi45NDEtLjAwNi4wNThjMCAxLjE5My45NzUgMi4xNjMgMi4xNzQgMi4xNjMgMS4xOTggMCAyLjE3Mi0uOTcgMi4xNzItMi4xNjNzLS45NzUtMi4xNjQtMi4xNzItMi4xNjRjLS45MiAwLTEuNzA0LjU3NC0yLjAyMSAxLjM3OWwtNC4zMjktMS4wMTVjLS4xODktLjA0Ni0uMzgxLjA2My0uNDQuMjQ5bC0xLjY1NCA1LjIwN2MtMi44MzguMDM0LTUuNDA5Ljc5OC03LjMgMi4wMjUtLjQ3NC0uNDM4LTEuMTAzLS43MTItMS43OTktLjcxMi0xLjQ2NSAwLTIuNjU2IDEuMTg3LTIuNjU2IDIuNjQ2IDAgLjk3LjUzMyAxLjgxMSAxLjMxNyAyLjI3MS0uMDUyLjI4Mi0uMDg2LjU2Ny0uMDg2Ljg1NyAwIDMuOTExIDQuODA4IDcuMDkzIDEwLjcxOSA3LjA5M3MxMC43Mi0zLjE4MiAxMC43Mi03LjA5M2MwLS4yNzQtLjAyOS0uNTQ0LS4wNzUtLjgxLjgzMi0uNDQ3IDEuNDA1LTEuMzEyIDEuNDA1LTIuMzE4em0tMTcuMjI0IDEuODE2YzAtLjg2OC43MS0xLjU3NSAxLjU4Mi0xLjU3NXMxLjU4MS43MDcgMS41ODEgMS41NzUtLjcwOSAxLjU3NC0xLjU4MSAxLjU3NC0xLjU4Mi0uNzA2LTEuNTgyLTEuNTc0em05LjA2MSA0LjY2OWMtLjc5Ny43OTMtMi4wNDggMS4xNzktMy44MjQgMS4xNzlsLS4wMTMtLjAwMy0uMDEzLjAwM2MtMS43NzcgMC0zLjAyOC0uMzg2LTMuODI0LTEuMTc5LS4xNDUtLjE0NC0uMTQ1LS4zNzkgMC0uNTIzLjE0NS0uMTQ1LjM4MS0uMTQ1LjUyNiAwIC42NS42NDcgMS43MjkuOTYxIDMuMjk4Ljk2MWwuMDEzLjAwMy4wMTMtLjAwM2MxLjU2OSAwIDIuNjQ4LS4zMTUgMy4yOTgtLjk2Mi4xNDUtLjE0NS4zODEtLjE0NC41MjYgMCAuMTQ1LjE0NS4xNDUuMzc5IDAgLjUyNHptLS4xODktMy4wOTVjLS44NzIgMC0xLjU4MS0uNzA2LTEuNTgxLTEuNTc0cy43MDktMS41NzUgMS41ODEtMS41NzUgMS41ODEuNzA3IDEuNTgxIDEuNTc1LS43MDkgMS41NzQtMS41ODEgMS41NzR6Ii8+PC9zdmc+)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--reddit .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTI0IDExLjc3OWMwLTEuNDU5LTEuMTkyLTIuNjQ1LTIuNjU3LTIuNjQ1LS43MTUgMC0xLjM2My4yODYtMS44NC43NDYtMS44MS0xLjE5MS00LjI1OS0xLjk0OS02Ljk3MS0yLjA0NmwxLjQ4My00LjY2OSA0LjAxNi45NDEtLjAwNi4wNThjMCAxLjE5My45NzUgMi4xNjMgMi4xNzQgMi4xNjMgMS4xOTggMCAyLjE3Mi0uOTcgMi4xNzItMi4xNjNzLS45NzUtMi4xNjQtMi4xNzItMi4xNjRjLS45MiAwLTEuNzA0LjU3NC0yLjAyMSAxLjM3OWwtNC4zMjktMS4wMTVjLS4xODktLjA0Ni0uMzgxLjA2My0uNDQuMjQ5bC0xLjY1NCA1LjIwN2MtMi44MzguMDM0LTUuNDA5Ljc5OC03LjMgMi4wMjUtLjQ3NC0uNDM4LTEuMTAzLS43MTItMS43OTktLjcxMi0xLjQ2NSAwLTIuNjU2IDEuMTg3LTIuNjU2IDIuNjQ2IDAgLjk3LjUzMyAxLjgxMSAxLjMxNyAyLjI3MS0uMDUyLjI4Mi0uMDg2LjU2Ny0uMDg2Ljg1NyAwIDMuOTExIDQuODA4IDcuMDkzIDEwLjcxOSA3LjA5M3MxMC43Mi0zLjE4MiAxMC43Mi03LjA5M2MwLS4yNzQtLjAyOS0uNTQ0LS4wNzUtLjgxLjgzMi0uNDQ3IDEuNDA1LTEuMzEyIDEuNDA1LTIuMzE4em0tMTcuMjI0IDEuODE2YzAtLjg2OC43MS0xLjU3NSAxLjU4Mi0xLjU3NXMxLjU4MS43MDcgMS41ODEgMS41NzUtLjcwOSAxLjU3NC0xLjU4MSAxLjU3NC0xLjU4Mi0uNzA2LTEuNTgyLTEuNTc0em05LjA2MSA0LjY2OWMtLjc5Ny43OTMtMi4wNDggMS4xNzktMy44MjQgMS4xNzlsLS4wMTMtLjAwMy0uMDEzLjAwM2MtMS43NzcgMC0zLjAyOC0uMzg2LTMuODI0LTEuMTc5LS4xNDUtLjE0NC0uMTQ1LS4zNzkgMC0uNTIzLjE0NS0uMTQ1LjM4MS0uMTQ1LjUyNiAwIC42NS42NDcgMS43MjkuOTYxIDMuMjk4Ljk2MWwuMDEzLjAwMy4wMTMtLjAwM2MxLjU2OSAwIDIuNjQ4LS4zMTUgMy4yOTgtLjk2Mi4xNDUtLjE0NS4zODEtLjE0NC41MjYgMCAuMTQ1LjE0NS4xNDUuMzc5IDAgLjUyNHptLS4xODktMy4wOTVjLS44NzIgMC0xLjU4MS0uNzA2LTEuNTgxLTEuNTc0cy43MDktMS41NzUgMS41ODEtMS41NzUgMS41ODEuNzA3IDEuNTgxIDEuNTc1LS43MDkgMS41NzQtMS41ODEgMS41NzR6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--email .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTExLjU1NjU2ODcgMTcuOTYzNjAzM2MtMy4xODY3MjM4NCAwLTUuNzc4Mjg0MzYtMi42ODU1NTg3LTUuNzc4Mjg0MzYtNS45ODc4Njc4IDAtMy4zMDIzMDkwMyAyLjU5MTU2MDUyLTUuOTg3ODY3NzMgNS43NzgyODQzNi01Ljk4Nzg2NzczIDMuMTg2NzIzOCAwIDUuNzc4Mjg0MyAyLjY4NTU1ODcgNS43NzgyODQzIDUuOTg3ODY3NzMgMCAzLjMwMjMwOTEtMi41OTE1NjA1IDUuOTg3ODY3OC01Ljc3ODI4NDMgNS45ODc4Njc4em0wLTguOTgxODAxNjRjLTEuNTkzMzYxOTMgMC0yLjg4OTE0MjIgMS4zNDI3NzkzNC0yLjg4OTE0MjIgMi45OTM5MzM4NCAwIDEuNjUxMTU0NiAxLjI5NTc4MDI3IDIuOTkzOTMzOSAyLjg4OTE0MjIgMi45OTM5MzM5IDEuNTkzMzYxOSAwIDIuODg5MTQyMS0xLjM0Mjc3OTMgMi44ODkxNDIxLTIuOTkzOTMzOSAwLTEuNjUxMTU0NS0xLjI5NTc4MDItMi45OTM5MzM4NC0yLjg4OTE0MjEtMi45OTM5MzM4NHptMCAxNC45Njk2Njk0NGMtNi4zNzIwMDMwOCAwLTExLjU1NjU2ODctNS4zNzI2MTQ0LTExLjU1NjU2ODctMTEuOTc1NzM1NiAwLTYuNjAzMTIxMTQgNS4xODQ1NjU2Mi0xMS45NzU3MzU1IDExLjU1NjU2ODctMTEuOTc1NzM1NSA2LjM3MjAwMyAwIDExLjU1NjU2ODYgNS4zNzI2MTQzNiAxMS41NTY1Njg2IDExLjk3NTczNTUgMCAuODEyODUzMS0uMDc5NDUxNCAxLjYyNTcwNjEtLjIzNTQ2NSAyLjQxMzExMDgtLjQ5NjkzMjUgMi40NTUwMjU3LTIuODAxMDIzNCA0LjAxOTM1NjItNS4xMzU0NTAyIDMuNTEwMzg3NC0xLjEzMjU0MzgtLjI0NDAwNTYtMi4xMDYxODQ3LS45MzExMTM0LTIuNzQwMzUxNC0xLjkzNTU3ODItLjYzNDE2NjctMS4wMDI5Njc5LS44NTM3NDE1LTIuMjAzNTM1NC0uNjE2ODMxOC0zLjM3NzE1NzQuMTYwMzQ3My0uODA5ODU5Mi45Mjc0MTQ2LTEuMzI5MzA2NyAxLjcwODkyNzUtMS4xNjAxNDk0Ljc4MTUxMy4xNjkxNTcyIDEuMjgyNzc5Mi45NjI1NDk3IDEuMTE4MDk4MSAxLjc3MDkxMTktLjA3ODAwNjkuMzkyMjA1My0uMDA1Nzc4My43OTAzOTg1LjIwNjU3MzYgMS4xMjU3MTkxLjIxMjM1Mi4zMzUzMjA2LjUzNTkzNTkuNTY0MzU2Ni45MTI5NjkuNjQ2Njg5Ny43NzcxNzkyLjE1ODY3ODUgMS41NDU2OTEtLjM1MTc4NzIgMS43MTAzNzIxLTEuMTYwMTQ5My4xMjI3ODg2LS42MTM3NTY1LjE4MjAxNi0xLjIyMTUyNTEuMTgyMDE2LTEuODMzNzg0NiAwLTQuOTUzNDYzNTctMy44ODczNDA4LTguOTgxODAxNjEtOC42Njc0MjY1LTguOTgxODAxNjEtNC43ODAwODU3NSAwLTguNjY3NDI2NTMgNC4wMjgzMzgwNC04LjY2NzQyNjUzIDguOTgxODAxNjEgMCA0Ljk1MzQ2MzcgMy44ODczNDA3OCA4Ljk4MTgwMTcgOC42Njc0MjY1MyA4Ljk4MTgwMTcgMS4wMjI3NTYzIDAgMi4wMjY3MzMyLS4xODI2MyAyLjk4MTU5NDctLjU0NDg5Ni43NDk3MzI0LS4yODE0Mjk3IDEuNTc3NDcxNi4xMTM3Njk1IDEuODUxOTQwMS44OTM2ODkzLjI3MzAyNC43NzY5MjU4LS4xMTEyMzIgMS42MzYxODQ5LS44NjI0MDg5IDEuOTE5MTExNi0xLjI3MTIyMjYuNDgyMDIzNC0yLjYwODg5NTQuNzI2MDI5LTMuOTcxMTI1OS43MjYwMjl6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSguMzY4ODk2KSIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTExLjU1NjU2ODcgMTcuOTYzNjAzM2MtMy4xODY3MjM4NCAwLTUuNzc4Mjg0MzYtMi42ODU1NTg3LTUuNzc4Mjg0MzYtNS45ODc4Njc4IDAtMy4zMDIzMDkwMyAyLjU5MTU2MDUyLTUuOTg3ODY3NzMgNS43NzgyODQzNi01Ljk4Nzg2NzczIDMuMTg2NzIzOCAwIDUuNzc4Mjg0MyAyLjY4NTU1ODcgNS43NzgyODQzIDUuOTg3ODY3NzMgMCAzLjMwMjMwOTEtMi41OTE1NjA1IDUuOTg3ODY3OC01Ljc3ODI4NDMgNS45ODc4Njc4em0wLTguOTgxODAxNjRjLTEuNTkzMzYxOTMgMC0yLjg4OTE0MjIgMS4zNDI3NzkzNC0yLjg4OTE0MjIgMi45OTM5MzM4NCAwIDEuNjUxMTU0NiAxLjI5NTc4MDI3IDIuOTkzOTMzOSAyLjg4OTE0MjIgMi45OTM5MzM5IDEuNTkzMzYxOSAwIDIuODg5MTQyMS0xLjM0Mjc3OTMgMi44ODkxNDIxLTIuOTkzOTMzOSAwLTEuNjUxMTU0NS0xLjI5NTc4MDItMi45OTM5MzM4NC0yLjg4OTE0MjEtMi45OTM5MzM4NHptMCAxNC45Njk2Njk0NGMtNi4zNzIwMDMwOCAwLTExLjU1NjU2ODctNS4zNzI2MTQ0LTExLjU1NjU2ODctMTEuOTc1NzM1NiAwLTYuNjAzMTIxMTQgNS4xODQ1NjU2Mi0xMS45NzU3MzU1IDExLjU1NjU2ODctMTEuOTc1NzM1NSA2LjM3MjAwMyAwIDExLjU1NjU2ODYgNS4zNzI2MTQzNiAxMS41NTY1Njg2IDExLjk3NTczNTUgMCAuODEyODUzMS0uMDc5NDUxNCAxLjYyNTcwNjEtLjIzNTQ2NSAyLjQxMzExMDgtLjQ5NjkzMjUgMi40NTUwMjU3LTIuODAxMDIzNCA0LjAxOTM1NjItNS4xMzU0NTAyIDMuNTEwMzg3NC0xLjEzMjU0MzgtLjI0NDAwNTYtMi4xMDYxODQ3LS45MzExMTM0LTIuNzQwMzUxNC0xLjkzNTU3ODItLjYzNDE2NjctMS4wMDI5Njc5LS44NTM3NDE1LTIuMjAzNTM1NC0uNjE2ODMxOC0zLjM3NzE1NzQuMTYwMzQ3My0uODA5ODU5Mi45Mjc0MTQ2LTEuMzI5MzA2NyAxLjcwODkyNzUtMS4xNjAxNDk0Ljc4MTUxMy4xNjkxNTcyIDEuMjgyNzc5Mi45NjI1NDk3IDEuMTE4MDk4MSAxLjc3MDkxMTktLjA3ODAwNjkuMzkyMjA1My0uMDA1Nzc4My43OTAzOTg1LjIwNjU3MzYgMS4xMjU3MTkxLjIxMjM1Mi4zMzUzMjA2LjUzNTkzNTkuNTY0MzU2Ni45MTI5NjkuNjQ2Njg5Ny43NzcxNzkyLjE1ODY3ODUgMS41NDU2OTEtLjM1MTc4NzIgMS43MTAzNzIxLTEuMTYwMTQ5My4xMjI3ODg2LS42MTM3NTY1LjE4MjAxNi0xLjIyMTUyNTEuMTgyMDE2LTEuODMzNzg0NiAwLTQuOTUzNDYzNTctMy44ODczNDA4LTguOTgxODAxNjEtOC42Njc0MjY1LTguOTgxODAxNjEtNC43ODAwODU3NSAwLTguNjY3NDI2NTMgNC4wMjgzMzgwNC04LjY2NzQyNjUzIDguOTgxODAxNjEgMCA0Ljk1MzQ2MzcgMy44ODczNDA3OCA4Ljk4MTgwMTcgOC42Njc0MjY1MyA4Ljk4MTgwMTcgMS4wMjI3NTYzIDAgMi4wMjY3MzMyLS4xODI2MyAyLjk4MTU5NDctLjU0NDg5Ni43NDk3MzI0LS4yODE0Mjk3IDEuNTc3NDcxNi4xMTM3Njk1IDEuODUxOTQwMS44OTM2ODkzLjI3MzAyNC43NzY5MjU4LS4xMTEyMzIgMS42MzYxODQ5LS44NjI0MDg5IDEuOTE5MTExNi0xLjI3MTIyMjYuNDgyMDIzNC0yLjYwODg5NTQuNzI2MDI5LTMuOTcxMTI1OS43MjYwMjl6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSguMzY4ODk2KSIvPjwvc3ZnPg==)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--email .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTExLjU1NjU2ODcgMTcuOTYzNjAzM2MtMy4xODY3MjM4NCAwLTUuNzc4Mjg0MzYtMi42ODU1NTg3LTUuNzc4Mjg0MzYtNS45ODc4Njc4IDAtMy4zMDIzMDkwMyAyLjU5MTU2MDUyLTUuOTg3ODY3NzMgNS43NzgyODQzNi01Ljk4Nzg2NzczIDMuMTg2NzIzOCAwIDUuNzc4Mjg0MyAyLjY4NTU1ODcgNS43NzgyODQzIDUuOTg3ODY3NzMgMCAzLjMwMjMwOTEtMi41OTE1NjA1IDUuOTg3ODY3OC01Ljc3ODI4NDMgNS45ODc4Njc4em0wLTguOTgxODAxNjRjLTEuNTkzMzYxOTMgMC0yLjg4OTE0MjIgMS4zNDI3NzkzNC0yLjg4OTE0MjIgMi45OTM5MzM4NCAwIDEuNjUxMTU0NiAxLjI5NTc4MDI3IDIuOTkzOTMzOSAyLjg4OTE0MjIgMi45OTM5MzM5IDEuNTkzMzYxOSAwIDIuODg5MTQyMS0xLjM0Mjc3OTMgMi44ODkxNDIxLTIuOTkzOTMzOSAwLTEuNjUxMTU0NS0xLjI5NTc4MDItMi45OTM5MzM4NC0yLjg4OTE0MjEtMi45OTM5MzM4NHptMCAxNC45Njk2Njk0NGMtNi4zNzIwMDMwOCAwLTExLjU1NjU2ODctNS4zNzI2MTQ0LTExLjU1NjU2ODctMTEuOTc1NzM1NiAwLTYuNjAzMTIxMTQgNS4xODQ1NjU2Mi0xMS45NzU3MzU1IDExLjU1NjU2ODctMTEuOTc1NzM1NSA2LjM3MjAwMyAwIDExLjU1NjU2ODYgNS4zNzI2MTQzNiAxMS41NTY1Njg2IDExLjk3NTczNTUgMCAuODEyODUzMS0uMDc5NDUxNCAxLjYyNTcwNjEtLjIzNTQ2NSAyLjQxMzExMDgtLjQ5NjkzMjUgMi40NTUwMjU3LTIuODAxMDIzNCA0LjAxOTM1NjItNS4xMzU0NTAyIDMuNTEwMzg3NC0xLjEzMjU0MzgtLjI0NDAwNTYtMi4xMDYxODQ3LS45MzExMTM0LTIuNzQwMzUxNC0xLjkzNTU3ODItLjYzNDE2NjctMS4wMDI5Njc5LS44NTM3NDE1LTIuMjAzNTM1NC0uNjE2ODMxOC0zLjM3NzE1NzQuMTYwMzQ3My0uODA5ODU5Mi45Mjc0MTQ2LTEuMzI5MzA2NyAxLjcwODkyNzUtMS4xNjAxNDk0Ljc4MTUxMy4xNjkxNTcyIDEuMjgyNzc5Mi45NjI1NDk3IDEuMTE4MDk4MSAxLjc3MDkxMTktLjA3ODAwNjkuMzkyMjA1My0uMDA1Nzc4My43OTAzOTg1LjIwNjU3MzYgMS4xMjU3MTkxLjIxMjM1Mi4zMzUzMjA2LjUzNTkzNTkuNTY0MzU2Ni45MTI5NjkuNjQ2Njg5Ny43NzcxNzkyLjE1ODY3ODUgMS41NDU2OTEtLjM1MTc4NzIgMS43MTAzNzIxLTEuMTYwMTQ5My4xMjI3ODg2LS42MTM3NTY1LjE4MjAxNi0xLjIyMTUyNTEuMTgyMDE2LTEuODMzNzg0NiAwLTQuOTUzNDYzNTctMy44ODczNDA4LTguOTgxODAxNjEtOC42Njc0MjY1LTguOTgxODAxNjEtNC43ODAwODU3NSAwLTguNjY3NDI2NTMgNC4wMjgzMzgwNC04LjY2NzQyNjUzIDguOTgxODAxNjEgMCA0Ljk1MzQ2MzcgMy44ODczNDA3OCA4Ljk4MTgwMTcgOC42Njc0MjY1MyA4Ljk4MTgwMTcgMS4wMjI3NTYzIDAgMi4wMjY3MzMyLS4xODI2MyAyLjk4MTU5NDctLjU0NDg5Ni43NDk3MzI0LS4yODE0Mjk3IDEuNTc3NDcxNi4xMTM3Njk1IDEuODUxOTQwMS44OTM2ODkzLjI3MzAyNC43NzY5MjU4LS4xMTEyMzIgMS42MzYxODQ5LS44NjI0MDg5IDEuOTE5MTExNi0xLjI3MTIyMjYuNDgyMDIzNC0yLjYwODg5NTQuNzI2MDI5LTMuOTcxMTI1OS43MjYwMjl6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSguMzY4ODk2KSIvPjwvc3ZnPg==);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--google .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjI0IDEwLjI4NXY0LjExNWg2LjgwNmMtLjI3NSAxLjc2NS0yLjA1NiA1LjE3NC02LjgwNiA1LjE3NC00LjA5NSAwLTcuNDM5LTMuMzg5LTcuNDM5LTcuNTc0czMuMzQ1LTcuNTc0IDcuNDM5LTcuNTc0YzIuMzMgMCAzLjg5MS45ODkgNC43ODUgMS44NDlsMy4yNTQtMy4xMzhjLTIuMDktMS45NTEtNC44LTMuMTM3LTguMDM5LTMuMTM3LTYuNjM1IDAtMTIgNS4zNjUtMTIgMTJzNS4zNjUgMTIgMTIgMTJjNi45MjYgMCAxMS41Mi00Ljg2OSAxMS41Mi0xMS43MjYgMC0uNzg4LS4wODUtMS4zOS0uMTg5LTEuOTg5eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjI0IDEwLjI4NXY0LjExNWg2LjgwNmMtLjI3NSAxLjc2NS0yLjA1NiA1LjE3NC02LjgwNiA1LjE3NC00LjA5NSAwLTcuNDM5LTMuMzg5LTcuNDM5LTcuNTc0czMuMzQ1LTcuNTc0IDcuNDM5LTcuNTc0YzIuMzMgMCAzLjg5MS45ODkgNC43ODUgMS44NDlsMy4yNTQtMy4xMzhjLTIuMDktMS45NTEtNC44LTMuMTM3LTguMDM5LTMuMTM3LTYuNjM1IDAtMTIgNS4zNjUtMTIgMTJzNS4zNjUgMTIgMTIgMTJjNi45MjYgMCAxMS41Mi00Ljg2OSAxMS41Mi0xMS43MjYgMC0uNzg4LS4wODUtMS4zOS0uMTg5LTEuOTg5eiIvPjwvc3ZnPg==)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--google .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTEyLjI0IDEwLjI4NXY0LjExNWg2LjgwNmMtLjI3NSAxLjc2NS0yLjA1NiA1LjE3NC02LjgwNiA1LjE3NC00LjA5NSAwLTcuNDM5LTMuMzg5LTcuNDM5LTcuNTc0czMuMzQ1LTcuNTc0IDcuNDM5LTcuNTc0YzIuMzMgMCAzLjg5MS45ODkgNC43ODUgMS44NDlsMy4yNTQtMy4xMzhjLTIuMDktMS45NTEtNC44LTMuMTM3LTguMDM5LTMuMTM3LTYuNjM1IDAtMTIgNS4zNjUtMTIgMTJzNS4zNjUgMTIgMTIgMTJjNi45MjYgMCAxMS41Mi00Ljg2OSAxMS41Mi0xMS43MjYgMC0uNzg4LS4wODUtMS4zOS0uMTg5LTEuOTg5eiIvPjwvc3ZnPg==);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--yelp .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjY1Mzc4NjEgMTcuMzExODMxMmMtLjEzMzkyMTMuOTIwMzUyOC0yLjAxMjYxODggMy4zMDgxNDEyLTIuODc2OTMzNiAzLjY1Mzg2NzEtLjI5NTM4NjcuMTE3Nzc0OC0uNTgwMzI1Ny4wODkyODA5LS44MDczMjctLjA4NTQ4MTctLjE0NjI2ODctLjExMzk3NTUtLjI5ODIzNjEtLjM0NjY3NTctMi4zMjQxNTIxLTMuNjM0ODcxMmwtLjYwMTIyMTItLjk4MDE5Yy0uMjMxNzUwMy0uMzUxNDI0Ny0uMTg5MDA5NS0uODEzOTc1Ni4wOTg3Nzg5LTEuMTY3Mjk5OS4yODIwODk1LS4zNDA5NzY5LjY5NTI1MS0uNDY5MTk5NCAxLjA1NTIyMzktLjMzMjQyODcuMDE4OTk1OS4wMTEzOTc1IDEuNTE1ODc1Mi41MDQzNDE5IDEuNTE1ODc1Mi41MDQzNDE5IDMuNDA3ODY5OSAxLjExOTgxMDEgMy41MTg5OTYgMS4xNjI1NTA5IDMuNjYzMzY1MSAxLjI3MDgyNzcuMjE1NjAzOC4xNzY2NjIyLjMxNTMzMjUuNDUxMTUzNC4yNzA2OTIuNzcyMTg0NmguMDA1Njk4OHptLTYuODI5OTg2Ni01LjAwMjU3ODJjLS4yNDEyNDg0LS4zNjY2MjE0LS4yMzc0NDkyLS43OTg3Nzg4LjAxMTM5NzUtMS4wOTcwMTQ5bC45NDc4OTY5LTEuMjkwNzczNDhjMi4wNzkxMDQ2LTIuODM0MTkyNzYgMi4xOTQ5Nzk3LTIuOTgzMzEwODEgMi4zMzU1NDk2LTMuMDgyMDg5NjUuMjQzMTQ3OS0uMTYyNDE1Mi41NDEzODQtLjE3MDAxMzU3LjgyNzI3MjgtLjAzMDM5MzQ4LjgyNTM3MzEuNDAwODE0MTIgMi40OTEzMTYyIDIuODc2OTMzNiAyLjU5MTk5NDYgMy44MjY3MzAxMXYuMDMyMjkzMWMuMDI3NTQ0MS4zMjM4ODA2LS4wOTk3Mjg2LjU4Njk3NDItLjMyODYyOTYuNzQ0NjQwNC0uMTU1NzY2Ni4wOTk3Mjg3LS4yOTgyMzYxLjE1NzY2NjItNC4xNzI0NTYgMS4wOTc5NjQ4LS42MTI2MTg3LjE1NTc2NjYtLjk1MzU5NTcuMjQxMjQ4My0xLjE1NDAwMjcuMzEyNDgzbC4wMjc1NDQxLS4wMjg0OTM5Yy0uMzgzNzE3OC4xMTM5NzU2LS44MTExMjYzLS4wNzAyODQ5LTEuMDUzMzI0NC0uNDU0OTUyNXptLTIuMzc4MjkwNS0xLjQ2ODM4NTRjLS4xODUyMTAzLjA1NzkzNzYtLjc0OTM4OTQuMjMyNzAwMi0xLjQ0Mjc0MDktLjg5MDkwOTA5IDAgMC00LjY4MzQ0NjUtNy4zNjk0NzEwNC00Ljc5MzYyMjktNy41OTY0NzI0MS0uMDY2NDg1NzUtLjI1NjQ0NTA1LjAxNDI0Njk1LS41NDUxODMxOS4yNDIxOTgxMS0uNzc4ODMzMTMuNjk3MTUwNjMtLjcyMjc5NTEzIDQuNDgwMTkwMDktMS43ODA4Njg0NCA1LjQ3MDgyNzg5LTEuNTM5NjIwMTIuMzIyOTMwOC4wODM1ODIwOS41NDUxODMxLjI4NTg4ODc0LjYyMzA2NjUuNTczNjc3MDguMDU2OTg3Ny4zMTgxODE4My41MTc2MzkgNy4xNTc2NjY0My41ODQxMjQ4IDguNjg5Njg4MTguMDYyNjg2NiAxLjMxMDcxOTE5LS40OTg2NDMyIDEuNDg2NDMxNDktLjY4Mzg1MzUgMS41NDI0Njk0OXptLjYxODMxNzUgNy40OTY3NDM4Yy0uMDEwNDQ3NyAzLjU4NDUzMi0uMDE4MDQ2MSAzLjcwNDIwNjQtLjA3NjkzMzUgMy44NzQyMTk5LS4wOTk3Mjg2LjI2Njg5MjgtLjMyODYyOTYuNDQ1NDU0Ni0uNjQ2ODExNC41MDMzOTIyLS45MTE4MDQ2LjE1NTc2NjYtMy43Njc4NDI3LS44OTg1MDc1LTQuMzYzMzY1MTEtMS42MDUxNTYxLS4xMTM5NzU1OC0uMTU1NzY2Ni0uMTg1MjEwMzItLjMxMTUzMzMtLjE5OTQ1NzI3LS40NjgyNDk3LS4wMTUxOTY3NC0uMTEzOTc1NiAwLS4yMjc5NTExLjA0Mjc0MDg1LS4zMjg2Mjk2LjA3MTIzNDczLS4xODUyMTAzLjE3MDk2MzM3LS4zMjc2Nzk4IDIuNzM1NDEzOTItMy4zMzM3ODU3bC43NTQxMzg0MS0uODk2NjA3OWMuMjU3Mzk0OS0uMzI3Njc5OC43MTIzNDc0LS40Mjc0MDg0IDEuMTM4ODA2LS4yNTczOTQ4LjQxNDExMTMuMTU2NzE2NC42NzA1NTYzLjUxMjg5MDEuNjQyMDYyNC44OTc1NTc3djEuNTk1NjU4MXptLTcuNzcyMTg0NzItMi4yOTI4MDg3Yy0uMjgwMTg5OTYtLjAwOTQ5OC0uNTMxODg2MDQtLjE3NzYxMi0uNjc5MTA0NDktLjQ1NTkwMjQtLjEwNTQyNzQyLS4yMDQyMDYyLS4xNzk1MTE1NC0uNTQxMzg0LS4yMjYwNTE1Ny0uOTUxNjk2MS0uMTMwMTIyMTItMS4yMzU2ODUyLjAyNzU0NDEtMy4xMDAxMzU3LjM5Nzk2NDczLTMuNjkxODU5LjE3MzgxMjc2LS4yNzA2OTIuNDI3NDA4NDMtLjQxNDExMTIuNzA3NTk4MzktLjQwNDYxMzMuMTg1MjEwMzIgMCAuMzUwNDc0OTEuMDU3OTM3NiA0LjAxNjY4OTQgMS41NjcxNjQzbDEuMDczMjcwMDUuNDI2NDU4NmMuMzgzNzE3NzkuMTQyNDY5NS42MjExNjY5MS41NDEzODQuNTk4MzcxODEuOTk4MjM2MS0uMDI4NDkzOS40NDE2NTU0LS4yODMwMzkzNy43ODI2MzIzLS42NTkxNTg3OS44ODMzMTA4bC0xLjUyNDQyMzM4LjQ4NDM5NjJjLTMuNDA5NzY5NDQgMS4wOTcwMTQ5LTMuNTIyNzk1MjIgMS4xMjU1MDg4LTMuNzAyMzA2NzYgMS4xMTEyNjE5eiIvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjY1Mzc4NjEgMTcuMzExODMxMmMtLjEzMzkyMTMuOTIwMzUyOC0yLjAxMjYxODggMy4zMDgxNDEyLTIuODc2OTMzNiAzLjY1Mzg2NzEtLjI5NTM4NjcuMTE3Nzc0OC0uNTgwMzI1Ny4wODkyODA5LS44MDczMjctLjA4NTQ4MTctLjE0NjI2ODctLjExMzk3NTUtLjI5ODIzNjEtLjM0NjY3NTctMi4zMjQxNTIxLTMuNjM0ODcxMmwtLjYwMTIyMTItLjk4MDE5Yy0uMjMxNzUwMy0uMzUxNDI0Ny0uMTg5MDA5NS0uODEzOTc1Ni4wOTg3Nzg5LTEuMTY3Mjk5OS4yODIwODk1LS4zNDA5NzY5LjY5NTI1MS0uNDY5MTk5NCAxLjA1NTIyMzktLjMzMjQyODcuMDE4OTk1OS4wMTEzOTc1IDEuNTE1ODc1Mi41MDQzNDE5IDEuNTE1ODc1Mi41MDQzNDE5IDMuNDA3ODY5OSAxLjExOTgxMDEgMy41MTg5OTYgMS4xNjI1NTA5IDMuNjYzMzY1MSAxLjI3MDgyNzcuMjE1NjAzOC4xNzY2NjIyLjMxNTMzMjUuNDUxMTUzNC4yNzA2OTIuNzcyMTg0NmguMDA1Njk4OHptLTYuODI5OTg2Ni01LjAwMjU3ODJjLS4yNDEyNDg0LS4zNjY2MjE0LS4yMzc0NDkyLS43OTg3Nzg4LjAxMTM5NzUtMS4wOTcwMTQ5bC45NDc4OTY5LTEuMjkwNzczNDhjMi4wNzkxMDQ2LTIuODM0MTkyNzYgMi4xOTQ5Nzk3LTIuOTgzMzEwODEgMi4zMzU1NDk2LTMuMDgyMDg5NjUuMjQzMTQ3OS0uMTYyNDE1Mi41NDEzODQtLjE3MDAxMzU3LjgyNzI3MjgtLjAzMDM5MzQ4LjgyNTM3MzEuNDAwODE0MTIgMi40OTEzMTYyIDIuODc2OTMzNiAyLjU5MTk5NDYgMy44MjY3MzAxMXYuMDMyMjkzMWMuMDI3NTQ0MS4zMjM4ODA2LS4wOTk3Mjg2LjU4Njk3NDItLjMyODYyOTYuNzQ0NjQwNC0uMTU1NzY2Ni4wOTk3Mjg3LS4yOTgyMzYxLjE1NzY2NjItNC4xNzI0NTYgMS4wOTc5NjQ4LS42MTI2MTg3LjE1NTc2NjYtLjk1MzU5NTcuMjQxMjQ4My0xLjE1NDAwMjcuMzEyNDgzbC4wMjc1NDQxLS4wMjg0OTM5Yy0uMzgzNzE3OC4xMTM5NzU2LS44MTExMjYzLS4wNzAyODQ5LTEuMDUzMzI0NC0uNDU0OTUyNXptLTIuMzc4MjkwNS0xLjQ2ODM4NTRjLS4xODUyMTAzLjA1NzkzNzYtLjc0OTM4OTQuMjMyNzAwMi0xLjQ0Mjc0MDktLjg5MDkwOTA5IDAgMC00LjY4MzQ0NjUtNy4zNjk0NzEwNC00Ljc5MzYyMjktNy41OTY0NzI0MS0uMDY2NDg1NzUtLjI1NjQ0NTA1LjAxNDI0Njk1LS41NDUxODMxOS4yNDIxOTgxMS0uNzc4ODMzMTMuNjk3MTUwNjMtLjcyMjc5NTEzIDQuNDgwMTkwMDktMS43ODA4Njg0NCA1LjQ3MDgyNzg5LTEuNTM5NjIwMTIuMzIyOTMwOC4wODM1ODIwOS41NDUxODMxLjI4NTg4ODc0LjYyMzA2NjUuNTczNjc3MDguMDU2OTg3Ny4zMTgxODE4My41MTc2MzkgNy4xNTc2NjY0My41ODQxMjQ4IDguNjg5Njg4MTguMDYyNjg2NiAxLjMxMDcxOTE5LS40OTg2NDMyIDEuNDg2NDMxNDktLjY4Mzg1MzUgMS41NDI0Njk0OXptLjYxODMxNzUgNy40OTY3NDM4Yy0uMDEwNDQ3NyAzLjU4NDUzMi0uMDE4MDQ2MSAzLjcwNDIwNjQtLjA3NjkzMzUgMy44NzQyMTk5LS4wOTk3Mjg2LjI2Njg5MjgtLjMyODYyOTYuNDQ1NDU0Ni0uNjQ2ODExNC41MDMzOTIyLS45MTE4MDQ2LjE1NTc2NjYtMy43Njc4NDI3LS44OTg1MDc1LTQuMzYzMzY1MTEtMS42MDUxNTYxLS4xMTM5NzU1OC0uMTU1NzY2Ni0uMTg1MjEwMzItLjMxMTUzMzMtLjE5OTQ1NzI3LS40NjgyNDk3LS4wMTUxOTY3NC0uMTEzOTc1NiAwLS4yMjc5NTExLjA0Mjc0MDg1LS4zMjg2Mjk2LjA3MTIzNDczLS4xODUyMTAzLjE3MDk2MzM3LS4zMjc2Nzk4IDIuNzM1NDEzOTItMy4zMzM3ODU3bC43NTQxMzg0MS0uODk2NjA3OWMuMjU3Mzk0OS0uMzI3Njc5OC43MTIzNDc0LS40Mjc0MDg0IDEuMTM4ODA2LS4yNTczOTQ4LjQxNDExMTMuMTU2NzE2NC42NzA1NTYzLjUxMjg5MDEuNjQyMDYyNC44OTc1NTc3djEuNTk1NjU4MXptLTcuNzcyMTg0NzItMi4yOTI4MDg3Yy0uMjgwMTg5OTYtLjAwOTQ5OC0uNTMxODg2MDQtLjE3NzYxMi0uNjc5MTA0NDktLjQ1NTkwMjQtLjEwNTQyNzQyLS4yMDQyMDYyLS4xNzk1MTE1NC0uNTQxMzg0LS4yMjYwNTE1Ny0uOTUxNjk2MS0uMTMwMTIyMTItMS4yMzU2ODUyLjAyNzU0NDEtMy4xMDAxMzU3LjM5Nzk2NDczLTMuNjkxODU5LjE3MzgxMjc2LS4yNzA2OTIuNDI3NDA4NDMtLjQxNDExMTIuNzA3NTk4MzktLjQwNDYxMzMuMTg1MjEwMzIgMCAuMzUwNDc0OTEuMDU3OTM3NiA0LjAxNjY4OTQgMS41NjcxNjQzbDEuMDczMjcwMDUuNDI2NDU4NmMuMzgzNzE3NzkuMTQyNDY5NS42MjExNjY5MS41NDEzODQuNTk4MzcxODEuOTk4MjM2MS0uMDI4NDkzOS40NDE2NTU0LS4yODMwMzkzNy43ODI2MzIzLS42NTkxNTg3OS44ODMzMTA4bC0xLjUyNDQyMzM4LjQ4NDM5NjJjLTMuNDA5NzY5NDQgMS4wOTcwMTQ5LTMuNTIyNzk1MjIgMS4xMjU1MDg4LTMuNzAyMzA2NzYgMS4xMTEyNjE5eiIvPjwvc3ZnPg==)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--yelp .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIwLjY1Mzc4NjEgMTcuMzExODMxMmMtLjEzMzkyMTMuOTIwMzUyOC0yLjAxMjYxODggMy4zMDgxNDEyLTIuODc2OTMzNiAzLjY1Mzg2NzEtLjI5NTM4NjcuMTE3Nzc0OC0uNTgwMzI1Ny4wODkyODA5LS44MDczMjctLjA4NTQ4MTctLjE0NjI2ODctLjExMzk3NTUtLjI5ODIzNjEtLjM0NjY3NTctMi4zMjQxNTIxLTMuNjM0ODcxMmwtLjYwMTIyMTItLjk4MDE5Yy0uMjMxNzUwMy0uMzUxNDI0Ny0uMTg5MDA5NS0uODEzOTc1Ni4wOTg3Nzg5LTEuMTY3Mjk5OS4yODIwODk1LS4zNDA5NzY5LjY5NTI1MS0uNDY5MTk5NCAxLjA1NTIyMzktLjMzMjQyODcuMDE4OTk1OS4wMTEzOTc1IDEuNTE1ODc1Mi41MDQzNDE5IDEuNTE1ODc1Mi41MDQzNDE5IDMuNDA3ODY5OSAxLjExOTgxMDEgMy41MTg5OTYgMS4xNjI1NTA5IDMuNjYzMzY1MSAxLjI3MDgyNzcuMjE1NjAzOC4xNzY2NjIyLjMxNTMzMjUuNDUxMTUzNC4yNzA2OTIuNzcyMTg0NmguMDA1Njk4OHptLTYuODI5OTg2Ni01LjAwMjU3ODJjLS4yNDEyNDg0LS4zNjY2MjE0LS4yMzc0NDkyLS43OTg3Nzg4LjAxMTM5NzUtMS4wOTcwMTQ5bC45NDc4OTY5LTEuMjkwNzczNDhjMi4wNzkxMDQ2LTIuODM0MTkyNzYgMi4xOTQ5Nzk3LTIuOTgzMzEwODEgMi4zMzU1NDk2LTMuMDgyMDg5NjUuMjQzMTQ3OS0uMTYyNDE1Mi41NDEzODQtLjE3MDAxMzU3LjgyNzI3MjgtLjAzMDM5MzQ4LjgyNTM3MzEuNDAwODE0MTIgMi40OTEzMTYyIDIuODc2OTMzNiAyLjU5MTk5NDYgMy44MjY3MzAxMXYuMDMyMjkzMWMuMDI3NTQ0MS4zMjM4ODA2LS4wOTk3Mjg2LjU4Njk3NDItLjMyODYyOTYuNzQ0NjQwNC0uMTU1NzY2Ni4wOTk3Mjg3LS4yOTgyMzYxLjE1NzY2NjItNC4xNzI0NTYgMS4wOTc5NjQ4LS42MTI2MTg3LjE1NTc2NjYtLjk1MzU5NTcuMjQxMjQ4My0xLjE1NDAwMjcuMzEyNDgzbC4wMjc1NDQxLS4wMjg0OTM5Yy0uMzgzNzE3OC4xMTM5NzU2LS44MTExMjYzLS4wNzAyODQ5LTEuMDUzMzI0NC0uNDU0OTUyNXptLTIuMzc4MjkwNS0xLjQ2ODM4NTRjLS4xODUyMTAzLjA1NzkzNzYtLjc0OTM4OTQuMjMyNzAwMi0xLjQ0Mjc0MDktLjg5MDkwOTA5IDAgMC00LjY4MzQ0NjUtNy4zNjk0NzEwNC00Ljc5MzYyMjktNy41OTY0NzI0MS0uMDY2NDg1NzUtLjI1NjQ0NTA1LjAxNDI0Njk1LS41NDUxODMxOS4yNDIxOTgxMS0uNzc4ODMzMTMuNjk3MTUwNjMtLjcyMjc5NTEzIDQuNDgwMTkwMDktMS43ODA4Njg0NCA1LjQ3MDgyNzg5LTEuNTM5NjIwMTIuMzIyOTMwOC4wODM1ODIwOS41NDUxODMxLjI4NTg4ODc0LjYyMzA2NjUuNTczNjc3MDguMDU2OTg3Ny4zMTgxODE4My41MTc2MzkgNy4xNTc2NjY0My41ODQxMjQ4IDguNjg5Njg4MTguMDYyNjg2NiAxLjMxMDcxOTE5LS40OTg2NDMyIDEuNDg2NDMxNDktLjY4Mzg1MzUgMS41NDI0Njk0OXptLjYxODMxNzUgNy40OTY3NDM4Yy0uMDEwNDQ3NyAzLjU4NDUzMi0uMDE4MDQ2MSAzLjcwNDIwNjQtLjA3NjkzMzUgMy44NzQyMTk5LS4wOTk3Mjg2LjI2Njg5MjgtLjMyODYyOTYuNDQ1NDU0Ni0uNjQ2ODExNC41MDMzOTIyLS45MTE4MDQ2LjE1NTc2NjYtMy43Njc4NDI3LS44OTg1MDc1LTQuMzYzMzY1MTEtMS42MDUxNTYxLS4xMTM5NzU1OC0uMTU1NzY2Ni0uMTg1MjEwMzItLjMxMTUzMzMtLjE5OTQ1NzI3LS40NjgyNDk3LS4wMTUxOTY3NC0uMTEzOTc1NiAwLS4yMjc5NTExLjA0Mjc0MDg1LS4zMjg2Mjk2LjA3MTIzNDczLS4xODUyMTAzLjE3MDk2MzM3LS4zMjc2Nzk4IDIuNzM1NDEzOTItMy4zMzM3ODU3bC43NTQxMzg0MS0uODk2NjA3OWMuMjU3Mzk0OS0uMzI3Njc5OC43MTIzNDc0LS40Mjc0MDg0IDEuMTM4ODA2LS4yNTczOTQ4LjQxNDExMTMuMTU2NzE2NC42NzA1NTYzLjUxMjg5MDEuNjQyMDYyNC44OTc1NTc3djEuNTk1NjU4MXptLTcuNzcyMTg0NzItMi4yOTI4MDg3Yy0uMjgwMTg5OTYtLjAwOTQ5OC0uNTMxODg2MDQtLjE3NzYxMi0uNjc5MTA0NDktLjQ1NTkwMjQtLjEwNTQyNzQyLS4yMDQyMDYyLS4xNzk1MTE1NC0uNTQxMzg0LS4yMjYwNTE1Ny0uOTUxNjk2MS0uMTMwMTIyMTItMS4yMzU2ODUyLjAyNzU0NDEtMy4xMDAxMzU3LjM5Nzk2NDczLTMuNjkxODU5LjE3MzgxMjc2LS4yNzA2OTIuNDI3NDA4NDMtLjQxNDExMTIuNzA3NTk4MzktLjQwNDYxMzMuMTg1MjEwMzIgMCAuMzUwNDc0OTEuMDU3OTM3NiA0LjAxNjY4OTQgMS41NjcxNjQzbDEuMDczMjcwMDUuNDI2NDU4NmMuMzgzNzE3NzkuMTQyNDY5NS42MjExNjY5MS41NDEzODQuNTk4MzcxODEuOTk4MjM2MS0uMDI4NDkzOS40NDE2NTU0LS4yODMwMzkzNy43ODI2MzIzLS42NTkxNTg3OS44ODMzMTA4bC0xLjUyNDQyMzM4LjQ4NDM5NjJjLTMuNDA5NzY5NDQgMS4wOTcwMTQ5LTMuNTIyNzk1MjIgMS4xMjU1MDg4LTMuNzAyMzA2NzYgMS4xMTEyNjE5eiIvPjwvc3ZnPg==);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--youtube .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjQ5ODk0NzIgNi40MTgwNDM5M2MtLjI4MjkxNDItLjk3NjE3NDcxLTEuMDc1MDU2Mi0xLjczODk3ODE4LTIuMDg4Nzc2MS0yLjAxMTQxNDAyLTEuODcwNjk1MS0uNDgyNjIzNzctOS4zOTk0OTI1LS40ODI2MjM3Ny05LjM5OTQ5MjUtLjQ4MjYyMzc3cy03LjUwOTc5MDI3LS4wMDk2MzMyMS05LjM5OTQ5MjQuNDgyNjIzNzdjLTEuMDEzNzE5ODkuMjcyNDM1ODQtMS44MDU4NjE5NiAxLjAzNTIzOTMxLTIuMDg4Nzc2MSAyLjAxMTQxNDAyLS4zNTQ2MTExNyAxLjg0NDI4ODAxLS41Mjk0MzYxNyAzLjcxNjQ1NjE3LS41MjIxOTQwMyA1LjU5MjA3Nzc3LS4wMDU4NzMwNSAxLjg2ODU0NDEuMTY4OTQ2MjIgMy43MzM1NTU5LjUyMjE5NDAzIDUuNTcwODg0Ny4yODI5MTQxNC45NzYxNzQ3IDEuMDc1MDU2MjEgMS43Mzg5NzgyIDIuMDg4Nzc2MSAyLjAxMTQxNCAxLjg2ODY5NDMyLjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzFzNy41MDg3OSAwIDkuMzk5NDkyNS0uNDgzNTg3MWMxLjAxMzcxOTktLjI3MjQzNTggMS44MDU4NjE5LTEuMDM1MjM5MyAyLjA4ODc3NjEtMi4wMTE0MTQuMzQ1ODY3Ny0xLjgzNzk5NDMuNTEzMzE4Ny0zLjcwMzAwMDcuNTAwMTg1OC01LjU3MDg4NDcuMDE0NTAxOC0xLjg3NDk1OTEtLjE1Mjk1NDYtMy43NDcxMjE3Ny0uNTAwMTg1OC01LjU5MjA3Nzc3em0tMTMuODkxMTYxMzcgOS4wNTEzNjMwN3YtNi45MjkxNjcxNWw2LjI2NjMyODI3IDMuNDY5ODgxODV6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjQ5ODk0NzIgNi40MTgwNDM5M2MtLjI4MjkxNDItLjk3NjE3NDcxLTEuMDc1MDU2Mi0xLjczODk3ODE4LTIuMDg4Nzc2MS0yLjAxMTQxNDAyLTEuODcwNjk1MS0uNDgyNjIzNzctOS4zOTk0OTI1LS40ODI2MjM3Ny05LjM5OTQ5MjUtLjQ4MjYyMzc3cy03LjUwOTc5MDI3LS4wMDk2MzMyMS05LjM5OTQ5MjQuNDgyNjIzNzdjLTEuMDEzNzE5ODkuMjcyNDM1ODQtMS44MDU4NjE5NiAxLjAzNTIzOTMxLTIuMDg4Nzc2MSAyLjAxMTQxNDAyLS4zNTQ2MTExNyAxLjg0NDI4ODAxLS41Mjk0MzYxNyAzLjcxNjQ1NjE3LS41MjIxOTQwMyA1LjU5MjA3Nzc3LS4wMDU4NzMwNSAxLjg2ODU0NDEuMTY4OTQ2MjIgMy43MzM1NTU5LjUyMjE5NDAzIDUuNTcwODg0Ny4yODI5MTQxNC45NzYxNzQ3IDEuMDc1MDU2MjEgMS43Mzg5NzgyIDIuMDg4Nzc2MSAyLjAxMTQxNCAxLjg2ODY5NDMyLjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzFzNy41MDg3OSAwIDkuMzk5NDkyNS0uNDgzNTg3MWMxLjAxMzcxOTktLjI3MjQzNTggMS44MDU4NjE5LTEuMDM1MjM5MyAyLjA4ODc3NjEtMi4wMTE0MTQuMzQ1ODY3Ny0xLjgzNzk5NDMuNTEzMzE4Ny0zLjcwMzAwMDcuNTAwMTg1OC01LjU3MDg4NDcuMDE0NTAxOC0xLjg3NDk1OTEtLjE1Mjk1NDYtMy43NDcxMjE3Ny0uNTAwMTg1OC01LjU5MjA3Nzc3em0tMTMuODkxMTYxMzcgOS4wNTEzNjMwN3YtNi45MjkxNjcxNWw2LjI2NjMyODI3IDMuNDY5ODgxODV6Ii8+PC9zdmc+)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--youtube .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIzLjQ5ODk0NzIgNi40MTgwNDM5M2MtLjI4MjkxNDItLjk3NjE3NDcxLTEuMDc1MDU2Mi0xLjczODk3ODE4LTIuMDg4Nzc2MS0yLjAxMTQxNDAyLTEuODcwNjk1MS0uNDgyNjIzNzctOS4zOTk0OTI1LS40ODI2MjM3Ny05LjM5OTQ5MjUtLjQ4MjYyMzc3cy03LjUwOTc5MDI3LS4wMDk2MzMyMS05LjM5OTQ5MjQuNDgyNjIzNzdjLTEuMDEzNzE5ODkuMjcyNDM1ODQtMS44MDU4NjE5NiAxLjAzNTIzOTMxLTIuMDg4Nzc2MSAyLjAxMTQxNDAyLS4zNTQ2MTExNyAxLjg0NDI4ODAxLS41Mjk0MzYxNyAzLjcxNjQ1NjE3LS41MjIxOTQwMyA1LjU5MjA3Nzc3LS4wMDU4NzMwNSAxLjg2ODU0NDEuMTY4OTQ2MjIgMy43MzM1NTU5LjUyMjE5NDAzIDUuNTcwODg0Ny4yODI5MTQxNC45NzYxNzQ3IDEuMDc1MDU2MjEgMS43Mzg5NzgyIDIuMDg4Nzc2MSAyLjAxMTQxNCAxLjg2ODY5NDMyLjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzEgOS4zOTk0OTI0LjQ4MzU4NzFzNy41MDg3OSAwIDkuMzk5NDkyNS0uNDgzNTg3MWMxLjAxMzcxOTktLjI3MjQzNTggMS44MDU4NjE5LTEuMDM1MjM5MyAyLjA4ODc3NjEtMi4wMTE0MTQuMzQ1ODY3Ny0xLjgzNzk5NDMuNTEzMzE4Ny0zLjcwMzAwMDcuNTAwMTg1OC01LjU3MDg4NDcuMDE0NTAxOC0xLjg3NDk1OTEtLjE1Mjk1NDYtMy43NDcxMjE3Ny0uNTAwMTg1OC01LjU5MjA3Nzc3em0tMTMuODkxMTYxMzcgOS4wNTEzNjMwN3YtNi45MjkxNjcxNWw2LjI2NjMyODI3IDMuNDY5ODgxODV6Ii8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--instagram .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im0xMiAwYy0zLjI2IDAtMy42NjcuMDE1LTQuOTQ3LjA3Mi0xLjI3OC4wNi0yLjE0OC4yNjEtMi45MTMuNTU4LS43ODkuMzA2LTEuNDU5LjcxNy0yLjEyNiAxLjM4NHMtMS4wNzkgMS4zMzYtMS4zODQgMi4xMjZjLS4yOTcuNzY1LS40OTkgMS42MzUtLjU1OCAyLjkxMy0uMDYgMS4yOC0uMDcyIDEuNjg3LS4wNzIgNC45NDdzLjAxNSAzLjY2Ny4wNzIgNC45NDdjLjA2IDEuMjc3LjI2MSAyLjE0OC41NTggMi45MTMuMzA2Ljc4OC43MTcgMS40NTkgMS4zODQgMi4xMjYuNjY3LjY2NiAxLjMzNiAxLjA3OSAyLjEyNiAxLjM4NC43NjYuMjk2IDEuNjM2LjQ5OSAyLjkxMy41NTggMS4yOC4wNiAxLjY4Ny4wNzIgNC45NDcuMDcyczMuNjY3LS4wMTUgNC45NDctLjA3MmMxLjI3Ny0uMDYgMi4xNDgtLjI2MiAyLjkxMy0uNTU4Ljc4OC0uMzA2IDEuNDU5LS43MTggMi4xMjYtMS4zODQuNjY2LS42NjcgMS4wNzktMS4zMzUgMS4zODQtMi4xMjYuMjk2LS43NjUuNDk5LTEuNjM2LjU1OC0yLjkxMy4wNi0xLjI4LjA3Mi0xLjY4Ny4wNzItNC45NDdzLS4wMTUtMy42NjctLjA3Mi00Ljk0N2MtLjA2LTEuMjc3LS4yNjItMi4xNDktLjU1OC0yLjkxMy0uMzA2LS43ODktLjcxOC0xLjQ1OS0xLjM4NC0yLjEyNi0uNjY3LS42NjctMS4zMzUtMS4wNzktMi4xMjYtMS4zODQtLjc2NS0uMjk3LTEuNjM2LS40OTktMi45MTMtLjU1OC0xLjI4LS4wNi0xLjY4Ny0uMDcyLTQuOTQ3LS4wNzJ6bTAgMi4xNmMzLjIwMyAwIDMuNTg1LjAxNiA0Ljg1LjA3MSAxLjE3LjA1NSAxLjgwNS4yNDkgMi4yMjcuNDE1LjU2Mi4yMTcuOTYuNDc3IDEuMzgyLjg5Ni40MTkuNDIuNjc5LjgxOS44OTYgMS4zODEuMTY0LjQyMi4zNiAxLjA1Ny40MTMgMi4yMjcuMDU3IDEuMjY2LjA3IDEuNjQ2LjA3IDQuODVzLS4wMTUgMy41ODUtLjA3NCA0Ljg1Yy0uMDYxIDEuMTctLjI1NiAxLjgwNS0uNDIxIDIuMjI3LS4yMjQuNTYyLS40NzkuOTYtLjg5OSAxLjM4Mi0uNDE5LjQxOS0uODI0LjY3OS0xLjM4Ljg5Ni0uNDIuMTY0LTEuMDY1LjM2LTIuMjM1LjQxMy0xLjI3NC4wNTctMS42NDkuMDctNC44NTkuMDctMy4yMTEgMC0zLjU4Ni0uMDE1LTQuODU5LS4wNzQtMS4xNzEtLjA2MS0xLjgxNi0uMjU2LTIuMjM2LS40MjEtLjU2OS0uMjI0LS45Ni0uNDc5LTEuMzc5LS44OTktLjQyMS0uNDE5LS42OS0uODI0LS45LTEuMzgtLjE2NS0uNDItLjM1OS0xLjA2NS0uNDItMi4yMzUtLjA0NS0xLjI2LS4wNjEtMS42NDktLjA2MS00Ljg0NCAwLTMuMTk2LjAxNi0zLjU4Ni4wNjEtNC44NjEuMDYxLTEuMTcuMjU1LTEuODE0LjQyLTIuMjM0LjIxLS41Ny40NzktLjk2LjktMS4zODEuNDE5LS40MTkuODEtLjY4OSAxLjM3OS0uODk4LjQyLS4xNjYgMS4wNTEtLjM2MSAyLjIyMS0uNDIxIDEuMjc1LS4wNDUgMS42NS0uMDYgNC44NTktLjA2em0wIDMuNjc4Yy0zLjQwNSAwLTYuMTYyIDIuNzYtNi4xNjIgNi4xNjIgMCAzLjQwNSAyLjc2IDYuMTYyIDYuMTYyIDYuMTYyIDMuNDA1IDAgNi4xNjItMi43NiA2LjE2Mi02LjE2MiAwLTMuNDA1LTIuNzYtNi4xNjItNi4xNjItNi4xNjJ6bTAgMTAuMTYyYy0yLjIxIDAtNC0xLjc5LTQtNHMxLjc5LTQgNC00IDQgMS43OSA0IDQtMS43OSA0LTQgNHptNy44NDYtMTAuNDA1YzAgLjc5NS0uNjQ2IDEuNDQtMS40NCAxLjQ0LS43OTUgMC0xLjQ0LS42NDYtMS40NC0xLjQ0cy42NDYtMS40MzkgMS40NC0xLjQzOWMuNzkzLS4wMDEgMS40NC42NDUgMS40NCAxLjQzOXoiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im0xMiAwYy0zLjI2IDAtMy42NjcuMDE1LTQuOTQ3LjA3Mi0xLjI3OC4wNi0yLjE0OC4yNjEtMi45MTMuNTU4LS43ODkuMzA2LTEuNDU5LjcxNy0yLjEyNiAxLjM4NHMtMS4wNzkgMS4zMzYtMS4zODQgMi4xMjZjLS4yOTcuNzY1LS40OTkgMS42MzUtLjU1OCAyLjkxMy0uMDYgMS4yOC0uMDcyIDEuNjg3LS4wNzIgNC45NDdzLjAxNSAzLjY2Ny4wNzIgNC45NDdjLjA2IDEuMjc3LjI2MSAyLjE0OC41NTggMi45MTMuMzA2Ljc4OC43MTcgMS40NTkgMS4zODQgMi4xMjYuNjY3LjY2NiAxLjMzNiAxLjA3OSAyLjEyNiAxLjM4NC43NjYuMjk2IDEuNjM2LjQ5OSAyLjkxMy41NTggMS4yOC4wNiAxLjY4Ny4wNzIgNC45NDcuMDcyczMuNjY3LS4wMTUgNC45NDctLjA3MmMxLjI3Ny0uMDYgMi4xNDgtLjI2MiAyLjkxMy0uNTU4Ljc4OC0uMzA2IDEuNDU5LS43MTggMi4xMjYtMS4zODQuNjY2LS42NjcgMS4wNzktMS4zMzUgMS4zODQtMi4xMjYuMjk2LS43NjUuNDk5LTEuNjM2LjU1OC0yLjkxMy4wNi0xLjI4LjA3Mi0xLjY4Ny4wNzItNC45NDdzLS4wMTUtMy42NjctLjA3Mi00Ljk0N2MtLjA2LTEuMjc3LS4yNjItMi4xNDktLjU1OC0yLjkxMy0uMzA2LS43ODktLjcxOC0xLjQ1OS0xLjM4NC0yLjEyNi0uNjY3LS42NjctMS4zMzUtMS4wNzktMi4xMjYtMS4zODQtLjc2NS0uMjk3LTEuNjM2LS40OTktMi45MTMtLjU1OC0xLjI4LS4wNi0xLjY4Ny0uMDcyLTQuOTQ3LS4wNzJ6bTAgMi4xNmMzLjIwMyAwIDMuNTg1LjAxNiA0Ljg1LjA3MSAxLjE3LjA1NSAxLjgwNS4yNDkgMi4yMjcuNDE1LjU2Mi4yMTcuOTYuNDc3IDEuMzgyLjg5Ni40MTkuNDIuNjc5LjgxOS44OTYgMS4zODEuMTY0LjQyMi4zNiAxLjA1Ny40MTMgMi4yMjcuMDU3IDEuMjY2LjA3IDEuNjQ2LjA3IDQuODVzLS4wMTUgMy41ODUtLjA3NCA0Ljg1Yy0uMDYxIDEuMTctLjI1NiAxLjgwNS0uNDIxIDIuMjI3LS4yMjQuNTYyLS40NzkuOTYtLjg5OSAxLjM4Mi0uNDE5LjQxOS0uODI0LjY3OS0xLjM4Ljg5Ni0uNDIuMTY0LTEuMDY1LjM2LTIuMjM1LjQxMy0xLjI3NC4wNTctMS42NDkuMDctNC44NTkuMDctMy4yMTEgMC0zLjU4Ni0uMDE1LTQuODU5LS4wNzQtMS4xNzEtLjA2MS0xLjgxNi0uMjU2LTIuMjM2LS40MjEtLjU2OS0uMjI0LS45Ni0uNDc5LTEuMzc5LS44OTktLjQyMS0uNDE5LS42OS0uODI0LS45LTEuMzgtLjE2NS0uNDItLjM1OS0xLjA2NS0uNDItMi4yMzUtLjA0NS0xLjI2LS4wNjEtMS42NDktLjA2MS00Ljg0NCAwLTMuMTk2LjAxNi0zLjU4Ni4wNjEtNC44NjEuMDYxLTEuMTcuMjU1LTEuODE0LjQyLTIuMjM0LjIxLS41Ny40NzktLjk2LjktMS4zODEuNDE5LS40MTkuODEtLjY4OSAxLjM3OS0uODk4LjQyLS4xNjYgMS4wNTEtLjM2MSAyLjIyMS0uNDIxIDEuMjc1LS4wNDUgMS42NS0uMDYgNC44NTktLjA2em0wIDMuNjc4Yy0zLjQwNSAwLTYuMTYyIDIuNzYtNi4xNjIgNi4xNjIgMCAzLjQwNSAyLjc2IDYuMTYyIDYuMTYyIDYuMTYyIDMuNDA1IDAgNi4xNjItMi43NiA2LjE2Mi02LjE2MiAwLTMuNDA1LTIuNzYtNi4xNjItNi4xNjItNi4xNjJ6bTAgMTAuMTYyYy0yLjIxIDAtNC0xLjc5LTQtNHMxLjc5LTQgNC00IDQgMS43OSA0IDQtMS43OSA0LTQgNHptNy44NDYtMTAuNDA1YzAgLjc5NS0uNjQ2IDEuNDQtMS40NCAxLjQ0LS43OTUgMC0xLjQ0LS42NDYtMS40NC0xLjQ0cy42NDYtMS40MzkgMS40NC0xLjQzOWMuNzkzLS4wMDEgMS40NC42NDUgMS40NCAxLjQzOXoiLz48L3N2Zz4=)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--instagram .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im0xMiAwYy0zLjI2IDAtMy42NjcuMDE1LTQuOTQ3LjA3Mi0xLjI3OC4wNi0yLjE0OC4yNjEtMi45MTMuNTU4LS43ODkuMzA2LTEuNDU5LjcxNy0yLjEyNiAxLjM4NHMtMS4wNzkgMS4zMzYtMS4zODQgMi4xMjZjLS4yOTcuNzY1LS40OTkgMS42MzUtLjU1OCAyLjkxMy0uMDYgMS4yOC0uMDcyIDEuNjg3LS4wNzIgNC45NDdzLjAxNSAzLjY2Ny4wNzIgNC45NDdjLjA2IDEuMjc3LjI2MSAyLjE0OC41NTggMi45MTMuMzA2Ljc4OC43MTcgMS40NTkgMS4zODQgMi4xMjYuNjY3LjY2NiAxLjMzNiAxLjA3OSAyLjEyNiAxLjM4NC43NjYuMjk2IDEuNjM2LjQ5OSAyLjkxMy41NTggMS4yOC4wNiAxLjY4Ny4wNzIgNC45NDcuMDcyczMuNjY3LS4wMTUgNC45NDctLjA3MmMxLjI3Ny0uMDYgMi4xNDgtLjI2MiAyLjkxMy0uNTU4Ljc4OC0uMzA2IDEuNDU5LS43MTggMi4xMjYtMS4zODQuNjY2LS42NjcgMS4wNzktMS4zMzUgMS4zODQtMi4xMjYuMjk2LS43NjUuNDk5LTEuNjM2LjU1OC0yLjkxMy4wNi0xLjI4LjA3Mi0xLjY4Ny4wNzItNC45NDdzLS4wMTUtMy42NjctLjA3Mi00Ljk0N2MtLjA2LTEuMjc3LS4yNjItMi4xNDktLjU1OC0yLjkxMy0uMzA2LS43ODktLjcxOC0xLjQ1OS0xLjM4NC0yLjEyNi0uNjY3LS42NjctMS4zMzUtMS4wNzktMi4xMjYtMS4zODQtLjc2NS0uMjk3LTEuNjM2LS40OTktMi45MTMtLjU1OC0xLjI4LS4wNi0xLjY4Ny0uMDcyLTQuOTQ3LS4wNzJ6bTAgMi4xNmMzLjIwMyAwIDMuNTg1LjAxNiA0Ljg1LjA3MSAxLjE3LjA1NSAxLjgwNS4yNDkgMi4yMjcuNDE1LjU2Mi4yMTcuOTYuNDc3IDEuMzgyLjg5Ni40MTkuNDIuNjc5LjgxOS44OTYgMS4zODEuMTY0LjQyMi4zNiAxLjA1Ny40MTMgMi4yMjcuMDU3IDEuMjY2LjA3IDEuNjQ2LjA3IDQuODVzLS4wMTUgMy41ODUtLjA3NCA0Ljg1Yy0uMDYxIDEuMTctLjI1NiAxLjgwNS0uNDIxIDIuMjI3LS4yMjQuNTYyLS40NzkuOTYtLjg5OSAxLjM4Mi0uNDE5LjQxOS0uODI0LjY3OS0xLjM4Ljg5Ni0uNDIuMTY0LTEuMDY1LjM2LTIuMjM1LjQxMy0xLjI3NC4wNTctMS42NDkuMDctNC44NTkuMDctMy4yMTEgMC0zLjU4Ni0uMDE1LTQuODU5LS4wNzQtMS4xNzEtLjA2MS0xLjgxNi0uMjU2LTIuMjM2LS40MjEtLjU2OS0uMjI0LS45Ni0uNDc5LTEuMzc5LS44OTktLjQyMS0uNDE5LS42OS0uODI0LS45LTEuMzgtLjE2NS0uNDItLjM1OS0xLjA2NS0uNDItMi4yMzUtLjA0NS0xLjI2LS4wNjEtMS42NDktLjA2MS00Ljg0NCAwLTMuMTk2LjAxNi0zLjU4Ni4wNjEtNC44NjEuMDYxLTEuMTcuMjU1LTEuODE0LjQyLTIuMjM0LjIxLS41Ny40NzktLjk2LjktMS4zODEuNDE5LS40MTkuODEtLjY4OSAxLjM3OS0uODk4LjQyLS4xNjYgMS4wNTEtLjM2MSAyLjIyMS0uNDIxIDEuMjc1LS4wNDUgMS42NS0uMDYgNC44NTktLjA2em0wIDMuNjc4Yy0zLjQwNSAwLTYuMTYyIDIuNzYtNi4xNjIgNi4xNjIgMCAzLjQwNSAyLjc2IDYuMTYyIDYuMTYyIDYuMTYyIDMuNDA1IDAgNi4xNjItMi43NiA2LjE2Mi02LjE2MiAwLTMuNDA1LTIuNzYtNi4xNjItNi4xNjItNi4xNjJ6bTAgMTAuMTYyYy0yLjIxIDAtNC0xLjc5LTQtNHMxLjc5LTQgNC00IDQgMS43OSA0IDQtMS43OSA0LTQgNHptNy44NDYtMTAuNDA1YzAgLjc5NS0uNjQ2IDEuNDQtMS40NCAxLjQ0LS43OTUgMC0xLjQ0LS42NDYtMS40NC0xLjQ0cy42NDYtMS40MzkgMS40NC0xLjQzOWMuNzkzLS4wMDEgMS40NC42NDUgMS40NCAxLjQzOXoiLz48L3N2Zz4=);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--houzz .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIxLjc3NTI4MjcgMTAuNDU3NzU5OHYxMi40OTk1NDE4aC03LjIyMzYwMTF2LTcuNDI3NjgwOGgtNS4yMjgwMDI1M3Y3LjQyNzY4MDhoLTcuMDk4OTYxOHYtMjEuOTE0NjAzMjRoNS4wNjM2NDMwMnY1LjI4Mjc4OTA1eiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIxLjc3NTI4MjcgMTAuNDU3NzU5OHYxMi40OTk1NDE4aC03LjIyMzYwMTF2LTcuNDI3NjgwOGgtNS4yMjgwMDI1M3Y3LjQyNzY4MDhoLTcuMDk4OTYxOHYtMjEuOTE0NjAzMjRoNS4wNjM2NDMwMnY1LjI4Mjc4OTA1eiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--houzz .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTIxLjc3NTI4MjcgMTAuNDU3NzU5OHYxMi40OTk1NDE4aC03LjIyMzYwMTF2LTcuNDI3NjgwOGgtNS4yMjgwMDI1M3Y3LjQyNzY4MDhoLTcuMDk4OTYxOHYtMjEuOTE0NjAzMjRoNS4wNjM2NDMwMnY1LjI4Mjc4OTA1eiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
        color: #0000 !important
    }
}

.wp-block-coblocks-social__button--tiktok .wp-block-coblocks-social__icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTIyLjA4OCA5LjkyMmE5LjQzNyA5LjQzNyAwIDAgMS01LjUxNS0xLjc2M0wxNi41NzMgMTYuMTg4QTcuMzAyIDcuMzAyIDAgMSAxIDEwLjI3NCA4Ljk1MUwxMC4yNzQgMTIuOTlhMy4zNTMgMy4zNTMgMCAxIDAgMi4zNDYgMy4xOTdMMTIuNjIuNDkybDMuOTUzIDBhNS40NDQgNS40NDQgMCAwIDAgLjA4NC45OTZsMCAwQTUuNDg5IDUuNDg5IDAgMCAwIDE5LjA3NyA1LjA5MmE1LjQ1NSA1LjQ1NSAwIDAgMCAzLjAxLjkwNVoiLz48L3N2Zz4K);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTIyLjA4OCA5LjkyMmE5LjQzNyA5LjQzNyAwIDAgMS01LjUxNS0xLjc2M0wxNi41NzMgMTYuMTg4QTcuMzAyIDcuMzAyIDAgMSAxIDEwLjI3NCA4Ljk1MUwxMC4yNzQgMTIuOTlhMy4zNTMgMy4zNTMgMCAxIDAgMi4zNDYgMy4xOTdMMTIuNjIuNDkybDMuOTUzIDBhNS40NDQgNS40NDQgMCAwIDAgLjA4NC45OTZsMCAwQTUuNDg5IDUuNDg5IDAgMCAwIDE5LjA3NyA1LjA5MmE1LjQ1NSA1LjQ1NSAwIDAgMCAzLjAxLjkwNVoiLz48L3N2Zz4K)
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .wp-block-coblocks-social__button--tiktok .wp-block-coblocks-social__icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTIyLjA4OCA5LjkyMmE5LjQzNyA5LjQzNyAwIDAgMS01LjUxNS0xLjc2M0wxNi41NzMgMTYuMTg4QTcuMzAyIDcuMzAyIDAgMSAxIDEwLjI3NCA4Ljk1MUwxMC4yNzQgMTIuOTlhMy4zNTMgMy4zNTMgMCAxIDAgMi4zNDYgMy4xOTdMMTIuNjIuNDkybDMuOTUzIDBhNS40NDQgNS40NDQgMCAwIDAgLjA4NC45OTZsMCAwQTUuNDg5IDUuNDg5IDAgMCAwIDE5LjA3NyA1LjA5MmE1LjQ1NSA1LjQ1NSAwIDAgMCAzLjAxLjkwNVoiLz48L3N2Zz4K);
        color: #0000 !important
    }
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__text,
.wp-block-coblocks-social.has-colors:not(.is-style-mask) .wp-block-coblocks-social__icon {
    color: #fff
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--twitter {
    background-color: #55acee !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--facebook {
    background-color: #3b5999 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--pinterest {
    background-color: #e60023 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--linkedin {
    background-color: #0077b5 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--tumblr {
    background-color: #34465d !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--reddit {
    background-color: #ff5700 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--email {
    background-color: #2880e5 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--google {
    background-color: #dd4b39 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--yelp {
    background-color: #d32323 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--youtube {
    background-color: red !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--instagram {
    background-color: #ef0175 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--houzz {
    background-color: #4ebc16 !important
}

.wp-block-coblocks-social.has-colors .wp-block-coblocks-social__button--tiktok {
    background-color: #000 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--twitter {
    color: #55acee !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--facebook {
    color: #3b5999 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--pinterest {
    color: #e60023 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--linkedin {
    color: #0077b5 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--tumblr {
    color: #34465d !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--reddit {
    color: #ff5700 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--email {
    color: #2880e5 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--google {
    color: #dd4b39 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--yelp {
    color: #d32323 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--youtube {
    color: red !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--instagram {
    color: #ef0175 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--houzz {
    color: #4ebc16 !important
}

.wp-block-coblocks-social.has-colors.is-style-mask .wp-block-coblocks-social__button--tiktok {
    color: #000 !important
}

.wp-block-coblocks-social:not(.is-style-text):not(.is-style-icon-and-text) .wp-block-coblocks-social__button {
    padding: 11px 24px
}

.wp-block-coblocks-social:not(.is-style-text):not(.is-style-icon-and-text) .wp-block-coblocks-social__button:active {
    animation: pulse .2s;
    animation-fill-mode: none;
    animation-timing-function: ease-out
}

.wp-block-coblocks-social:not(.is-style-text):not(.is-style-icon-and-text) .wp-block-coblocks-social__text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal
}

.wp-block-coblocks-social.is-style-text .wp-block-coblocks-social__icon {
    display: none
}

.wp-block-coblocks-social.is-style-text .wp-block-coblocks-social__text {
    margin-left: 0
}

.wp-block-coblocks-social.is-style-mask li,
.wp-block-coblocks-social.is-style-mask.has-button-size-sml li {
    margin: 0 7px !important
}

.wp-block-coblocks-social.is-style-mask .wp-block-coblocks-social__button {
    background: #0000 !important;
    display: block;
    padding: 0 !important
}

.wp-block-coblocks-social.is-style-mask .wp-block-coblocks-social__text {
    margin-left: 0
}

.wp-block-coblocks-social.is-style-mask:not(.has-colors) .wp-block-button__link:not(.has-text-color) {
    color: #31373c
}

.wp-block-coblocks-social.has-button-size-sml li {
    margin: 2px 4px 2px 0 !important
}

.wp-block-coblocks-social.has-button-size-sml:not(.is-style-text):not(.is-style-icon-and-text):not(.is-style-circular) .wp-block-coblocks-social__button {
    padding: 8px 16px
}

.wp-block-coblocks-social.has-button-size-sml .wp-block-coblocks-social__icon {
    height: 16px;
    width: 16px
}

.wp-block-coblocks-social.has-button-size-sml .wp-block-coblocks-social__button {
    font-size: 13px;
    padding: 10px 12px
}

.wp-block-coblocks-social.has-button-size-med:not(.is-style-text):not(.is-style-icon-and-text):not(.is-style-circular) .wp-block-coblocks-social__button {
    padding: 12px 20px
}

.wp-block-coblocks-social.has-button-size-med .wp-block-coblocks-social__icon {
    height: 18px;
    width: 18px
}

.wp-block-coblocks-social.has-button-size-med .wp-block-coblocks-social__button {
    font-size: 15px;
    padding: 12px 14px
}

.wp-block-coblocks-social.has-button-size-lrg:not(.is-style-text):not(.is-style-icon-and-text):not(.is-style-circular) .wp-block-coblocks-social__button {
    padding: 14px 32px
}

.wp-block-coblocks-social.has-button-size-lrg .wp-block-coblocks-social__icon {
    height: 20px;
    width: 20px
}

.wp-block-coblocks-social.has-button-size-lrg .wp-block-coblocks-social__button {
    font-size: 17px;
    padding: 14px 18px
}

.wp-block-coblocks-social.is-style-circular .wp-block-coblocks-social__button {
    border-radius: 100%
}

.wp-block-coblocks-social.is-style-circular .wp-block-coblocks-social__button:not(.has-padding) {
    padding: 14px !important
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    15% {
        transform: scale(.95)
    }

    to {
        transform: scale(1)
    }
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial {
    background-color: #fff;
    display: flex;
    flex-grow: 1;
    margin-bottom: 1rem;
    padding: 2rem 1.5rem
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__image {
    border: 1px solid #000;
    border-radius: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100px;
    overflow: hidden;
    position: relative;
    width: 100px
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__image img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__heading {
    margin-bottom: 1.5em
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__heading__name {
    color: inherit;
    line-height: 1;
    margin: 0
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__heading__role {
    font-size: 1.2em;
    line-height: 1.2;
    margin: .25em 0 0
}

.wp-block-coblocks-testimonials .wp-block-coblocks-testimonial__text {
    font-size: 1em;
    line-height: 1.5;
    margin: 0
}

.wp-block-coblocks-testimonials.is-style-tall .wp-block-coblocks-testimonial,
.wp-block-coblocks-testimonials:not([class*=is-style-]) .wp-block-coblocks-testimonial {
    align-items: center;
    flex-direction: column;
    text-align: center
}

.wp-block-coblocks-testimonials.is-style-tall .wp-block-coblocks-testimonial__image,
.wp-block-coblocks-testimonials:not([class*=is-style-]) .wp-block-coblocks-testimonial__image {
    margin: 0 0 1em
}

.is-style-conversation .wp-block-coblocks-testimonial {
    flex-direction: column
}

.is-style-conversation .wp-block-coblocks-testimonial__heading {
    margin-bottom: 0
}

.is-style-conversation .wp-block-coblocks-testimonial__text-bubble {
    margin-bottom: 1.5rem;
    position: relative
}

.is-style-conversation .wp-block-coblocks-testimonial__text-bubble__tip-back {
    background-color: #d6d6d6;
    bottom: -18px;
    display: block;
    height: 40px;
    left: 22px;
    position: absolute;
    transform: rotate(-40deg);
    width: 30px;
    z-index: 1
}

.is-style-conversation .wp-block-coblocks-testimonial__text-bubble__tip-front {
    background-color: #fff;
    bottom: -32px;
    display: block;
    height: 40px;
    left: 38px;
    position: absolute;
    transform: rotate(15deg);
    width: 30px;
    z-index: 2
}

.is-style-conversation .wp-block-coblocks-testimonial__text {
    background-color: #d6d6d6;
    border-radius: 8px;
    color: #999;
    padding: 1em;
    position: relative;
    width: 100%;
    z-index: 3
}

.is-style-conversation .wp-block-coblocks-testimonial__image {
    margin: 0 1em 0 1rem
}

.is-style-conversation .wp-block-coblocks-testimonial__content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    z-index: 2
}

.is-style-horizontal .wp-block-coblocks-testimonial__image {
    margin: 0 1.25em 0 0
}

.is-style-horizontal .wp-block-coblocks-testimonial__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.uppercase {
    text-transform: uppercase
}

.m-1 {
    margin: .5em
}

.m-2 {
    margin: 1em
}

.m-3 {
    margin: 1.5em
}

.m-4 {
    margin: 2em
}

.m-5 {
    margin: 2.5em
}

.m-6 {
    margin: 3em
}

.m-7 {
    margin: 3.5em
}

.m-8 {
    margin: 4em
}

.m-9 {
    margin: 4.5em
}

.m-10 {
    margin: 7em
}

.mt-1 {
    margin-top: .5em
}

.mt-2 {
    margin-top: 1em
}

.mt-3 {
    margin-top: 1.5em
}

.mt-4 {
    margin-top: 2em
}

.mt-5 {
    margin-top: 2.5em
}

.mt-6 {
    margin-top: 3em
}

.mt-7 {
    margin-top: 3.5em
}

.mt-8 {
    margin-top: 4em
}

.mt-9 {
    margin-top: 4.5em
}

.mt-10 {
    margin-top: 7em
}

.mb-1 {
    margin-bottom: .5em
}

.mb-2 {
    margin-bottom: 1em
}

.mb-3 {
    margin-bottom: 1.5em
}

.mb-4 {
    margin-bottom: 2em
}

.mb-5 {
    margin-bottom: 2.5em
}

.mb-6 {
    margin-bottom: 3em
}

.mb-7 {
    margin-bottom: 3.5em
}

.mb-8 {
    margin-bottom: 4em
}

.mb-9 {
    margin-bottom: 4.5em
}

.mb-10 {
    margin-bottom: 7em
}

.mr-1 {
    margin-right: .5em
}

.mr-2 {
    margin-right: 1em
}

.mr-3 {
    margin-right: 1.5em
}

.mr-4 {
    margin-right: 2em
}

.mr-5 {
    margin-right: 2.5em
}

.mr-6 {
    margin-right: 3em
}

.mr-7 {
    margin-right: 3.5em
}

.mr-8 {
    margin-right: 4em
}

.mr-9 {
    margin-right: 4.5em
}

.mr-10 {
    margin-right: 7em
}

.ml-1 {
    margin-left: .5em
}

.ml-2 {
    margin-left: 1em
}

.ml-3 {
    margin-left: 1.5em
}

.ml-4 {
    margin-left: 2em
}

.ml-5 {
    margin-left: 2.5em
}

.ml-6 {
    margin-left: 3em
}

.ml-7 {
    margin-left: 3.5em
}

.ml-8 {
    margin-left: 4em
}

.ml-9 {
    margin-left: 4.5em
}

.ml-10 {
    margin-left: 7em
}

@media(min-width:600px) {
    .sm\:mt-1 {
        margin-top: .5em
    }

    .sm\:mt-2 {
        margin-top: 1em
    }

    .sm\:mt-3 {
        margin-top: 1.5em
    }

    .sm\:mt-4 {
        margin-top: 2em
    }

    .sm\:mt-5 {
        margin-top: 2.5em
    }

    .sm\:mt-6 {
        margin-top: 3em
    }

    .sm\:mt-7 {
        margin-top: 3.5em
    }

    .sm\:mt-8 {
        margin-top: 4em
    }

    .sm\:mt-9 {
        margin-top: 4.5em
    }

    .sm\:mt-10 {
        margin-top: 7em
    }

    .sm\:mb-1 {
        margin-bottom: .5em
    }

    .sm\:mb-2 {
        margin-bottom: 1em
    }

    .sm\:mb-3 {
        margin-bottom: 1.5em
    }

    .sm\:mb-4 {
        margin-bottom: 2em
    }

    .sm\:mb-5 {
        margin-bottom: 2.5em
    }

    .sm\:mb-6 {
        margin-bottom: 3em
    }

    .sm\:mb-7 {
        margin-bottom: 3.5em
    }

    .sm\:mb-8 {
        margin-bottom: 4em
    }

    .sm\:mb-9 {
        margin-bottom: 4.5em
    }

    .sm\:mb-10 {
        margin-bottom: 7em
    }

    .sm\:mr-1 {
        margin-right: .5em
    }

    .sm\:mr-2 {
        margin-right: 1em
    }

    .sm\:mr-3 {
        margin-right: 1.5em
    }

    .sm\:mr-4 {
        margin-right: 2em
    }

    .sm\:mr-5 {
        margin-right: 2.5em
    }

    .sm\:mr-6 {
        margin-right: 3em
    }

    .sm\:mr-7 {
        margin-right: 3.5em
    }

    .sm\:mr-8 {
        margin-right: 4em
    }

    .sm\:mr-9 {
        margin-right: 4.5em
    }

    .sm\:mr-10 {
        margin-right: 7em
    }

    .sm\:ml-1 {
        margin-left: .5em
    }

    .sm\:ml-2 {
        margin-left: 1em
    }

    .sm\:ml-3 {
        margin-left: 1.5em
    }

    .sm\:ml-4 {
        margin-left: 2em
    }

    .sm\:ml-5 {
        margin-left: 2.5em
    }

    .sm\:ml-6 {
        margin-left: 3em
    }

    .sm\:ml-7 {
        margin-left: 3.5em
    }

    .sm\:ml-8 {
        margin-left: 4em
    }

    .sm\:ml-9 {
        margin-left: 4.5em
    }

    .sm\:ml-10 {
        margin-left: 7em
    }
}

@media(min-width:782px) {
    .md\:mt-1 {
        margin-top: .5em
    }

    .md\:mt-2 {
        margin-top: 1em
    }

    .md\:mt-3 {
        margin-top: 1.5em
    }

    .md\:mt-4 {
        margin-top: 2em
    }

    .md\:mt-5 {
        margin-top: 2.5em
    }

    .md\:mt-6 {
        margin-top: 3em
    }

    .md\:mt-7 {
        margin-top: 3.5em
    }

    .md\:mt-8 {
        margin-top: 4em
    }

    .md\:mt-9 {
        margin-top: 4.5em
    }

    .md\:mt-10 {
        margin-top: 7em
    }

    .md\:mb-1 {
        margin-bottom: .5em
    }

    .md\:mb-2 {
        margin-bottom: 1em
    }

    .md\:mb-3 {
        margin-bottom: 1.5em
    }

    .md\:mb-4 {
        margin-bottom: 2em
    }

    .md\:mb-5 {
        margin-bottom: 2.5em
    }

    .md\:mb-6 {
        margin-bottom: 3em
    }

    .md\:mb-7 {
        margin-bottom: 3.5em
    }

    .md\:mb-8 {
        margin-bottom: 4em
    }

    .md\:mb-9 {
        margin-bottom: 4.5em
    }

    .md\:mb-10 {
        margin-bottom: 7em
    }

    .md\:mr-1 {
        margin-right: .5em
    }

    .md\:mr-2 {
        margin-right: 1em
    }

    .md\:mr-3 {
        margin-right: 1.5em
    }

    .md\:mr-4 {
        margin-right: 2em
    }

    .md\:mr-5 {
        margin-right: 2.5em
    }

    .md\:mr-6 {
        margin-right: 3em
    }

    .md\:mr-7 {
        margin-right: 3.5em
    }

    .md\:mr-8 {
        margin-right: 4em
    }

    .md\:mr-9 {
        margin-right: 4.5em
    }

    .md\:mr-10 {
        margin-right: 7em
    }

    .md\:ml-1 {
        margin-left: .5em
    }

    .md\:ml-2 {
        margin-left: 1em
    }

    .md\:ml-3 {
        margin-left: 1.5em
    }

    .md\:ml-4 {
        margin-left: 2em
    }

    .md\:ml-5 {
        margin-left: 2.5em
    }

    .md\:ml-6 {
        margin-left: 3em
    }

    .md\:ml-7 {
        margin-left: 3.5em
    }

    .md\:ml-8 {
        margin-left: 4em
    }

    .md\:ml-9 {
        margin-left: 4.5em
    }

    .md\:ml-10 {
        margin-left: 7em
    }
}

@media(min-width:1280px) {
    .lg\:mt-1 {
        margin-top: .5em
    }

    .lg\:mt-2 {
        margin-top: 1em
    }

    .lg\:mt-3 {
        margin-top: 1.5em
    }

    .lg\:mt-4 {
        margin-top: 2em
    }

    .lg\:mt-5 {
        margin-top: 2.5em
    }

    .lg\:mt-6 {
        margin-top: 3em
    }

    .lg\:mt-7 {
        margin-top: 3.5em
    }

    .lg\:mt-8 {
        margin-top: 4em
    }

    .lg\:mt-9 {
        margin-top: 4.5em
    }

    .lg\:mt-10 {
        margin-top: 7em
    }

    .lg\:mb-1 {
        margin-bottom: .5em
    }

    .lg\:mb-2 {
        margin-bottom: 1em
    }

    .lg\:mb-3 {
        margin-bottom: 1.5em
    }

    .lg\:mb-4 {
        margin-bottom: 2em
    }

    .lg\:mb-5 {
        margin-bottom: 2.5em
    }

    .lg\:mb-6 {
        margin-bottom: 3em
    }

    .lg\:mb-7 {
        margin-bottom: 3.5em
    }

    .lg\:mb-8 {
        margin-bottom: 4em
    }

    .lg\:mb-9 {
        margin-bottom: 4.5em
    }

    .lg\:mb-10 {
        margin-bottom: 7em
    }

    .lg\:mr-1 {
        margin-right: .5em
    }

    .lg\:mr-2 {
        margin-right: 1em
    }

    .lg\:mr-3 {
        margin-right: 1.5em
    }

    .lg\:mr-4 {
        margin-right: 2em
    }

    .lg\:mr-5 {
        margin-right: 2.5em
    }

    .lg\:mr-6 {
        margin-right: 3em
    }

    .lg\:mr-7 {
        margin-right: 3.5em
    }

    .lg\:mr-8 {
        margin-right: 4em
    }

    .lg\:mr-9 {
        margin-right: 4.5em
    }

    .lg\:mr-10 {
        margin-right: 7em
    }

    .lg\:ml-1 {
        margin-left: .5em
    }

    .lg\:ml-2 {
        margin-left: 1em
    }

    .lg\:ml-3 {
        margin-left: 1.5em
    }

    .lg\:ml-4 {
        margin-left: 2em
    }

    .lg\:ml-5 {
        margin-left: 2.5em
    }

    .lg\:ml-6 {
        margin-left: 3em
    }

    .lg\:ml-7 {
        margin-left: 3.5em
    }

    .lg\:ml-8 {
        margin-left: 4em
    }

    .lg\:ml-9 {
        margin-left: 4.5em
    }

    .lg\:ml-10 {
        margin-left: 7em
    }
}

.p-1 {
    padding: .5em
}

.p-2 {
    padding: 1em
}

.p-3 {
    padding: 1.5em
}

.p-4 {
    padding: 2em
}

.p-5 {
    padding: 2.5em
}

.p-6 {
    padding: 3em
}

.p-7 {
    padding: 3.5em
}

.p-8 {
    padding: 4em
}

.p-9 {
    padding: 4.5em
}

.p-10 {
    padding: 7em
}

.pt-1 {
    padding-top: .5em
}

.pt-2 {
    padding-top: 1em
}

.pt-3 {
    padding-top: 1.5em
}

.pt-4 {
    padding-top: 2em
}

.pt-5 {
    padding-top: 2.5em
}

.pt-6 {
    padding-top: 3em
}

.pt-7 {
    padding-top: 3.5em
}

.pt-8 {
    padding-top: 4em
}

.pt-9 {
    padding-top: 4.5em
}

.pt-10 {
    padding-top: 7em
}

.pr-1 {
    padding-right: .5em
}

.pr-2 {
    padding-right: 1em
}

.pr-3 {
    padding-right: 1.5em
}

.pr-4 {
    padding-right: 2em
}

.pr-5 {
    padding-right: 2.5em
}

.pr-6 {
    padding-right: 3em
}

.pr-7 {
    padding-right: 3.5em
}

.pr-8 {
    padding-right: 4em
}

.pr-9 {
    padding-right: 4.5em
}

.pr-10 {
    padding-right: 7em
}

.pb-1 {
    padding-bottom: .5em
}

.pb-2 {
    padding-bottom: 1em
}

.pb-3 {
    padding-bottom: 1.5em
}

.pb-4 {
    padding-bottom: 2em
}

.pb-5 {
    padding-bottom: 2.5em
}

.pb-6 {
    padding-bottom: 3em
}

.pb-7 {
    padding-bottom: 3.5em
}

.pb-8 {
    padding-bottom: 4em
}

.pb-9 {
    padding-bottom: 4.5em
}

.pb-10 {
    padding-bottom: 7em
}

.pl-1 {
    padding-left: .5em
}

.pl-2 {
    padding-left: 1em
}

.pl-3 {
    padding-left: 1.5em
}

.pl-4 {
    padding-left: 2em
}

.pl-5 {
    padding-left: 2.5em
}

.pl-6 {
    padding-left: 3em
}

.pl-7 {
    padding-left: 3.5em
}

.pl-8 {
    padding-left: 4em
}

.pl-9 {
    padding-left: 4.5em
}

.pl-10 {
    padding-left: 7em
}

.pt-full {
    padding-top: 100%
}

@media(min-width:600px) {
    .sm\:pt-1 {
        padding-top: .5em
    }

    .sm\:pt-2 {
        padding-top: 1em
    }

    .sm\:pt-3 {
        padding-top: 1.5em
    }

    .sm\:pt-4 {
        padding-top: 2em
    }

    .sm\:pt-5 {
        padding-top: 2.5em
    }

    .sm\:pt-6 {
        padding-top: 3em
    }

    .sm\:pt-7 {
        padding-top: 3.5em
    }

    .sm\:pt-8 {
        padding-top: 4em
    }

    .sm\:pt-9 {
        padding-top: 4.5em
    }

    .sm\:pt-10 {
        padding-top: 7em
    }

    .sm\:pr-1 {
        padding-right: .5em
    }

    .sm\:pr-2 {
        padding-right: 1em
    }

    .sm\:pr-3 {
        padding-right: 1.5em
    }

    .sm\:pr-4 {
        padding-right: 2em
    }

    .sm\:pr-5 {
        padding-right: 2.5em
    }

    .sm\:pr-6 {
        padding-right: 3em
    }

    .sm\:pr-7 {
        padding-right: 3.5em
    }

    .sm\:pr-8 {
        padding-right: 4em
    }

    .sm\:pr-9 {
        padding-right: 4.5em
    }

    .sm\:pr-10 {
        padding-right: 7em
    }

    .sm\:pb-1 {
        padding-bottom: .5em
    }

    .sm\:pb-2 {
        padding-bottom: 1em
    }

    .sm\:pb-3 {
        padding-bottom: 1.5em
    }

    .sm\:pb-4 {
        padding-bottom: 2em
    }

    .sm\:pb-5 {
        padding-bottom: 2.5em
    }

    .sm\:pb-6 {
        padding-bottom: 3em
    }

    .sm\:pb-7 {
        padding-bottom: 3.5em
    }

    .sm\:pb-8 {
        padding-bottom: 4em
    }

    .sm\:pb-9 {
        padding-bottom: 4.5em
    }

    .sm\:pb-10 {
        padding-bottom: 7em
    }

    .sm\:pl-1 {
        padding-left: .5em
    }

    .sm\:pl-2 {
        padding-left: 1em
    }

    .sm\:pl-3 {
        padding-left: 1.5em
    }

    .sm\:pl-4 {
        padding-left: 2em
    }

    .sm\:pl-5 {
        padding-left: 2.5em
    }

    .sm\:pl-6 {
        padding-left: 3em
    }

    .sm\:pl-7 {
        padding-left: 3.5em
    }

    .sm\:pl-8 {
        padding-left: 4em
    }

    .sm\:pl-9 {
        padding-left: 4.5em
    }

    .sm\:pl-10 {
        padding-left: 7em
    }
}

@media(min-width:1280px) {
    .lg\:pt-1 {
        padding-top: .5em
    }

    .lg\:pt-2 {
        padding-top: 1em
    }

    .lg\:pt-3 {
        padding-top: 1.5em
    }

    .lg\:pt-4 {
        padding-top: 2em
    }

    .lg\:pt-5 {
        padding-top: 2.5em
    }

    .lg\:pt-6 {
        padding-top: 3em
    }

    .lg\:pt-7 {
        padding-top: 3.5em
    }

    .lg\:pt-8 {
        padding-top: 4em
    }

    .lg\:pt-9 {
        padding-top: 4.5em
    }

    .lg\:pt-10 {
        padding-top: 7em
    }

    .lg\:pr-1 {
        padding-right: .5em
    }

    .lg\:pr-2 {
        padding-right: 1em
    }

    .lg\:pr-3 {
        padding-right: 1.5em
    }

    .lg\:pr-4 {
        padding-right: 2em
    }

    .lg\:pr-5 {
        padding-right: 2.5em
    }

    .lg\:pr-6 {
        padding-right: 3em
    }

    .lg\:pr-7 {
        padding-right: 3.5em
    }

    .lg\:pr-8 {
        padding-right: 4em
    }

    .lg\:pr-9 {
        padding-right: 4.5em
    }

    .lg\:pr-10 {
        padding-right: 7em
    }

    .lg\:pb-1 {
        padding-bottom: .5em
    }

    .lg\:pb-2 {
        padding-bottom: 1em
    }

    .lg\:pb-3 {
        padding-bottom: 1.5em
    }

    .lg\:pb-4 {
        padding-bottom: 2em
    }

    .lg\:pb-5 {
        padding-bottom: 2.5em
    }

    .lg\:pb-6 {
        padding-bottom: 3em
    }

    .lg\:pb-7 {
        padding-bottom: 3.5em
    }

    .lg\:pb-8 {
        padding-bottom: 4em
    }

    .lg\:pb-9 {
        padding-bottom: 4.5em
    }

    .lg\:pb-10 {
        padding-bottom: 7em
    }

    .lg\:pl-1 {
        padding-left: .5em
    }

    .lg\:pl-2 {
        padding-left: 1em
    }

    .lg\:pl-3 {
        padding-left: 1.5em
    }

    .lg\:pl-4 {
        padding-left: 2em
    }

    .lg\:pl-5 {
        padding-left: 2.5em
    }

    .lg\:pl-6 {
        padding-left: 3em
    }

    .lg\:pl-7 {
        padding-left: 3.5em
    }

    .lg\:pl-8 {
        padding-left: 4em
    }

    .lg\:pl-9 {
        padding-left: 4.5em
    }

    .lg\:pl-10 {
        padding-left: 7em
    }
}

.wp-block-paragraph.is-style-error,
.wp-block-paragraph.is-style-info,
.wp-block-paragraph.is-style-success,
.wp-block-paragraph.is-style-warning,
p.is-style-error,
p.is-style-info,
p.is-style-success,
p.is-style-warning {
    border-radius: 4px;
    box-sizing: border-box;
    padding: 32px
}

.wp-block-paragraph.is-style-error.coblocks-alert-paragraph,
.wp-block-paragraph.is-style-info.coblocks-alert-paragraph,
.wp-block-paragraph.is-style-success.coblocks-alert-paragraph,
.wp-block-paragraph.is-style-warning.coblocks-alert-paragraph,
p.is-style-error.coblocks-alert-paragraph,
p.is-style-info.coblocks-alert-paragraph,
p.is-style-success.coblocks-alert-paragraph,
p.is-style-warning.coblocks-alert-paragraph {
    margin-bottom: var(--go--spacing--vertical);
    margin-top: var(--go--spacing--vertical)
}

.wp-block-paragraph:not(.has-background).is-style-info,
p:not(.has-background).is-style-info {
    background-color: #d6efee
}

.wp-block-paragraph:not(.has-background).is-style-warning,
p:not(.has-background).is-style-warning {
    background-color: #fbe7dd
}

.wp-block-paragraph:not(.has-background).is-style-error,
p:not(.has-background).is-style-error {
    background-color: #ffdede
}

.wp-block-paragraph:not(.has-background).is-style-success,
p:not(.has-background).is-style-success {
    background-color: #d0eac4
}

.wp-block-paragraph:not(.has-text-color).is-style-info,
p:not(.has-text-color).is-style-info {
    color: #094264
}

.wp-block-paragraph:not(.has-text-color).is-style-warning,
p:not(.has-text-color).is-style-warning {
    color: #8a4b30
}

.wp-block-paragraph:not(.has-text-color).is-style-error,
p:not(.has-text-color).is-style-error {
    color: #8b343c
}

.wp-block-paragraph:not(.has-text-color).is-style-success,
p:not(.has-text-color).is-style-success {
    color: #154a28
}

.wp-block-image.is-style-bottom-wave img {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");
    -webkit-mask-position: bottom;
    mask-position: bottom
}

.wp-block-image.is-style-bottom-wave img,
.wp-block-image.is-style-top-wave img {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover
}

.wp-block-image.is-style-top-wave img {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");
    -webkit-mask-position: top;
    mask-position: top
}

.block-editor-block-styles__item-preview .wp-block-image {
    margin-top: 0
}

.block-editor-block-styles__item-preview .wp-block-image .components-resizable-box__container {
    height: 100% !important;
    width: 100% !important
}

.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-bottom-wave {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");
    -webkit-mask-position: bottom;
    mask-position: bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover
}

.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-top-wave {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");
    -webkit-mask-position: top;
    mask-position: top;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover
}

:root {
    --coblocks-spacing--0: 0;
    --coblocks-spacing--1: 0.5em;
    --coblocks-spacing--2: 1em;
    --coblocks-spacing--3: 1.5em;
    --coblocks-spacing--4: 2em;
    --coblocks-spacing--5: 2.5em;
    --coblocks-spacing--6: 3em;
    --coblocks-spacing--7: 3.5em;
    --coblocks-spacing--8: 4em;
    --coblocks-spacing--9: 4.5em;
    --coblocks-spacing--10: 7em
}

.wp-block-media-text.is-style-card .wp-block-media-text__content {
    background-color: var(--wp--preset--color--background, #fff);
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(var(--coblocks-spacing--8, 4em)*-1);
    padding: var(--coblocks-spacing--4, 2em);
    width: 95%
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-card .wp-block-media-text__content {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding: calc(var(--coblocks-spacing--3, 1.5em)*2);
        right: 1px;
        width: auto
    }
}

@media(min-width:960px) {
    .wp-block-media-text.is-style-card .wp-block-media-text__content {
        padding: calc(var(--coblocks-spacing--6, 3em)*2)
    }
}

.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content {
    margin-bottom: calc(var(--coblocks-spacing--8, 4em)*-1);
    margin-top: 0
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content {
        margin-bottom: 0
    }
}

.wp-block-media-text.is-style-overlap .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(var(--coblocks-spacing--4, 2em)*-1);
    width: 90%
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-overlap .wp-block-media-text__content {
        margin-left: 0;
        margin-left: calc(var(--coblocks-spacing--8, 4em)*-1);
        margin-right: 0;
        margin-top: 0;
        width: auto
    }
}

@media(min-width:960px) {
    .wp-block-media-text.is-style-overlap .wp-block-media-text__content {
        margin-left: calc(var(--coblocks-spacing--10, 7em)*-2)
    }
}

.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    width: auto
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content {
        margin-left: 0;
        margin-right: calc(var(--coblocks-spacing--8, 4em)*-1);
        width: 175%
    }
}

@media(min-width:960px) {
    .wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content {
        margin-right: calc(var(--coblocks-spacing--10, 7em)*-2)
    }
}

@media(min-width:600px) {

    .wp-block-media-text.is-style-card .wp-block-media-text__content,
    .wp-block-media-text.is-style-outline .wp-block-media-text__content {
        margin-left: calc(var(--coblocks-spacing--10, 7em)*-1)
    }

    .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content,
    .wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content {
        margin-left: 0;
        margin-right: calc(var(--coblocks-spacing--10, 7em)*-1)
    }
}

.wp-block-media-text.is-style-outline .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    width: 90%
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-outline .wp-block-media-text__content {
        margin-left: calc(var(--coblocks-spacing--10, 7em)*-1);
        margin-right: inherit;
        margin-top: inherit;
        width: auto
    }
}

.wp-block-media-text.is-style-outline .wp-block-media-text__content h1,
.wp-block-media-text.is-style-outline .wp-block-media-text__content h2,
.wp-block-media-text.is-style-outline .wp-block-media-text__content h3,
.wp-block-media-text.is-style-outline .wp-block-media-text__content h4,
.wp-block-media-text.is-style-outline .wp-block-media-text__content h5,
.wp-block-media-text.is-style-outline .wp-block-media-text__content h6,
.wp-block-media-text.is-style-outline .wp-block-media-text__content p {
    background-color: var(--wp--preset--color--background, #fff);
    box-shadow: .5rem 0 0 var(--wp--preset--color--background, #fff), -.5rem 0 0 var(--wp--preset--color--background, #fff);
    display: inline
}

.wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block-buttons {
    margin-top: var(--coblocks-spacing--5, 2.5em)
}

.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content {
    width: 100%
}

@media(min-width:600px) {
    .wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content {
        margin-left: .5rem;
        width: 175%
    }
}

.wp-block-media-text .wp-block-media-text__content :first-child {
    margin-top: 0
}

@media(min-width:600px) {
    .editor-styles-wrapper .wp-block-media-text.is-style-card .wp-block-media-text__content {
        right: 1px
    }

    .editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content {
        left: 1px;
        right: auto
    }
}

.editor-styles-wrapper .wp-block-media-text.is-style-card .components-resizable-box__handle:after,
.editor-styles-wrapper .wp-block-media-text.is-style-outline .components-resizable-box__handle:after,
.editor-styles-wrapper .wp-block-media-text.is-style-overlap .components-resizable-box__handle:after {
    top: -8px
}

.editor-styles-wrapper .wp-block-media-text.is-style-card.is-selected .wp-block-media-text__media:after,
.editor-styles-wrapper .wp-block-media-text.is-style-outline.is-selected .wp-block-media-text__media:after,
.editor-styles-wrapper .wp-block-media-text.is-style-overlap.is-selected .wp-block-media-text__media:after {
    background: var(--wp-admin-theme-color, #007cba);
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: -7px;
    content: "";
    cursor: inherit;
    display: block;
    height: 15px;
    position: absolute;
    right: -8px;
    width: 15px;
    z-index: 9999
}

.editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__media:after,
.editor-styles-wrapper .wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__media:after,
.editor-styles-wrapper .wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__media:after {
    left: -8px;
    right: inherit
}

.editor-styles-wrapper .wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block.wp-block-buttons {
    margin-top: var(--coblocks-spacing--5, 2.5em) !important
}

:root {
    --coblocks-spacing--0: 0;
    --coblocks-spacing--1: 0.5em;
    --coblocks-spacing--2: 1em;
    --coblocks-spacing--3: 1.5em;
    --coblocks-spacing--4: 2em;
    --coblocks-spacing--5: 2.5em;
    --coblocks-spacing--6: 3em;
    --coblocks-spacing--7: 3.5em;
    --coblocks-spacing--8: 4em;
    --coblocks-spacing--9: 4.5em;
    --coblocks-spacing--10: 7em
}

.is-style-checkbox li {
    list-style-type: none !important;
    padding-left: 10px;
    position: relative
}

@media(min-width:600px) {
    .is-style-checkbox li {
        padding-left: 12px
    }
}

.is-style-checkbox li:before {
    background-color: currentColor;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 20px;
    left: -20px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);
    position: absolute;
    top: 6px;
    transform: scale(.9);
    width: 20px
}

@media(min-width:600px) {
    .is-style-checkbox li:before {
        top: 8px;
        transform: 0
    }
}

.is-style-checkbox li li:before {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+)
}

.is-twentynineteen .is-style-checkbox li:before {
    top: 10px
}

.is-style-none,
.is-style-none li {
    list-style-type: none !important;
    padding-left: 0 !important
}

.is-style-none li:before {
    content: "​"
}

.is-style-circular .wp-block-button__link {
    border-radius: 100px !important
}

.is-style-3d .wp-block-button__link {
    box-shadow: inset 0 -3px 0 0 #00000040
}

.is-style-shadow {
    z-index: 1
}

.is-style-shadow .wp-block-button__link {
    box-shadow: 0 4px 6px #0000001c, 0 1px 3px rgba(0, 0, 0, .075)
}

.components-coblocks-animation-toggle.has-animation {
    position: relative
}

.components-coblocks-animation-toggle.has-animation :after {
    border-color: #0000 #1e1e1e #1e1e1e #0000;
    border-style: solid;
    border-width: 4px;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 0;
    top: 1px;
    transform: rotate(-90deg);
    width: 8px
}

.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .medium-circle {
    fill: #727272
}

.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .small-circle {
    fill: #c6c6c6
}

.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .large-circle,
.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .large-circle {
    animation: bounce .3s ease-in;
    animation-fill-mode: forwards
}

.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .medium-circle,
.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .medium-circle {
    animation: bounce .3s ease-in;
    animation-delay: .1s;
    animation-fill-mode: forwards;
    fill: rgba(var(--wp-admin-theme-color-rgb), .66);
    position: relative
}

.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .small-circle,
.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .small-circle {
    animation: bounce .3s ease-in;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    fill: rgba(var(--wp-admin-theme-color-rgb), .33)
}

.components-coblocks-animation-dropdown .components-popover__content {
    border-color: #1e1e1e;
    box-shadow: none
}

.components-coblocks-animation-dropdown .components-menu-group+.components-menu-group {
    border-top-color: #1e1e1e
}

.components-coblocks-animation-dropdown .components-menu-item__button.components-button.has-icon {
    padding-right: 6px
}

@keyframes bounce {
    0% {
        transform: translate(0)
    }

    50% {
        transform: translateY(-2px)
    }

    to {
        transform: translate(0)
    }
}

.coblocks__preview .wp-block {
    margin: 0;
    max-width: none !important
}

.coblocks__preview .components-resizable-box__container {
    width: 100% !important
}

.coblocks__preview .components-tip {
    margin-top: 12px
}

.coblocks__preview .block-editor-block-preview__content .block-editor-block-list__block {
    margin-bottom: 0;
    margin-top: 0
}

body:not(.amp) .coblocks-animate {
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    opacity: 0
}

body:not(.amp) .coblocks-animate.animate-loop {
    animation-iteration-count: infinite
}

body:not(.amp) .coblocks-animate.fadeIn {
    animation-duration: .75s;
    animation-name: fadeIn
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

body:not(.amp) .coblocks-animate.zoomIn {
    animation-duration: .75s;
    animation-name: zoomIn
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

body:not(.amp) .coblocks-animate.slideInLeft {
    animation-duration: .75s;
    animation-name: slideInLeft
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-5em)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

body:not(.amp) .coblocks-animate.slideInRight {
    animation-duration: .75s;
    animation-name: slideInRight
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(5em)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

body:not(.amp) .coblocks-animate.slideInBottom {
    animation-duration: .75s;
    animation-name: slideInBottom
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(5em)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

body:not(.amp) .coblocks-animate.clipHorizontal {
    animation-duration: .75s;
    animation-name: clipHorizontal
}

@keyframes clipHorizontal {
    0% {
        clip-path: polygon(0 50%, 0 100%, 0 100%, 0 50%, 100% 50%, 100% 0, 100% 0, 100% 50%);
        opacity: 0
    }

    to {
        clip-path: polygon(0 50%, 0 100%, 100% 100%, 100% 50%, 100% 50%, 100% 0, 0 0, 0 50%);
        opacity: 1
    }
}

body:not(.amp) .coblocks-animate.clipVertical {
    animation-duration: .75s;
    animation-name: clipVertical
}

@keyframes clipVertical {
    0% {
        clip-path: polygon(50% 0, 100% 0, 100% 0, 50% 0, 50% 100%, 0 100%, 0 100%, 50% 100%);
        opacity: 0
    }

    to {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%, 50% 100%, 0 100%, 0 0, 50% 0);
        opacity: 1
    }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/post-slider-and-carousel/assets/css/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

/************************************************************
				Box Sizing
************************************************************/
.psac-slider-and-carousel *,
.psac-columns *,
.psac-widget-wrp * {
    outline: none !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/************************************************************
				Clearfix
************************************************************/
.psac-clearfix:before,
.psac-clearfix:after {
    content: "";
    display: table;
}

.psac-clearfix::after {
    clear: both;
}

.psac-clearfix {
    clear: both;
}

/***************************************************************
				Some common css
***************************************************************/
.psac-post-title {
    margin: 0 0 15px 0 !important;
}

.psac-post-meta {
    line-height: normal !important;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    color: #555;
    font-size: 12px;
}

.psac-post-meta span {
    font-style: italic;
    font-size: 12px;
}

.psac-post-short-content {
    margin-bottom: 15px;
}

.psac-cat-list li ul {
    margin-left: 0.857143rem;
}

.psac-cat-list .current-cat>a {
    font-weight: bold;
}

.psac-link-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.psac-overlay a {
    color: #fff;
}

.psac-post-meta span.psac-post-meta-innr {
    font-size: 12px;
    display: inline-block;
    margin: 0 5px 5px 5px;
}

.psac-post-tags {
    margin-top: 15px;
}

.psac-post-meta a {
    color: #888
}

.psac-post-grid,
.psac-post-slider {
    margin-bottom: 30px;
}

.psac-hide {
    display: none;
}

.psac-post-list {
    margin-bottom: 30px;
}

.psac-post-title a {
    text-decoration: none !important;
    border-bottom: 0px !important;
}

.psac-post-tags {
    clear: both;
}

.psac-post-tags a {
    font-style: italic;
    text-decoration: none;
    font-size: 14px;
    color: #555;
}

.category-title-main {
    clear: both;
}

.psac-post-link {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    bottom: 0;
    left: 0;
}

.psac-post-image-bg img {
    display: inline-block;
    max-width: 100%;
}

.psac-post-title a,
.psac-post-categories a {
    color: #000;
}

.psac-post-img-wrap {
    position: relative;
}

/****************************************************************
				Arrow and Dots settings
*****************************************************************/
.psac-slider-and-carousel .owl-nav {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    margin-top: -30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    border: none !important;
    width: 100%;
}

.psac-slider-and-carousel .owl-next {
    right: 0px !important;
    position: absolute;
}

.psac-slider-and-carousel .owl-prev {
    left: 0px !important;
    position: absolute;
}

.psac-slider-and-carousel .owl-nav .owl-next,
.psac-slider-and-carousel .owl-nav .owl-prev {
    display: inline-block;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.4);
    color: #000;
    border: 2px solid #000;
    line-height: normal !important;
    font-size: 25px;
    padding: 2px 15px 4px 15px !important;
    border-radius: 0px;
    box-shadow: none;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.psac-slider-and-carousel .owl-nav .owl-next:hover,
.psac-slider-and-carousel .owl-nav .owl-prev:hover,
.psac-slider-and-carousel .owl-nav .owl-next:focus,
.psac-slider-and-carousel .owl-nav .owl-prev:focus {
    background: #03a9f5;
    color: #fff;
    border-color: #03a9f5
}

.psac-slider-and-carousel .owl-dots {
    width: 100%;
    text-align: center;
}

.psac-slider-and-carousel .owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    padding: 0px !important;
    background: #555;
    margin: 0 2px;
    border-radius: 100%;
    display: inline-block;
    box-shadow: none;
}

.psac-slider-and-carousel .owl-dots .owl-dot.active {
    background: #03a9f5;
}

body.rtl .psac-slider-and-carousel .owl-nav .owl-next,
body.rtl .psac-slider-and-carousel .owl-nav .owl-prev {
    direction: ltr;
}

/****************************************************************
				Categories CSS
*****************************************************************/
.psac-post-categories {
    display: inline-block;
    color: #666;
    z-index: 9;
    position: relative;
    margin-bottom: 15px;
}

.psac-post-categories a {
    text-decoration: none;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    font-size: 13px;
    padding: 3px 2px;
    line-height: normal;
    display: inline-block;
    margin: 0 0 5px 0;
    border-bottom: 3px solid #f1f1f1;
}

/**************************************************************
						Read more link psac-design
******************************************************************/
.psac-readmorebtn {
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    text-decoration: none !important;
    color: #888;
    border: 2px solid #888;
    padding: 8px 15px;
    font-size: 13px;
    display: inline-block;
    box-sizing: border-box;
    line-height: normal !important;
}

.psac-readmorebtn:hover,
.psac-readmorebtn:focus {
    background: #888;
    color: #fff;
}

/**************************************************************
						post Slider psac-design
******************************************************************/
.psac-post-image-bg {
    position: relative;
    background-color: #f1f1f1;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.psac-post-slides {
    position: relative;
}

.psac-post-slides .psac-post-image-bg {
    margin-bottom: 0px;
}

/******************Slider psac-design-1********************/
.psac-post-slider.psac-design-1 .psac-post-image-bg {
    height: 400px;
}

.psac-post-slider.psac-design-1 {
    margin: 0px;
    text-align: center;
}

.psac-post-slider.psac-design-1 .psac-post-title {
    font-size: 24px;
    line-height: 30px;
}

.psac-post-slider.psac-design-1 .psac-post-overlay {
    background: rgba(255, 255, 255, 0.7);
    border: 5px solid #000;
    position: absolute;
    padding: 20px;
    left: 0;
    right: 0;
    max-width: 70%;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.psac-post-slider.psac-design-1 .psac-post-image-bg {
    margin-bottom: 0px;
}

.psac-post-slider.psac-design-1 .psac-post-categories a {
    border-color: #555;
    text-decoration: none !important;
}

.psac-post-slider.psac-design-1 .psac-readmorebtn {
    color: #555;
    border: 2px solid #555;
}

/******************Slider psac-design-2********************/
.psac-post-slider.psac-design-2 .psac-post-image-bg {
    height: 400px;
}

.psac-post-slider.psac-design-2 .psac-post-title {
    font-size: 24px;
    line-height: 30px;
}

.psac-post-slider.psac-design-2 .psac-post-slides {
    display: flex;
}

.psac-post-slider.psac-design-2 .psac-post-left {
    padding-right: 37px;
    background-color: #fff;
    background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/post-slider-and-carousel/assets/images/bg.png) !important;
    background-position: 3px 3px !important;
    background-repeat: repeat !important;
}

.psac-post-slider.psac-design-2 .psac-post-left .psac-post-overlay {
    background-color: #f5f6f8;
    padding: 44px 105px 44px 95px;
    height: 100%;
    display: flex;
    align-items: center;
}

.psac-post-slider.psac-design-2 .psac-post-right {}

.psac-post-slider.psac-design-2 .psac-post-categories a {
    border-color: #555;
    text-decoration: none !important;
}

body.rtl .psac-post-slider.psac-design-2 .psac-post-left {
    padding-left: 37px;
    padding-right: 0px;
}

/***************************************************************
					Carousel psac-designs
***************************************************************/
/******************Carousel psac-design-1********************/
.psac-post-carousel .psac-post-categories a {
    text-decoration: none !important;
}

.psac-post-carousel.psac-design-1 .psac-post-image-bg {
    height: 400px;
}

.psac-post-carousel.psac-design-1 .psac-post-image-bg::before {
    content: "";
    opacity: 0.8;
    background: -webkit-linear-gradient(bottom, transparent, #000);
    background: -o-linear-gradient(bottom, transparent, #000);
    background: -moz-linear-gradient(bottom, transparent, #000);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background: -webkit-linear-gradient(top, transparent, #000);
    background: -o-linear-gradient(top, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.psac-post-carousel.psac-design-1 .psac-post-carousel-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    text-align: center;
    z-index: 2;
    left: 0;
    right: 0;
}

.psac-post-carousel.psac-design-1 .psac-post-carousel-content a {
    color: #fff;
}

.psac-post-carousel.psac-design-1 .psac-post-carousel-content .psac-post-meta {
    margin-bottom: 0px;
    color: #fff;
}

.psac-post-carousel.psac-design-1 .psac-post-content {
    margin-top: 15px;
}

.psac-post-carousel.psac-design-1 .psac-post-content,
.psac-post-carousel.psac-design-1 .psac-post-tags {
    text-align: center;
}

.psac-post-carousel.psac-design-1 .psac-post-title {
    font-size: 24px;
    line-height: 30px;
}

/******************Carousel psac-design-2********************/
.psac-post-carousel.psac-design-2 .psac-post-title {
    font-size: 24px;
    line-height: 30px;
}

.psac-post-carousel.psac-design-2 .psac-post-image-bg {
    height: 250px;
}

.psac-post-carousel.psac-design-2 .psac-post-carousel-content {
    border: 2px solid #ddd;
    text-align: center;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.psac-post-carousel.psac-design-2 .psac-post-margin-content {
    padding: 15px;
}

.psac-post-carousel.psac-design-2 .psac-post-carousel-slide:hover .psac-post-carousel-content {
    border-color: #03a9f5;
}

/******************Widget Css********************/
.psac-vticker-scrolling-wdgt {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    height: 300;
}

.inf-vticker-initialized {
    visibility: visible !important;
    opacity: 1 !important;
}

.psac-post-left-img img {
    max-width: 100%;
}

.psac-widget-wrp ul {
    margin: 0 !important;
    padding: 0px !important;
}

.psac-widget-wrp ul li {
    list-style: none !important;
}

.psac-widget-wrp ul li .psac-post-date {
    margin-bottom: 10px;
}

.psac-vticker-scrolling-wdgt ul li:before,
.psac-vticker-scrolling-wdgt ul li:after {
    content: none !important;
    padding: 0px !important;
    margin: 0px !important;
}

.psac-widget-wrp .psac-post-list-content {
    padding: 15px 0;
}

.psac-widget-wrp .psac-post-left-img {
    width: 33%;
    float: left;
}

.psac-widget-wrp .psac-post-right-content {
    float: left;
    width: 67%;
    padding-left: 15px;
}

.psac-widget-wrp .psac-post-categories a {
    text-decoration: none !important;
    font-size: 11px;
    text-transform: capitalize;
    padding: 3px 3px;
}

.psac-widget-wrp .psac-post-categories {
    margin-bottom: 8px;
}

.psac-widget-wrp h4.psac-post-title {
    margin: 0 0 8px 0 !important
}

.psac-widget-wrp .psac-post-full-content {
    width: 100%;
}

.psac-column,
.psac-columns {
    width: 100%;
    float: left;
    position: relative;
}

@media only screen and (min-width: 40.0625em) {

    .psac-column,
    .psac-columns {
        position: relative;
        float: left;
    }

    .psac-col-2 {
        width: 50%;
    }

}

@media only screen and (max-width: 40em) {
    .psac-post-slider.psac-design-2 .psac-post-slides {
        display: block;
    }

    .psac-post-slider.psac-design-2 .psac-post-left .psac-post-overlay {
        padding: 20px 40px 20px 20px;
    }
}

@charset "UTF-8";

:root {
    --wp-admin-theme-color: #3858e9;
    --wp-admin-theme-color--rgb: 56, 88, 233;
    --wp-admin-theme-color-darker-10: #2145e6;
    --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
    --wp-admin-theme-color-darker-20: #183ad6;
    --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
    --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
    :root {
        --wp-admin-border-width-focus: 1.5px
    }
}

.components-animate__appear {
    animation: components-animate__appear-animation .1s cubic-bezier(0, 0, .2, 1) 0s;
    animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {
    .components-animate__appear {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.components-animate__appear.is-from-top,
.components-animate__appear.is-from-top.is-from-left {
    transform-origin: top left
}

.components-animate__appear.is-from-top.is-from-right {
    transform-origin: top right
}

.components-animate__appear.is-from-bottom,
.components-animate__appear.is-from-bottom.is-from-left {
    transform-origin: bottom left
}

.components-animate__appear.is-from-bottom.is-from-right {
    transform-origin: bottom right
}

@keyframes components-animate__appear-animation {
    0% {
        transform: translateY(-2em) scaleY(0) scaleX(0)
    }

    to {
        transform: translateY(0) scaleY(1) scaleX(1)
    }
}

.components-animate__slide-in {
    animation: components-animate__slide-in-animation .1s cubic-bezier(0, 0, .2, 1);
    animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {
    .components-animate__slide-in {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.components-animate__slide-in.is-from-left {
    transform: translateX(100%)
}

.components-animate__slide-in.is-from-right {
    transform: translateX(-100%)
}

@keyframes components-animate__slide-in-animation {
    to {
        transform: translateX(0)
    }
}

.components-animate__loading {
    animation: components-animate__loading 1.6s ease-in-out infinite
}

@keyframes components-animate__loading {
    0% {
        opacity: .5
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .5
    }
}

.components-autocomplete__popover .components-popover__content {
    min-width: 200px;
    padding: 8px
}

.components-autocomplete__result.components-button {
    display: flex;
    height: auto;
    min-height: 36px;
    text-align: left;
    width: 100%
}

.components-autocomplete__result.components-button:focus:not(:disabled) {
    box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-autocomplete__result.components-button.is-selected,
.components-autocomplete__result.components-button:not(:disabled, [aria-disabled=true]):active {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: #fff
}

.components-button-group {
    display: inline-block
}

.components-button-group .components-button {
    border-radius: 0;
    box-shadow: inset 0 0 0 1px #1e1e1e;
    color: #1e1e1e;
    display: inline-flex
}

.components-button-group .components-button+.components-button {
    margin-left: -1px
}

.components-button-group .components-button:first-child {
    border-radius: 2px 0 0 2px
}

.components-button-group .components-button:last-child {
    border-radius: 0 2px 2px 0
}

.components-button-group .components-button.is-primary,
.components-button-group .components-button:focus {
    position: relative;
    z-index: 1
}

.components-button-group .components-button.is-primary {
    box-shadow: inset 0 0 0 1px #1e1e1e
}

.components-button {
    align-items: center;
    -webkit-appearance: none;
    background: none;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    color: var(--wp-components-color-foreground, #1e1e1e);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    height: 36px;
    margin: 0;
    padding: 6px 12px;
    text-decoration: none;
    transition: box-shadow .1s linear
}

@media (prefers-reduced-motion:reduce) {
    .components-button {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-button.is-next-40px-default-size {
    height: 40px
}

.components-button:hover,
.components-button[aria-expanded=true] {
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button:disabled:hover,
.components-button[aria-disabled=true]:hover {
    color: initial
}

.components-button:focus:not(:disabled) {
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 3px solid #0000
}

.components-button.is-primary {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: var(--wp-components-color-accent-inverted, #fff);
    outline: 1px solid #0000;
    text-decoration: none;
    text-shadow: none;
    white-space: nowrap
}

.components-button.is-primary:hover:not(:disabled) {
    background: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
    color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-primary:active:not(:disabled) {
    background: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6));
    border-color: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6));
    color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-primary:focus:not(:disabled) {
    box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button.is-primary:disabled,
.components-button.is-primary:disabled:active:enabled,
.components-button.is-primary[aria-disabled=true],
.components-button.is-primary[aria-disabled=true]:active:enabled,
.components-button.is-primary[aria-disabled=true]:enabled {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: #fff6;
    opacity: 1;
    outline: none
}

.components-button.is-primary:disabled:active:enabled:focus:enabled,
.components-button.is-primary:disabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:focus:enabled {
    box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button.is-primary.is-busy,
.components-button.is-primary.is-busy:disabled,
.components-button.is-primary.is-busy[aria-disabled=true] {
    background-image: linear-gradient(-45deg, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 33%, var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6)) 33%, var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6)) 70%, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 70%);
    background-size: 100px 100%;
    border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-secondary,
.components-button.is-tertiary {
    outline: 1px solid #0000
}

.components-button.is-secondary:active:not(:disabled),
.components-button.is-tertiary:active:not(:disabled) {
    box-shadow: none
}

.components-button.is-secondary:disabled,
.components-button.is-secondary[aria-disabled=true],
.components-button.is-secondary[aria-disabled=true]:hover,
.components-button.is-tertiary:disabled,
.components-button.is-tertiary[aria-disabled=true],
.components-button.is-tertiary[aria-disabled=true]:hover {
    background: #0000;
    color: #949494;
    opacity: 1;
    transform: none
}

.components-button.is-secondary {
    background: #0000;
    box-shadow: inset 0 0 0 1px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 1px solid #0000;
    white-space: nowrap
}

.components-button.is-secondary:hover:not(:disabled, [aria-disabled=true]) {
    box-shadow: inset 0 0 0 1px var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6))
}

.components-button.is-secondary:disabled:not(:focus),
.components-button.is-secondary[aria-disabled=true]:hover:not(:focus),
.components-button.is-secondary[aria-disabled=true]:not(:focus) {
    box-shadow: inset 0 0 0 1px #ddd
}

.components-button.is-tertiary {
    background: #0000;
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    white-space: nowrap
}

.components-button.is-tertiary:hover:not(:disabled, [aria-disabled=true]) {
    background: rgba(var(--wp-admin-theme-color--rgb), .04)
}

.components-button.is-tertiary:active:not(:disabled, [aria-disabled=true]) {
    background: rgba(var(--wp-admin-theme-color--rgb), .08)
}

p+.components-button.is-tertiary {
    margin-left: -6px
}

.components-button.is-tertiary:disabled:not(:focus),
.components-button.is-tertiary[aria-disabled=true]:hover:not(:focus),
.components-button.is-tertiary[aria-disabled=true]:not(:focus) {
    box-shadow: none;
    outline: none
}

.components-button.is-destructive {
    --wp-components-color-accent: #cc1818;
    --wp-components-color-accent-darker-10: #9e1313;
    --wp-components-color-accent-darker-20: #710d0d
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link) {
    color: #cc1818
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):hover:not(:disabled) {
    color: #710d0d
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):focus:not(:disabled) {
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #cc1818
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):active:not(:disabled) {
    background: #ccc
}

.components-button.is-link {
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    height: auto;
    margin: 0;
    outline: none;
    padding: 0;
    text-align: left;
    text-decoration: underline;
    transition-duration: .05s;
    transition-property: border, background, color;
    transition-timing-function: ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .components-button.is-link {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-button.is-link:focus {
    border-radius: 2px
}

.components-button:not(:disabled, [aria-disabled=true]):active {
    color: var(--wp-components-color-foreground, #1e1e1e)
}

.components-button:disabled,
.components-button[aria-disabled=true] {
    cursor: default;
    opacity: .3
}

.components-button.is-busy,
.components-button.is-secondary.is-busy,
.components-button.is-secondary.is-busy:disabled,
.components-button.is-secondary.is-busy[aria-disabled=true] {
    animation: components-button__busy-animation 2.5s linear infinite;
    background-image: linear-gradient(-45deg, #fafafa 33%, #e0e0e0 0, #e0e0e0 70%, #fafafa 0);
    background-size: 100px 100%;
    opacity: 1
}

@media (prefers-reduced-motion:reduce) {

    .components-button.is-busy,
    .components-button.is-secondary.is-busy,
    .components-button.is-secondary.is-busy:disabled,
    .components-button.is-secondary.is-busy[aria-disabled=true] {
        animation-duration: 0s
    }
}

.components-button.is-compact {
    height: 32px
}

.components-button.is-compact.has-icon:not(.has-text) {
    min-width: 32px;
    padding: 0;
    width: 32px
}

.components-button.is-small {
    font-size: 11px;
    height: 24px;
    line-height: 22px;
    padding: 0 8px
}

.components-button.is-small.has-icon:not(.has-text) {
    min-width: 24px;
    padding: 0;
    width: 24px
}

.components-button.has-icon {
    justify-content: center;
    min-width: 36px;
    padding: 6px
}

.components-button.has-icon.is-next-40px-default-size {
    min-width: 40px
}

.components-button.has-icon .dashicon {
    align-items: center;
    box-sizing: initial;
    display: inline-flex;
    justify-content: center;
    padding: 2px
}

.components-button.has-icon.has-text {
    gap: 4px;
    justify-content: start;
    padding-left: 8px;
    padding-right: 12px
}

.components-button.is-pressed {
    background: var(--wp-components-color-foreground, #1e1e1e);
    color: var(--wp-components-color-foreground-inverted, #fff)
}

.components-button.is-pressed:focus:not(:disabled) {
    box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 2px solid #0000
}

.components-button.is-pressed:hover:not(:disabled) {
    background: var(--wp-components-color-foreground, #1e1e1e);
    color: var(--wp-components-color-foreground-inverted, #fff)
}

.components-button svg {
    fill: currentColor;
    outline: none
}

@media (forced-colors:active) {
    .components-button svg {
        fill: CanvasText
    }
}

.components-button .components-visually-hidden {
    height: auto
}

@keyframes components-button__busy-animation {
    0% {
        background-position: 200px 0
    }
}

.components-checkbox-control {
    --checkbox-input-size: 24px;
    --checkbox-input-margin: 8px
}

@media (min-width:600px) {
    .components-checkbox-control {
        --checkbox-input-size: 20px
    }
}

.components-checkbox-control__label {
    line-height: var(--checkbox-input-size)
}

.components-checkbox-control__input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #1e1e1e;
    border-radius: 2px;
    box-shadow: 0 0 0 #0000;
    clear: none;
    color: #1e1e1e;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    height: var(--checkbox-input-size);
    line-height: normal;
    line-height: 0;
    margin: 0 4px 0 0;
    outline: 0;
    padding: 6px 8px;
    padding: 0 !important;
    text-align: center;
    transition: box-shadow .1s linear;
    transition: none;
    transition: border-color .1s ease-in-out;
    vertical-align: top;
    width: var(--checkbox-input-size)
}

@media (min-width:600px) {
    .components-checkbox-control__input[type=checkbox] {
        font-size: 13px;
        line-height: normal
    }
}

.components-checkbox-control__input[type=checkbox]:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-checkbox-control__input[type=checkbox]::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder {
    color: #1e1e1e9e
}

.components-checkbox-control__input[type=checkbox]:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]:checked {
    background: var(--wp-admin-theme-color);
    border-color: var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]:checked::-ms-check {
    opacity: 0
}

.components-checkbox-control__input[type=checkbox]:checked:before,
.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
    color: #fff;
    margin: -3px -5px
}

@media (min-width:782px) {

    .components-checkbox-control__input[type=checkbox]:checked:before,
    .components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
        margin: -4px 0 0 -5px
    }
}

.components-checkbox-control__input[type=checkbox][aria-checked=mixed] {
    background: var(--wp-admin-theme-color);
    border-color: var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    display: inline-block;
    float: left;
    font: normal 30px/1 dashicons;
    vertical-align: middle;
    width: 16px
}

@media (min-width:782px) {
    .components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
        float: none;
        font-size: 21px
    }
}

.components-checkbox-control__input[type=checkbox]:disabled,
.components-checkbox-control__input[type=checkbox][aria-disabled=true] {
    background: #f0f0f0;
    border-color: #ddd;
    cursor: default;
    opacity: 1
}

@media (prefers-reduced-motion:reduce) {
    .components-checkbox-control__input[type=checkbox] {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-checkbox-control__input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);
    outline: 2px solid #0000;
    outline-offset: 2px
}

.components-checkbox-control__input[type=checkbox]:checked,
.components-checkbox-control__input[type=checkbox]:indeterminate {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-checkbox-control__input[type=checkbox]:checked::-ms-check,
.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check {
    opacity: 0
}

.components-checkbox-control__input[type=checkbox]:checked:before {
    content: none
}

.components-checkbox-control__input-container {
    aspect-ratio: 1;
    display: inline-block;
    flex-shrink: 0;
    margin-right: var(--checkbox-input-margin);
    position: relative;
    vertical-align: middle;
    width: var(--checkbox-input-size)
}

svg.components-checkbox-control__checked,
svg.components-checkbox-control__indeterminate {
    --checkmark-size: var(--checkbox-input-size);
    fill: #fff;
    cursor: pointer;
    height: var(--checkmark-size);
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    user-select: none;
    width: var(--checkmark-size)
}

@media (min-width:600px) {

    svg.components-checkbox-control__checked,
    svg.components-checkbox-control__indeterminate {
        --checkmark-size: calc(var(--checkbox-input-size) + 4px)
    }
}

.components-checkbox-control__help {
    display: inline-block;
    margin-inline-start: calc(var(--checkbox-input-size) + var(--checkbox-input-margin))
}

.components-circular-option-picker {
    display: inline-block;
    min-width: 188px;
    width: 100%
}

.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px
}

.components-circular-option-picker .components-circular-option-picker__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1
}

.components-circular-option-picker>:not(.components-circular-option-picker__swatches) {
    position: relative;
    z-index: 0
}

.components-circular-option-picker__option-wrapper {
    display: inline-block;
    height: 28px;
    transform: scale(1);
    transition: transform .1s ease;
    vertical-align: top;
    width: 28px;
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {
    .components-circular-option-picker__option-wrapper {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-circular-option-picker__option-wrapper:hover {
    transform: scale(1.2)
}

.components-circular-option-picker__option-wrapper>div {
    height: 100%;
    width: 100%
}

.components-circular-option-picker__option-wrapper:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cpath fill='%23555D65' d='M6 8V6H4v2h2zm2 0V6h2v2H8zm2 8H8v-2h2v2zm2 0v-2h2v2h-2zm0 2v-2h-2v2H8v2h2v-2h2zm2 0v2h-2v-2h2zm2 0h-2v-2h2v2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' d='M18 18v2h-2v-2h2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z' clip-rule='evenodd'/%3E%3C/svg%3E");
    border-radius: 50%;
    bottom: 1px;
    content: "";
    left: 1px;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: -1
}

.components-circular-option-picker__option {
    background: #0000;
    border: none;
    border-radius: 50%;
    box-shadow: inset 0 0 0 14px;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    transition: box-shadow .1s ease;
    vertical-align: top;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .components-circular-option-picker__option {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-circular-option-picker__option:hover {
    box-shadow: inset 0 0 0 14px !important
}

.components-circular-option-picker__option[aria-pressed=true],
.components-circular-option-picker__option[aria-selected=true] {
    box-shadow: inset 0 0 0 4px;
    overflow: visible;
    position: relative;
    z-index: 1
}

.components-circular-option-picker__option[aria-pressed=true]+svg,
.components-circular-option-picker__option[aria-selected=true]+svg {
    border-radius: 50%;
    left: 2px;
    pointer-events: none;
    position: absolute;
    top: 2px;
    z-index: 2
}

.components-circular-option-picker__option:after {
    border: 1px solid #0000;
    border-radius: 50%;
    bottom: -1px;
    box-shadow: inset 0 0 0 1px #0003;
    box-sizing: inherit;
    content: "";
    left: -1px;
    position: absolute;
    right: -1px;
    top: -1px
}

.components-circular-option-picker__option:focus:after {
    border: 2px solid #757575;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    content: "";
    height: calc(100% + 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 4px)
}

.components-circular-option-picker__option.components-button:focus {
    background-color: initial;
    box-shadow: inset 0 0 0 14px;
    outline: none
}

.components-circular-option-picker__button-action .components-circular-option-picker__option {
    background: #fff;
    color: #fff
}

.components-circular-option-picker__dropdown-link-action {
    margin-right: 16px
}

.components-circular-option-picker__dropdown-link-action .components-button {
    line-height: 22px
}

.components-palette-edit__popover-gradient-picker {
    padding: 8px;
    width: 260px
}

.components-dropdown-menu__menu .components-palette-edit__menu-button {
    width: 100%
}

.component-color-indicator {
    background: #fff linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #0003;
    display: inline-block;
    height: 20px;
    padding: 0;
    width: 20px
}

.components-combobox-control {
    width: 100%
}

input.components-combobox-control__input[type=text] {
    border: none;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    line-height: inherit;
    margin: 0;
    min-height: auto;
    padding: 2px;
    width: 100%
}

@media (min-width:600px) {
    input.components-combobox-control__input[type=text] {
        font-size: 13px
    }
}

input.components-combobox-control__input[type=text]:focus {
    box-shadow: none;
    outline: none
}

.components-combobox-control__suggestions-container {
    align-items: flex-start;
    border: 1px solid #949494;
    border-radius: 2px;
    box-shadow: 0 0 0 #0000;
    display: flex;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    line-height: normal;
    padding: 0;
    transition: box-shadow .1s linear;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .components-combobox-control__suggestions-container {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

@media (min-width:600px) {
    .components-combobox-control__suggestions-container {
        font-size: 13px;
        line-height: normal
    }
}

.components-combobox-control__suggestions-container:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-combobox-control__suggestions-container::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-combobox-control__suggestions-container::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-combobox-control__suggestions-container:-ms-input-placeholder {
    color: #1e1e1e9e
}

.components-combobox-control__suggestions-container:focus-within {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-combobox-control__reset.components-button {
    display: flex;
    height: 16px;
    min-width: 16px;
    padding: 0
}

.components-color-palette__custom-color-wrapper {
    position: relative;
    z-index: 0
}

.components-color-palette__custom-color-button {
    background: none;
    border: none;
    border-radius: 2px 2px 0 0;
    box-shadow: inset 0 0 0 1px #0003;
    box-sizing: border-box;
    cursor: pointer;
    height: 64px;
    outline: 1px solid #0000;
    position: relative;
    width: 100%
}

.components-color-palette__custom-color-button:focus {
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline-width: 2px
}

.components-color-palette__custom-color-button:after {
    background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0);
    background-position: 0 0, 24px 24px;
    background-size: 48px 48px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.components-color-palette__custom-color-text-wrapper {
    border-radius: 0 0 2px 2px;
    box-shadow: inset 0 -1px 0 0 #0003, inset 1px 0 0 0 #0003, inset -1px 0 0 0 #0003;
    font-size: 13px;
    padding: 12px 16px;
    position: relative
}

.components-color-palette__custom-color-name {
    color: var(--wp-components-color-foreground, #1e1e1e);
    margin: 0 1px
}

.components-color-palette__custom-color-value {
    color: #757575
}

.components-color-palette__custom-color-value--is-hex {
    text-transform: uppercase
}

.components-color-palette__custom-color-value:empty:after {
    content: "​";
    visibility: hidden
}

.components-custom-gradient-picker__gradient-bar {
    border-radius: 2px;
    height: 48px;
    position: relative;
    width: 100%;
    z-index: 1
}

.components-custom-gradient-picker__gradient-bar.has-gradient {
    background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0);
    background-position: 0 0, 12px 12px;
    background-size: 24px 24px
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__gradient-bar-background {
    inset: 0;
    position: absolute
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: calc(100% - 48px)
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-dropdown {
    display: flex;
    height: 16px;
    position: absolute;
    top: 16px;
    width: 16px
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown {
    background: #fff;
    border-radius: 50%;
    color: #1e1e1e;
    height: inherit;
    min-width: 16px;
    padding: 2px;
    position: relative;
    width: inherit
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown svg {
    height: 100%;
    width: 100%
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 2px 0 #00000040;
    height: inherit;
    outline: 2px solid #0000;
    padding: 0;
    width: inherit
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,
.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus {
    box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff, 0 0 2px 0 #00000040;
    outline: 1.5px solid #0000
}

.components-custom-gradient-picker__remove-control-point-wrapper {
    padding-bottom: 8px
}

.components-custom-gradient-picker__inserter {
    direction: ltr
}

.components-custom-gradient-picker__liner-gradient-indicator {
    display: inline-block;
    flex: 0 auto;
    height: 20px;
    width: 20px
}

.components-custom-gradient-picker .components-custom-gradient-picker__toolbar {
    border: none
}

.components-custom-gradient-picker .components-custom-gradient-picker__toolbar>div+div {
    margin-left: 1px
}

.components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed>svg {
    background: #fff;
    border: 1px solid #949494;
    border-radius: 2px
}

.components-custom-gradient-picker__ui-line {
    position: relative;
    z-index: 0
}

.components-custom-select-control {
    font-size: 13px;
    position: relative
}

.components-custom-select-control__button {
    outline: 0;
    position: relative;
    text-align: left
}

.components-custom-select-control__hint {
    color: #949494;
    margin-left: 10px
}

.components-custom-select-control__menu-wrapper {
    bottom: 0;
    min-width: 100%;
    position: absolute
}

.components-custom-select-control__menu {
    background-color: #fff;
    border: 1px solid #1e1e1e;
    border-radius: 2px;
    max-height: 400px;
    min-width: 100%;
    outline: none;
    overflow: auto;
    padding: 0;
    position: absolute;
    transition: none;
    z-index: 1000000
}

.components-custom-select-control__menu[aria-hidden=true] {
    display: none
}

.components-custom-select-control__item {
    align-items: center;
    cursor: default;
    display: grid;
    grid-template-columns: auto auto;
    line-height: 28px;
    list-style-type: none;
    padding: 8px 16px
}

.components-custom-select-control__item:not(.is-next-40px-default-size) {
    padding: 8px
}

.components-custom-select-control__item.has-hint {
    grid-template-columns: auto auto 30px
}

.components-custom-select-control__item.is-highlighted {
    background: #ddd
}

.components-custom-select-control__item .components-custom-select-control__item-hint {
    color: #949494;
    padding-right: 4px;
    text-align: right
}

.components-custom-select-control__item .components-custom-select-control__item-icon {
    margin-left: auto
}

.components-custom-select-control__item:last-child {
    margin-bottom: 0
}

.block-editor-dimension-control .components-base-control__field {
    align-items: center;
    display: flex
}

.block-editor-dimension-control .components-base-control__label {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    margin-right: 1em
}

.block-editor-dimension-control .components-base-control__label .dashicon {
    margin-right: .5em
}

.block-editor-dimension-control.is-manual .components-base-control__label {
    width: 10em
}

body.is-dragging-components-draggable {
    cursor: move;
    cursor: grabbing !important
}

.components-draggable__invisible-drag-image {
    height: 50px;
    left: -1000px;
    position: fixed;
    width: 50px
}

.components-draggable__clone {
    background: #0000;
    padding: 0;
    pointer-events: none;
    position: fixed;
    z-index: 1000000000
}

.components-drop-zone {
    border-radius: 2px;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 40
}

.components-drop-zone.is-active {
    opacity: 1;
    visibility: visible
}

.components-drop-zone__content {
    align-items: center;
    background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    bottom: 0;
    color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 50
}

.components-drop-zone__content-icon,
.components-drop-zone__content-text {
    display: block
}

.components-drop-zone__content-icon {
    fill: currentColor;
    line-height: 0;
    margin: 0 auto 8px;
    pointer-events: none
}

.components-drop-zone__content-text {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px
}

.components-dropdown {
    display: inline-block
}

.components-dropdown__content .components-popover__content {
    padding: 8px
}

.components-dropdown__content [role=menuitem] {
    white-space: nowrap
}

.components-dropdown__content .components-menu-group {
    margin: 0 -8px;
    padding: 8px
}

.components-dropdown__content .components-menu-group:first-child {
    margin-top: -8px
}

.components-dropdown__content .components-menu-group:last-child {
    margin-bottom: -8px
}

.components-dropdown__content .components-menu-group+.components-menu-group {
    border-top: 1px solid #ccc;
    margin-top: 0;
    padding: 8px
}

.components-dropdown__content.is-alternate .components-menu-group+.components-menu-group {
    border-color: #1e1e1e
}

.components-dropdown-menu__toggle {
    vertical-align: top
}

.components-dropdown-menu__menu {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    width: 100%
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item,
.components-dropdown-menu__menu .components-menu-item {
    cursor: pointer;
    outline: none;
    padding: 6px;
    white-space: nowrap;
    width: 100%
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
.components-dropdown-menu__menu .components-menu-item.has-separator {
    margin-top: 6px;
    overflow: visible;
    position: relative
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,
.components-dropdown-menu__menu .components-menu-item.has-separator:before {
    background-color: #ddd;
    box-sizing: initial;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: -3px
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active .dashicon,
.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,
.components-dropdown-menu__menu .components-menu-item.is-active .dashicon,
.components-dropdown-menu__menu .components-menu-item.is-active svg {
    background: #1e1e1e;
    border-radius: 1px;
    box-shadow: 0 0 0 1px #1e1e1e;
    color: #fff
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,
.components-dropdown-menu__menu .components-menu-item.is-icon-only {
    width: auto
}

.components-dropdown-menu__menu .components-menu-item__button,
.components-dropdown-menu__menu .components-menu-item__button.components-button {
    height: auto;
    min-height: 36px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: left
}

.components-duotone-picker__color-indicator:before {
    background: #0000
}

.components-duotone-picker__color-indicator>.components-button,
.components-duotone-picker__color-indicator>.components-button.is-pressed:hover:not(:disabled) {
    background: linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0);
    color: #0000
}

.components-duotone-picker__color-indicator>.components-button:not([aria-disabled=true]):active {
    color: #0000
}

.components-color-list-picker,
.components-color-list-picker__swatch-button {
    width: 100%
}

.components-color-list-picker__color-picker {
    margin: 8px 0
}

.components-color-list-picker__swatch-button {
    padding: 6px
}

.components-color-list-picker__swatch-color {
    margin: 2px
}

.components-external-link {
    text-decoration: none
}

.components-external-link__contents {
    text-decoration: underline
}

.components-external-link__icon {
    font-weight: 400;
    margin-left: .5ch
}

.components-form-toggle {
    display: inline-block;
    position: relative
}

.components-form-toggle .components-form-toggle__track {
    background-color: #fff;
    border: 1px solid #1e1e1e;
    border-radius: 9px;
    box-sizing: border-box;
    content: "";
    display: inline-block;
    height: 18px;
    overflow: hidden;
    position: relative;
    transition: background-color .2s ease, border-color .2s ease;
    vertical-align: top;
    width: 36px
}

@media (prefers-reduced-motion:reduce) {
    .components-form-toggle .components-form-toggle__track {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-form-toggle .components-form-toggle__track:after {
    border-top: 18px solid #0000;
    box-sizing: border-box;
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .2s ease
}

@media (prefers-reduced-motion:reduce) {
    .components-form-toggle .components-form-toggle__track:after {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-form-toggle .components-form-toggle__thumb {
    background-color: #1e1e1e;
    border: 6px solid #0000;
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    height: 12px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: transform .2s ease, background-color .2s ease-out;
    width: 12px
}

@media (prefers-reduced-motion:reduce) {
    .components-form-toggle .components-form-toggle__thumb {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-form-toggle.is-checked .components-form-toggle__track {
    background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-form-toggle.is-checked .components-form-toggle__track:after {
    opacity: 1
}

.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track {
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 2px solid #0000;
    outline-offset: 2px
}

.components-form-toggle.is-checked .components-form-toggle__thumb {
    background-color: #fff;
    border-width: 0;
    transform: translateX(18px)
}

.components-disabled .components-form-toggle,
.components-form-toggle.is-disabled {
    opacity: .3
}

.components-form-toggle input.components-form-toggle__input[type=checkbox] {
    border: none;
    height: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked {
    background: none
}

.components-form-toggle input.components-form-toggle__input[type=checkbox]:before {
    content: ""
}

.components-form-token-field__input-container {
    border: 1px solid #949494;
    border-radius: 2px;
    box-shadow: 0 0 0 #0000;
    cursor: text;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    line-height: normal;
    padding: 0;
    transition: box-shadow .1s linear;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .components-form-token-field__input-container {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

@media (min-width:600px) {
    .components-form-token-field__input-container {
        font-size: 13px;
        line-height: normal
    }
}

.components-form-token-field__input-container:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-form-token-field__input-container::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-form-token-field__input-container::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-form-token-field__input-container:-ms-input-placeholder {
    color: #1e1e1e9e
}

.components-form-token-field__input-container.is-disabled {
    background: #ddd;
    border-color: #ddd
}

.components-form-token-field__input-container.is-active {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-form-token-field__input-container input[type=text].components-form-token-field__input {
    background: inherit;
    border: 0;
    box-shadow: none;
    color: #1e1e1e;
    display: inline-block;
    flex: 1;
    font-family: inherit;
    font-size: 16px;
    margin-left: 4px;
    max-width: 100%;
    min-height: 24px;
    min-width: 50px;
    padding: 0;
    width: 100%
}

@media (min-width:600px) {
    .components-form-token-field__input-container input[type=text].components-form-token-field__input {
        font-size: 13px
    }
}

.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,
.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus {
    box-shadow: none;
    outline: none
}

.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input {
    width: auto
}

.components-form-token-field__token {
    color: #1e1e1e;
    display: flex;
    font-size: 13px;
    max-width: 100%
}

.components-form-token-field__token.is-success .components-form-token-field__remove-token,
.components-form-token-field__token.is-success .components-form-token-field__token-text {
    background: #4ab866
}

.components-form-token-field__token.is-error .components-form-token-field__remove-token,
.components-form-token-field__token.is-error .components-form-token-field__token-text {
    background: #cc1818
}

.components-form-token-field__token.is-validating .components-form-token-field__remove-token,
.components-form-token-field__token.is-validating .components-form-token-field__token-text {
    color: #757575
}

.components-form-token-field__token.is-borderless {
    padding: 0 24px 0 0;
    position: relative
}

.components-form-token-field__token.is-borderless .components-form-token-field__token-text {
    background: #0000;
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
    background: #0000;
    color: #757575;
    padding: 0;
    position: absolute;
    right: 0;
    top: 1px
}

.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
    color: #4ab866
}

.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
    border-radius: 4px 0 0 4px;
    color: #cc1818;
    padding: 0 4px 0 6px
}

.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
    color: #1e1e1e
}

.components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
    cursor: default
}

.components-form-token-field__remove-token.components-button,
.components-form-token-field__token-text {
    background: #ddd;
    display: inline-block;
    height: auto;
    line-height: 24px;
    min-width: unset;
    transition: all .2s cubic-bezier(.4, 1, .4, 1)
}

@media (prefers-reduced-motion:reduce) {

    .components-form-token-field__remove-token.components-button,
    .components-form-token-field__token-text {
        animation-delay: 0s;
        animation-duration: 1ms;
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-form-token-field__token-text {
    border-radius: 2px 0 0 2px;
    overflow: hidden;
    padding: 0 0 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.components-form-token-field__remove-token.components-button {
    border-radius: 0 2px 2px 0;
    color: #1e1e1e;
    cursor: pointer;
    line-height: 10px;
    overflow: initial;
    padding: 0 2px
}

.components-form-token-field__remove-token.components-button:hover {
    color: #1e1e1e
}

.components-form-token-field__suggestions-list {
    box-shadow: inset 0 1px 0 0 #949494;
    flex: 1 0 100%;
    list-style: none;
    margin: 0;
    max-height: 128px;
    min-width: 100%;
    overflow-y: auto;
    padding: 0;
    transition: all .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .components-form-token-field__suggestions-list {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-form-token-field__suggestion {
    box-sizing: border-box;
    color: #1e1e1e;
    cursor: pointer;
    display: block;
    font-size: 13px;
    margin: 0;
    min-height: 32px;
    padding: 8px 12px
}

.components-form-token-field__suggestion.is-selected {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    color: #fff
}

.components-form-token-field__suggestion[aria-disabled=true] {
    color: #949494;
    pointer-events: none
}

.components-form-token-field__suggestion[aria-disabled=true].is-selected {
    background-color: rgba(var(--wp-components-color-accent--rgb, var(--wp-admin-theme-color--rgb)), .04)
}

@media (min-width:600px) {
    .components-guide {
        width: 600px
    }
}

.components-guide .components-modal__content {
    border-radius: 2px;
    margin-top: 0;
    padding: 0
}

.components-guide .components-modal__content:before {
    content: none
}

.components-guide .components-modal__header {
    border-bottom: none;
    height: 60px;
    padding: 0;
    position: sticky
}

.components-guide .components-modal__header .components-button {
    align-self: flex-start;
    margin: 8px 8px 0 0;
    position: static
}

.components-guide .components-modal__header .components-button:hover svg {
    fill: #fff
}

.components-guide__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -60px;
    min-height: 100%
}

.components-guide__page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

@media (min-width:600px) {
    .components-guide__page {
        min-height: 300px
    }
}

.components-guide__footer {
    align-content: center;
    display: flex;
    height: 36px;
    justify-content: center;
    margin: 0 0 24px;
    padding: 0 32px;
    position: relative;
    width: 100%
}

.components-guide__page-control {
    margin: 0;
    text-align: center
}

.components-guide__page-control li {
    display: inline-block;
    margin: 0
}

.components-guide__page-control .components-button {
    color: #e0e0e0;
    height: 30px;
    margin: -6px 0;
    min-width: 20px
}

.components-guide__page-control li[aria-current=step] .components-button {
    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-modal__frame.components-guide {
    border: none;
    max-height: 575px;
    min-width: 312px
}

@media (max-width:600px) {
    .components-modal__frame.components-guide {
        margin: auto;
        max-width: calc(100vw - 32px)
    }
}

.components-button.components-guide__back-button,
.components-button.components-guide__finish-button,
.components-button.components-guide__forward-button {
    position: absolute
}

.components-button.components-guide__back-button {
    left: 32px
}

.components-button.components-guide__finish-button,
.components-button.components-guide__forward-button {
    right: 32px
}

[role=region] {
    position: relative
}

.is-focusing-regions [role=region]:focus:after {
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000000
}

.is-focusing-regions .editor-post-publish-panel,
.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,
.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-publish-panel,
.is-focusing-regions .interface-interface-skeleton__sidebar .editor-layout__toggle-sidebar-panel,
.is-focusing-regions [role=region]:focus:after,
.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header {
    outline: 4px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline-offset: -4px
}

.components-menu-group+.components-menu-group {
    border-top: 1px solid #1e1e1e;
    margin-top: 8px;
    padding-top: 8px
}

.components-menu-group+.components-menu-group.has-hidden-separator {
    border-top: none;
    margin-top: 0;
    padding-top: 0
}

.components-menu-group__label {
    color: #757575;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 4px;
    padding: 0 8px;
    text-transform: uppercase;
    white-space: nowrap
}

.components-menu-item__button,
.components-menu-item__button.components-button {
    width: 100%
}

.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,
.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,
.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,
.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child {
    box-sizing: initial;
    padding-right: 48px
}

.components-menu-item__button .components-menu-items__item-icon,
.components-menu-item__button.components-button .components-menu-items__item-icon {
    display: inline-block;
    flex: 0 0 auto
}

.components-menu-item__button .components-menu-items__item-icon.has-icon-right,
.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right {
    margin-left: 24px;
    margin-right: -2px
}

.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,
.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right {
    margin-left: 8px
}

.components-menu-item__button .block-editor-block-icon,
.components-menu-item__button.components-button .block-editor-block-icon {
    margin-left: -2px;
    margin-right: 8px
}

.components-menu-item__button.components-button.is-primary,
.components-menu-item__button.is-primary {
    justify-content: center
}

.components-menu-item__button.components-button.is-primary .components-menu-item__item,
.components-menu-item__button.is-primary .components-menu-item__item {
    margin-right: 0
}

.components-menu-item__button.components-button:disabled.is-tertiary,
.components-menu-item__button.components-button[aria-disabled=true].is-tertiary,
.components-menu-item__button:disabled.is-tertiary,
.components-menu-item__button[aria-disabled=true].is-tertiary {
    background: none;
    color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
    opacity: .3
}

.components-menu-item__info-wrapper {
    display: flex;
    flex-direction: column;
    margin-right: auto
}

.components-menu-item__info {
    color: #757575;
    font-size: 12px;
    margin-top: 4px;
    white-space: normal
}

.components-menu-item__item {
    align-items: center;
    display: inline-flex;
    margin-right: auto;
    min-width: 160px;
    white-space: nowrap
}

.components-menu-item__shortcut {
    align-self: center;
    color: currentColor;
    display: none;
    margin-left: auto;
    margin-right: 0;
    padding-left: 24px
}

@media (min-width:480px) {
    .components-menu-item__shortcut {
        display: inline
    }
}

.components-menu-items-choice svg,
.components-menu-items-choice.components-button svg {
    margin-right: 12px
}

.components-menu-items-choice.components-button.has-icon,
.components-menu-items-choice.has-icon {
    padding-left: 12px
}

.components-modal__screen-overlay {
    animation: edit-post__fade-in-animation .2s ease-out 0s;
    animation-fill-mode: forwards;
    background-color: #00000059;
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100000
}

@media (prefers-reduced-motion:reduce) {
    .components-modal__screen-overlay {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.components-modal__frame {
    animation: components-modal__appear-animation .1s ease-out;
    animation-fill-mode: forwards;
    background: #fff;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 .7px 1px #00000026, 0 2.7px 3.8px -.2px #00000026, 0 5.5px 7.8px -.3px #00000026, .1px 11.5px 16.4px -.5px #00000026;
    box-sizing: border-box;
    display: flex;
    margin: 40px 0 0;
    overflow: hidden;
    width: 100%
}

.components-modal__frame *,
.components-modal__frame :after,
.components-modal__frame :before {
    box-sizing: inherit
}

@media (prefers-reduced-motion:reduce) {
    .components-modal__frame {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

@media (min-width:600px) {
    .components-modal__frame {
        border-radius: 4px;
        margin: auto;
        max-height: calc(100% - 120px);
        max-width: calc(100% - 32px);
        min-width: 350px;
        width: auto
    }
}

@media (min-width:600px) and (min-width:600px) {
    .components-modal__frame.is-full-screen {
        height: calc(100% - 32px);
        max-height: none;
        width: calc(100% - 32px)
    }
}

@media (min-width:600px) and (min-width:782px) {
    .components-modal__frame.is-full-screen {
        height: calc(100% - 80px);
        max-width: none;
        width: calc(100% - 80px)
    }
}

@media (min-width:600px) {

    .components-modal__frame.has-size-large,
    .components-modal__frame.has-size-medium,
    .components-modal__frame.has-size-small {
        width: 100%
    }

    .components-modal__frame.has-size-small {
        max-width: 384px
    }

    .components-modal__frame.has-size-medium {
        max-width: 512px
    }

    .components-modal__frame.has-size-large {
        max-width: 840px
    }
}

@media (min-width:960px) {
    .components-modal__frame {
        max-height: 70%
    }
}

@keyframes components-modal__appear-animation {
    0% {
        transform: translateY(32px)
    }

    to {
        transform: translateY(0)
    }
}

.components-modal__header {
    align-items: center;
    border-bottom: 1px solid #0000;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    height: 72px;
    justify-content: space-between;
    left: 0;
    padding: 24px 32px 8px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.components-modal__header .components-modal__header-heading {
    font-size: 1.2rem;
    font-weight: 600
}

.components-modal__header h1 {
    line-height: 1;
    margin: 0
}

.components-modal__header .components-button {
    left: 8px;
    position: relative
}

.components-modal__content.has-scrolled-content:not(.hide-header) .components-modal__header {
    border-bottom-color: #ddd
}

.components-modal__header+p {
    margin-top: 0
}

.components-modal__header-heading-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: left
}

.components-modal__header-icon-container {
    display: inline-block
}

.components-modal__header-icon-container svg {
    max-height: 36px;
    max-width: 36px;
    padding: 8px
}

.components-modal__content {
    flex: 1;
    margin-top: 72px;
    overflow: auto;
    padding: 4px 32px 32px
}

.components-modal__content.hide-header {
    margin-top: 0;
    padding-top: 32px
}

.components-modal__content.is-scrollable:focus-visible {
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 2px solid #0000;
    outline-offset: -2px
}

.components-notice {
    align-items: center;
    background-color: #fff;
    border-left: 4px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    padding: 8px 12px
}

.components-notice.is-dismissible {
    position: relative
}

.components-notice.is-success {
    background-color: #eff9f1;
    border-left-color: #4ab866
}

.components-notice.is-warning {
    background-color: #fef8ee;
    border-left-color: #f0b849
}

.components-notice.is-error {
    background-color: #f4a2a2;
    border-left-color: #cc1818
}

.components-notice__content {
    flex-grow: 1;
    margin: 4px 25px 4px 0
}

.components-notice__actions {
    display: flex;
    flex-wrap: wrap
}

.components-notice__action.components-button {
    margin-right: 8px
}

.components-notice__action.components-button,
.components-notice__action.components-button.is-link {
    margin-left: 12px
}

.components-notice__action.components-button.is-secondary {
    vertical-align: initial
}

.components-notice__dismiss {
    align-self: flex-start;
    color: #757575;
    flex-shrink: 0
}

.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,
.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,
.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
    background-color: initial;
    color: #1e1e1e
}

.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
    box-shadow: none
}

.components-notice-list {
    box-sizing: border-box;
    max-width: 100vw
}

.components-notice-list .components-notice__content {
    line-height: 2;
    margin-bottom: 12px;
    margin-top: 12px
}

.components-notice-list .components-notice__action.components-button {
    display: block;
    margin-left: 0;
    margin-top: 8px
}

.components-panel {
    background: #fff;
    border: 1px solid #e0e0e0
}

.components-panel>.components-panel__body:first-child,
.components-panel>.components-panel__header:first-child {
    margin-top: -1px
}

.components-panel>.components-panel__body:last-child,
.components-panel>.components-panel__header:last-child {
    border-bottom-width: 0
}

.components-panel+.components-panel {
    margin-top: -1px
}

.components-panel__body {
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0
}

.components-panel__body h3 {
    margin: 0 0 .5em
}

.components-panel__body.is-opened {
    padding: 16px
}

.components-panel__header {
    align-items: center;
    border-bottom: 1px solid #ddd;
    box-sizing: initial;
    display: flex;
    flex-shrink: 0;
    height: 47px;
    justify-content: space-between;
    padding: 0 16px
}

.components-panel__header h2 {
    color: inherit;
    font-size: inherit;
    margin: 0
}

.components-panel__body+.components-panel__body,
.components-panel__body+.components-panel__header,
.components-panel__header+.components-panel__body,
.components-panel__header+.components-panel__header {
    margin-top: -1px
}

.components-panel__body>.components-panel__body-title {
    display: block;
    font-size: inherit;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    transition: background .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .components-panel__body>.components-panel__body-title {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-panel__body.is-opened>.components-panel__body-title {
    margin: -16px -16px 5px
}

.components-panel__body>.components-panel__body-title:hover {
    background: #f0f0f0;
    border: none
}

.components-panel__body-toggle.components-button {
    border: none;
    box-shadow: none;
    color: #1e1e1e;
    font-weight: 500;
    height: auto;
    outline: none;
    padding: 16px 48px 16px 16px;
    position: relative;
    text-align: left;
    transition: background .1s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .components-panel__body-toggle.components-button {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-panel__body-toggle.components-button:focus {
    border-radius: 0;
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-panel__body-toggle.components-button .components-panel__arrow {
    fill: currentColor;
    color: #1e1e1e;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: color .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .components-panel__body-toggle.components-button .components-panel__arrow {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
    -ms-filter: fliph;
    filter: FlipH;
    margin-top: -10px;
    transform: scaleX(-1)
}

.components-panel__icon {
    color: #757575;
    margin: -2px 0 -2px 6px
}

.components-panel__body-toggle-icon {
    margin-right: -5px
}

.components-panel__color-title {
    float: left;
    height: 19px
}

.components-panel__row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    min-height: 36px
}

.components-panel__row select {
    min-width: 0
}

.components-panel__row label {
    flex-shrink: 0;
    margin-right: 12px;
    max-width: 75%
}

.components-panel__row:empty,
.components-panel__row:first-of-type {
    margin-top: 0
}

.components-panel .circle-picker {
    padding-bottom: 20px
}

.components-placeholder.components-placeholder {
    -moz-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px #1e1e1e;
    box-sizing: border-box;
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 16px;
    margin: 0;
    outline: 1px solid #0000;
    padding: 24px;
    position: relative;
    text-align: left;
    width: 100%
}

.components-placeholder__error,
.components-placeholder__fieldset,
.components-placeholder__instructions,
.components-placeholder__label {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    text-transform: none
}

.components-placeholder__label {
    align-items: center;
    display: flex;
    font-weight: 600
}

.components-placeholder__label .block-editor-block-icon,
.components-placeholder__label .dashicon,
.components-placeholder__label>svg {
    fill: currentColor;
    margin-right: 4px
}

@media (forced-colors:active) {

    .components-placeholder__label .block-editor-block-icon,
    .components-placeholder__label .dashicon,
    .components-placeholder__label>svg {
        fill: CanvasText
    }
}

.components-placeholder__label:empty {
    display: none
}

.components-placeholder__fieldset,
.components-placeholder__fieldset form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    width: 100%
}

.components-placeholder__fieldset form p,
.components-placeholder__fieldset p {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px
}

.components-placeholder__fieldset.is-column-layout,
.components-placeholder__fieldset.is-column-layout form {
    flex-direction: column
}

.components-placeholder__input[type=url] {
    border: 1px solid #949494;
    border-radius: 2px;
    box-shadow: 0 0 0 #0000;
    flex: 1 1 auto;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    line-height: normal;
    padding: 6px 8px;
    transition: box-shadow .1s linear
}

@media (prefers-reduced-motion:reduce) {
    .components-placeholder__input[type=url] {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

@media (min-width:600px) {
    .components-placeholder__input[type=url] {
        font-size: 13px;
        line-height: normal
    }
}

.components-placeholder__input[type=url]:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-placeholder__input[type=url]::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-placeholder__input[type=url]::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-placeholder__input[type=url]:-ms-input-placeholder {
    color: #1e1e1e9e
}

.components-placeholder__error {
    gap: 8px;
    width: 100%
}

.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link {
    margin-left: 10px;
    margin-right: 10px
}

.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child {
    margin-right: 0
}

.components-placeholder.is-medium .components-placeholder__instructions,
.components-placeholder.is-small .components-placeholder__instructions {
    display: none
}

.components-placeholder.is-medium .components-placeholder__fieldset,
.components-placeholder.is-medium .components-placeholder__fieldset form,
.components-placeholder.is-small .components-placeholder__fieldset,
.components-placeholder.is-small .components-placeholder__fieldset form {
    flex-direction: column
}

.components-placeholder.is-medium .components-button,
.components-placeholder.is-medium .components-placeholder__fieldset>*,
.components-placeholder.is-small .components-button,
.components-placeholder.is-small .components-placeholder__fieldset>* {
    justify-content: center;
    width: 100%
}

.components-placeholder.is-small {
    padding: 16px
}

.components-placeholder.has-illustration {
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    backface-visibility: hidden;
    background-color: initial;
    border-radius: 2px;
    box-shadow: none;
    color: inherit;
    display: flex;
    overflow: hidden
}

.is-dark-theme .components-placeholder.has-illustration {
    background-color: #0000001a
}

.components-placeholder.has-illustration .components-placeholder__fieldset {
    margin-left: 0;
    margin-right: 0
}

.components-placeholder.has-illustration .components-button,
.components-placeholder.has-illustration .components-placeholder__instructions,
.components-placeholder.has-illustration .components-placeholder__label {
    opacity: 0;
    pointer-events: none;
    transition: opacity .1s linear
}

@media (prefers-reduced-motion:reduce) {

    .components-placeholder.has-illustration .components-button,
    .components-placeholder.has-illustration .components-placeholder__instructions,
    .components-placeholder.has-illustration .components-placeholder__label {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.is-selected>.components-placeholder.has-illustration .components-button,
.is-selected>.components-placeholder.has-illustration .components-placeholder__instructions,
.is-selected>.components-placeholder.has-illustration .components-placeholder__label {
    opacity: 1;
    pointer-events: auto
}

.components-placeholder.has-illustration:before {
    background: currentColor;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .1;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.is-selected .components-placeholder.has-illustration {
    overflow: auto
}

.components-placeholder__preview {
    display: flex;
    justify-content: center
}

.components-placeholder__illustration {
    stroke: currentColor;
    box-sizing: initial;
    height: 100%;
    left: 50%;
    opacity: .25;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%
}

.components-popover {
    box-sizing: border-box;
    will-change: transform;
    z-index: 1000000
}

.components-popover *,
.components-popover :after,
.components-popover :before {
    box-sizing: inherit
}

.components-popover.is-expanded {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000000 !important
}

.components-popover__content {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 0 1px #ccc, 0 .7px 1px #0000001a, 0 1.2px 1.7px -.2px #0000001a, 0 2.3px 3.3px -.5px #0000001a;
    box-sizing: border-box;
    width: min-content
}

.is-alternate .components-popover__content {
    box-shadow: 0 0 0 1px #1e1e1e
}

.is-unstyled .components-popover__content {
    background: none;
    border-radius: 0;
    box-shadow: none
}

.components-popover.is-expanded .components-popover__content {
    box-shadow: 0 -1px 0 0 #ccc;
    height: calc(100% - 48px);
    overflow-y: visible;
    position: static;
    width: auto
}

.components-popover.is-expanded.is-alternate .components-popover__content {
    box-shadow: 0 -1px 0 #1e1e1e
}

.components-popover__header {
    align-items: center;
    background: #fff;
    display: flex;
    height: 48px;
    justify-content: space-between;
    padding: 0 8px 0 16px
}

.components-popover__header-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.components-popover__close.components-button {
    z-index: 5
}

.components-popover__arrow {
    display: flex;
    height: 14px;
    pointer-events: none;
    position: absolute;
    width: 14px
}

.components-popover__arrow:before {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: -1px
}

.components-popover__arrow.is-top {
    bottom: -14px !important;
    transform: rotate(0)
}

.components-popover__arrow.is-right {
    left: -14px !important;
    transform: rotate(90deg)
}

.components-popover__arrow.is-bottom {
    top: -14px !important;
    transform: rotate(180deg)
}

.components-popover__arrow.is-left {
    right: -14px !important;
    transform: rotate(-90deg)
}

.components-popover__triangle {
    display: block;
    flex: 1
}

.components-popover__triangle-bg {
    fill: #fff
}

.components-popover__triangle-border {
    fill: #0000;
    stroke-width: 1px;
    stroke: #ccc
}

.is-alternate .components-popover__triangle-border {
    stroke: #1e1e1e
}

.components-radio-control__option {
    align-items: center;
    display: flex
}

.components-radio-control__input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #1e1e1e;
    border-radius: 2px;
    border-radius: 50%;
    box-shadow: 0 0 0 #0000;
    cursor: pointer;
    display: inline-flex;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    height: 24px;
    line-height: normal;
    margin: 0 8px 0 0;
    max-width: 24px;
    min-width: 24px;
    padding: 0;
    transition: box-shadow .1s linear;
    transition: none;
    width: 24px
}

@media (prefers-reduced-motion:reduce) {
    .components-radio-control__input[type=radio] {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

@media (min-width:600px) {
    .components-radio-control__input[type=radio] {
        font-size: 13px;
        line-height: normal
    }
}

.components-radio-control__input[type=radio]:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.components-radio-control__input[type=radio]::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-radio-control__input[type=radio]::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-radio-control__input[type=radio]:-ms-input-placeholder {
    color: #1e1e1e9e
}

@media (min-width:600px) {
    .components-radio-control__input[type=radio] {
        height: 20px;
        max-width: 20px;
        min-width: 20px;
        width: 20px
    }
}

.components-radio-control__input[type=radio]:checked:before {
    background-color: #fff;
    border: 4px solid #fff;
    box-sizing: inherit;
    height: 8px;
    margin: 0;
    transform: translate(7px, 7px);
    width: 8px
}

@media (min-width:600px) {
    .components-radio-control__input[type=radio]:checked:before {
        transform: translate(5px, 5px)
    }
}

.components-radio-control__input[type=radio]:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-radio-control__input[type=radio]:checked {
    background: var(--wp-admin-theme-color);
    border-color: var(--wp-admin-theme-color)
}

.components-radio-control__input[type=radio]:focus {
    box-shadow: 0 0 0 2px var(--wp-components-color-background, #fff), 0 0 0 4px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-radio-control__input[type=radio]:checked {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-radio-control__input[type=radio]:checked:before {
    border-radius: 50%;
    content: ""
}

.components-radio-control__label {
    cursor: pointer
}

.components-resizable-box__handle {
    display: none;
    height: 23px;
    width: 23px;
    z-index: 2
}

.components-resizable-box__container.has-show-handle .components-resizable-box__handle {
    display: block
}

.components-resizable-box__container>img {
    width: inherit
}

.components-resizable-box__handle:after {
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    content: "";
    cursor: inherit;
    display: block;
    height: 15px;
    outline: 2px solid #0000;
    position: absolute;
    right: calc(50% - 8px);
    top: calc(50% - 8px);
    width: 15px
}

.components-resizable-box__side-handle:before {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-radius: 2px;
    content: "";
    cursor: inherit;
    display: block;
    height: 3px;
    opacity: 0;
    position: absolute;
    right: calc(50% - 1px);
    top: calc(50% - 1px);
    transition: transform .1s ease-in;
    width: 3px;
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {
    .components-resizable-box__side-handle:before {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-resizable-box__corner-handle,
.components-resizable-box__side-handle {
    z-index: 2
}

.components-resizable-box__side-handle.components-resizable-box__handle-bottom,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,
.components-resizable-box__side-handle.components-resizable-box__handle-top,
.components-resizable-box__side-handle.components-resizable-box__handle-top:before {
    border-left: 0;
    border-right: 0;
    left: 0;
    width: 100%
}

.components-resizable-box__side-handle.components-resizable-box__handle-left,
.components-resizable-box__side-handle.components-resizable-box__handle-left:before,
.components-resizable-box__side-handle.components-resizable-box__handle-right,
.components-resizable-box__side-handle.components-resizable-box__handle-right:before {
    border-bottom: 0;
    border-top: 0;
    height: 100%;
    top: 0
}

.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,
.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,
.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before {
    animation: components-resizable-box__top-bottom-animation .1s ease-out 0s;
    animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {

    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,
.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,
.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,
.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before {
    animation: components-resizable-box__left-right-animation .1s ease-out 0s;
    animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {

    .components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) {

        .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,
        .components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before {
            animation: none
        }
    }
}

@keyframes components-resizable-box__top-bottom-animation {
    0% {
        opacity: 0;
        transform: scaleX(0)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

@keyframes components-resizable-box__left-right-animation {
    0% {
        opacity: 0;
        transform: scaleY(0)
    }

    to {
        opacity: 1;
        transform: scaleY(1)
    }
}

.components-resizable-box__handle-right {
    right: -11.5px
}

.components-resizable-box__handle-left {
    left: -11.5px
}

.components-resizable-box__handle-top {
    top: -11.5px
}

.components-resizable-box__handle-bottom {
    bottom: -11.5px
}

.components-responsive-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
    position: relative
}

.components-responsive-wrapper__content {
    display: block;
    max-width: 100%;
    width: 100%
}

.components-sandbox {
    overflow: hidden
}

iframe.components-sandbox {
    width: 100%
}

body.lockscroll,
html.lockscroll {
    overflow: hidden
}

.components-select-control__input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    outline: 0
}

@media (max-width:782px) {
    .components-base-control .components-base-control__field .components-select-control__input {
        font-size: 16px
    }
}

.components-snackbar {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    background: #000000d9;
    border-radius: 2px;
    box-shadow: 0 .7px 1px #0000001a, 0 1.2px 1.7px -.2px #0000001a, 0 2.3px 3.3px -.5px #0000001a;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    max-width: 600px;
    padding: 12px 20px;
    pointer-events: auto;
    width: 100%
}

@media (min-width:600px) {
    .components-snackbar {
        width: -moz-fit-content;
        width: fit-content
    }
}

.components-snackbar:focus {
    box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-snackbar.components-snackbar-explicit-dismiss {
    cursor: default
}

.components-snackbar .components-snackbar__content-with-icon {
    padding-left: 24px;
    position: relative
}

.components-snackbar .components-snackbar__icon {
    left: -8px;
    position: absolute;
    top: -2.9px
}

.components-snackbar .components-snackbar__dismiss-button {
    cursor: pointer;
    margin-left: 24px
}

.components-snackbar__action.components-button {
    color: #fff;
    flex-shrink: 0;
    height: auto;
    line-height: 1.4;
    margin-left: 32px;
    padding: 0
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) {
    background-color: initial;
    text-decoration: underline
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus {
    box-shadow: none;
    color: #fff;
    outline: 1px dotted #fff
}

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
    color: #fff;
    text-decoration: none
}

.components-snackbar__content {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    line-height: 1.4
}

.components-snackbar-list {
    box-sizing: border-box;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 100000
}

.components-snackbar-list__notice-container {
    padding-top: 8px;
    position: relative
}

.components-tab-panel__tabs {
    align-items: stretch;
    display: flex;
    flex-direction: row
}

.components-tab-panel__tabs[aria-orientation=vertical] {
    flex-direction: column
}

.components-tab-panel__tabs-item {
    background: #0000;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    font-weight: 500;
    height: 48px;
    margin-left: 0;
    padding: 3px 16px;
    position: relative
}

.components-tab-panel__tabs-item:focus:not(:disabled) {
    box-shadow: none;
    outline: none;
    position: relative
}

.components-tab-panel__tabs-item:after {
    background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    border-radius: 0;
    bottom: 0;
    content: "";
    height: calc(var(--wp-admin-border-width-focus)*0);
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transition: all .1s linear
}

@media (prefers-reduced-motion:reduce) {
    .components-tab-panel__tabs-item:after {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-tab-panel__tabs-item.is-active:after {
    height: calc(var(--wp-admin-border-width-focus)*1);
    outline: 2px solid #0000;
    outline-offset: -1px
}

.components-tab-panel__tabs-item:before {
    border-radius: 2px;
    bottom: 12px;
    box-shadow: 0 0 0 0 #0000;
    content: "";
    left: 12px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: all .1s linear
}

@media (prefers-reduced-motion:reduce) {
    .components-tab-panel__tabs-item:before {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

.components-tab-panel__tabs-item:focus-visible:before {
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 2px solid #0000
}

.components-tab-panel__tab-content:focus {
    box-shadow: none;
    outline: none
}

.components-tab-panel__tab-content:focus-visible {
    border-radius: 2px;
    box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
    outline: 2px solid #0000;
    outline-offset: 0
}

.components-text-control__input,
.components-text-control__input[type=color],
.components-text-control__input[type=date],
.components-text-control__input[type=datetime-local],
.components-text-control__input[type=datetime],
.components-text-control__input[type=email],
.components-text-control__input[type=month],
.components-text-control__input[type=number],
.components-text-control__input[type=password],
.components-text-control__input[type=tel],
.components-text-control__input[type=text],
.components-text-control__input[type=time],
.components-text-control__input[type=url],
.components-text-control__input[type=week] {
    border: 1px solid #949494;
    border-radius: 2px;
    box-shadow: 0 0 0 #0000;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 16px;
    height: 32px;
    line-height: normal;
    margin: 0;
    padding: 6px 8px;
    transition: box-shadow .1s linear;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {

    .components-text-control__input,
    .components-text-control__input[type=color],
    .components-text-control__input[type=date],
    .components-text-control__input[type=datetime-local],
    .components-text-control__input[type=datetime],
    .components-text-control__input[type=email],
    .components-text-control__input[type=month],
    .components-text-control__input[type=number],
    .components-text-control__input[type=password],
    .components-text-control__input[type=tel],
    .components-text-control__input[type=text],
    .components-text-control__input[type=time],
    .components-text-control__input[type=url],
    .components-text-control__input[type=week] {
        transition-delay: 0s;
        transition-duration: 0s
    }
}

@media (min-width:600px) {

    .components-text-control__input,
    .components-text-control__input[type=color],
    .components-text-control__input[type=date],
    .components-text-control__input[type=datetime-local],
    .components-text-control__input[type=datetime],
    .components-text-control__input[type=email],
    .components-text-control__input[type=month],
    .components-text-control__input[type=number],
    .components-text-control__input[type=password],
    .components-text-control__input[type=tel],
    .components-text-control__input[type=text],
    .components-text-control__input[type=time],
    .components-text-control__input[type=url],
    .components-text-control__input[type=week] {
        font-size: 13px;
        line-height: normal
    }
}

.components-text-control__input:focus,
.components-text-control__input[type=color]:focus,
.components-text-control__input[type=date]:focus,
.components-text-control__input[type=datetime-local]:focus,
.components-text-control__input[type=datetime]:focus,
.components-text-control__input[type=email]:focus,
.components-text-control__input[type=month]:focus,
.components-text-control__input[type=number]:focus,
.components-text-control__input[type=password]:focus,
.components-text-control__input[type=tel]:focus,
.components-text-control__input[type=text]:focus,
.components-text-control__input[type=time]:focus,
.components-text-control__input[type=url]:focus,
.components-text-control__input[type=week]:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-text-control__input::-webkit-input-placeholder,
.components-text-control__input[type=color]::-webkit-input-placeholder,
.components-text-control__input[type=date]::-webkit-input-placeholder,
.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,
.components-text-control__input[type=datetime]::-webkit-input-placeholder,
.components-text-control__input[type=email]::-webkit-input-placeholder,
.components-text-control__input[type=month]::-webkit-input-placeholder,
.components-text-control__input[type=number]::-webkit-input-placeholder,
.components-text-control__input[type=password]::-webkit-input-placeholder,
.components-text-control__input[type=tel]::-webkit-input-placeholder,
.components-text-control__input[type=text]::-webkit-input-placeholder,
.components-text-control__input[type=time]::-webkit-input-placeholder,
.components-text-control__input[type=url]::-webkit-input-placeholder,
.components-text-control__input[type=week]::-webkit-input-placeholder {
    color: #1e1e1e9e
}

.components-text-control__input::-moz-placeholder,
.components-text-control__input[type=color]::-moz-placeholder,
.components-text-control__input[type=date]::-moz-placeholder,
.components-text-control__input[type=datetime-local]::-moz-placeholder,
.components-text-control__input[type=datetime]::-moz-placeholder,
.components-text-control__input[type=email]::-moz-placeholder,
.components-text-control__input[type=month]::-moz-placeholder,
.components-text-control__input[type=number]::-moz-placeholder,
.components-text-control__input[type=password]::-moz-placeholder,
.components-text-control__input[type=tel]::-moz-placeholder,
.components-text-control__input[type=text]::-moz-placeholder,
.components-text-control__input[type=time]::-moz-placeholder,
.components-text-control__input[type=url]::-moz-placeholder,
.components-text-control__input[type=week]::-moz-placeholder {
    color: #1e1e1e9e;
    opacity: 1
}

.components-text-control__input:-ms-input-placeholder,
.components-text-control__input[type=color]:-ms-input-placeholder,
.components-text-control__input[type=date]:-ms-input-placeholder,
.components-text-control__input[type=datetime-local]:-ms-input-placeholder,
.components-text-control__input[type=datetime]:-ms-input-placeholder,
.components-text-control__input[type=email]:-ms-input-placeholder,
.components-text-control__input[type=month]:-ms-input-placeholder,
.components-text-control__input[type=number]:-ms-input-placeholder,
.components-text-control__input[type=password]:-ms-input-placeholder,
.components-text-control__input[type=tel]:-ms-input-placeholder,
.components-text-control__input[type=text]:-ms-input-placeholder,
.components-text-control__input[type=time]:-ms-input-placeholder,
.components-text-control__input[type=url]:-ms-input-placeholder,
.components-text-control__input[type=week]:-ms-input-placeholder {
    color: #1e1e1e9e
}

.components-text-control__input.is-next-40px-default-size,
.components-text-control__input[type=color].is-next-40px-default-size,
.components-text-control__input[type=date].is-next-40px-default-size,
.components-text-control__input[type=datetime-local].is-next-40px-default-size,
.components-text-control__input[type=datetime].is-next-40px-default-size,
.components-text-control__input[type=email].is-next-40px-default-size,
.components-text-control__input[type=month].is-next-40px-default-size,
.components-text-control__input[type=number].is-next-40px-default-size,
.components-text-control__input[type=password].is-next-40px-default-size,
.components-text-control__input[type=tel].is-next-40px-default-size,
.components-text-control__input[type=text].is-next-40px-default-size,
.components-text-control__input[type=time].is-next-40px-default-size,
.components-text-control__input[type=url].is-next-40px-default-size,
.components-text-control__input[type=week].is-next-40px-default-size {
    height: 40px
}

.components-tip {
    color: #757575;
    display: flex
}

.components-tip svg {
    fill: #f0b849;
    align-self: center;
    flex-shrink: 0;
    margin-right: 16px
}

.components-tip p {
    margin: 0
}

.components-accessible-toolbar {
    border: 1px solid #1e1e1e;
    border-radius: 2px;
    display: inline-flex;
    flex-shrink: 0
}

.components-accessible-toolbar>.components-toolbar-group:last-child {
    border-right: none
}

.components-accessible-toolbar.is-unstyled {
    border: none
}

.components-accessible-toolbar.is-unstyled>.components-toolbar-group {
    border-right: none
}

.components-accessible-toolbar .components-button,
.components-toolbar .components-button {
    height: 48px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    z-index: 1
}

.components-accessible-toolbar .components-button:focus:not(:disabled),
.components-toolbar .components-button:focus:not(:disabled) {
    box-shadow: none;
    outline: none
}

.components-accessible-toolbar .components-button:before,
.components-toolbar .components-button:before {
    animation: components-button__appear-animation .1s ease;
    animation-fill-mode: forwards;
    border-radius: 2px;
    content: "";
    display: block;
    height: 32px;
    left: 8px;
    position: absolute;
    right: 8px;
    z-index: -1
}

@media (prefers-reduced-motion:reduce) {

    .components-accessible-toolbar .components-button:before,
    .components-toolbar .components-button:before {
        animation-delay: 0s;
        animation-duration: 1ms
    }
}

.components-accessible-toolbar .components-button svg,
.components-toolbar .components-button svg {
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.components-accessible-toolbar .components-button.is-pressed,
.components-accessible-toolbar .components-button.is-pressed:hover,
.components-toolbar .components-button.is-pressed,
.components-toolbar .components-button.is-pressed:hover {
    background: #0000
}

.components-accessible-toolbar .components-button.is-pressed:before,
.components-toolbar .components-button.is-pressed:before {
    background: #1e1e1e
}

.components-accessible-toolbar .components-button:focus:before,
.components-toolbar .components-button:focus:before {
    box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
    outline: 2px solid #0000
}

.components-accessible-toolbar .components-button.has-icon.has-icon,
.components-toolbar .components-button.has-icon.has-icon {
    min-width: 48px;
    padding-left: 8px;
    padding-right: 8px
}

@keyframes components-button__appear-animation {
    0% {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}

.components-toolbar__control.components-button {
    position: relative
}

.components-toolbar__control.components-button[data-subscript] svg {
    padding: 5px 10px 5px 0
}

.components-toolbar__control.components-button[data-subscript]:after {
    bottom: 10px;
    content: attr(data-subscript);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 12px;
    position: absolute;
    right: 8px
}

.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after {
    color: #fff
}

.components-toolbar-group {
    background-color: #fff;
    border-right: 1px solid #1e1e1e;
    display: inline-flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    line-height: 0;
    min-height: 48px;
    padding-left: 6px;
    padding-right: 6px
}

.components-toolbar-group .components-toolbar-group.components-toolbar-group {
    border-width: 0;
    margin: 0
}

.components-toolbar-group .components-button.components-button,
.components-toolbar-group .components-button.has-icon.has-icon {
    justify-content: center;
    min-width: 36px;
    padding-left: 6px;
    padding-right: 6px
}

.components-toolbar-group .components-button.components-button svg,
.components-toolbar-group .components-button.has-icon.has-icon svg {
    min-width: 24px
}

.components-toolbar-group .components-button.components-button:before,
.components-toolbar-group .components-button.has-icon.has-icon:before {
    left: 2px;
    right: 2px
}

.components-toolbar {
    background-color: #fff;
    border: 1px solid #1e1e1e;
    display: inline-flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    margin: 0;
    min-height: 48px
}

.components-toolbar .components-toolbar.components-toolbar {
    border-width: 0;
    margin: 0
}

div.components-toolbar>div {
    display: flex;
    margin: 0
}

div.components-toolbar>div+div.has-left-divider {
    margin-left: 6px;
    overflow: visible;
    position: relative
}

div.components-toolbar>div+div.has-left-divider:before {
    background-color: #ddd;
    box-sizing: initial;
    content: "";
    display: inline-block;
    height: 20px;
    left: -3px;
    position: absolute;
    top: 8px;
    width: 1px
}

.components-tooltip {
    background: #000;
    border-radius: 2px;
    color: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    padding: 4px 8px;
    text-align: center;
    z-index: 1000002
}

.components-tooltip__shortcut {
    margin-left: 8px
}

#wpadminbar>.godaddy-styles *,
.godaddy-styles * {
    font-family: GD Sherpa, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 1.4
}

#wpadminbar>.godaddy-styles .is-bigger,
.godaddy-styles .is-bigger {
    font-size: 1.1em !important;
    font-weight: 500 !important
}

#wpadminbar>.godaddy-styles .components-button,
#wpadminbar>.godaddy-styles.components-button,
.godaddy-styles .components-button,
.godaddy-styles.components-button {
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    font-size: 1em;
    height: auto;
    line-height: 1;
    padding: 1.25em;
    transition: background-color, color, .2s ease-in-out
}

#wpadminbar>.godaddy-styles .components-button:disabled,
#wpadminbar>.godaddy-styles.components-button:disabled,
.godaddy-styles .components-button:disabled,
.godaddy-styles.components-button:disabled {
    opacity: .5
}

#wpadminbar>.godaddy-styles .components-button>svg,
#wpadminbar>.godaddy-styles.components-button>svg,
.godaddy-styles .components-button>svg,
.godaddy-styles.components-button>svg {
    height: 24px;
    margin-left: .2em;
    position: relative;
    right: -5px;
    top: -1px;
    transform: scale(.75);
    width: 24px
}

#wpadminbar>.godaddy-styles .components-button.no-padding,
#wpadminbar>.godaddy-styles.components-button.no-padding,
.godaddy-styles .components-button.no-padding,
.godaddy-styles.components-button.no-padding {
    padding: 0
}

#wpadminbar>.godaddy-styles .components-button.is-big,
#wpadminbar>.godaddy-styles.components-button.is-big,
.godaddy-styles .components-button.is-big,
.godaddy-styles.components-button.is-big {
    font-size: 1.1em;
    font-weight: 600;
    padding: 1.5em
}

#wpadminbar>.godaddy-styles .components-button.is-primary,
#wpadminbar>.godaddy-styles.components-button.is-primary,
.godaddy-styles .components-button.is-primary,
.godaddy-styles.components-button.is-primary {
    background-color: #000;
    box-shadow: none;
    color: #fff
}

#wpadminbar>.godaddy-styles .components-button.is-primary:active:not([disabled]),
#wpadminbar>.godaddy-styles .components-button.is-primary:hover:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-primary:active:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-primary:hover:not([disabled]),
.godaddy-styles .components-button.is-primary:active:not([disabled]),
.godaddy-styles .components-button.is-primary:hover:not([disabled]),
.godaddy-styles.components-button.is-primary:active:not([disabled]),
.godaddy-styles.components-button.is-primary:hover:not([disabled]) {
    background-color: #00a4a6
}

#wpadminbar>.godaddy-styles .components-button.is-secondary,
#wpadminbar>.godaddy-styles.components-button.is-secondary,
.godaddy-styles .components-button.is-secondary,
.godaddy-styles.components-button.is-secondary {
    box-shadow: none;
    color: #111
}

#wpadminbar>.godaddy-styles .components-button.is-secondary:active:not([disabled]),
#wpadminbar>.godaddy-styles .components-button.is-secondary:hover:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-secondary:active:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-secondary:hover:not([disabled]),
.godaddy-styles .components-button.is-secondary:active:not([disabled]),
.godaddy-styles .components-button.is-secondary:hover:not([disabled]),
.godaddy-styles.components-button.is-secondary:active:not([disabled]),
.godaddy-styles.components-button.is-secondary:hover:not([disabled]) {
    border: 0;
    box-shadow: none;
    color: #000
}

#wpadminbar>.godaddy-styles .components-button.is-tertiary,
#wpadminbar>.godaddy-styles.components-button.is-tertiary,
.godaddy-styles .components-button.is-tertiary,
.godaddy-styles.components-button.is-tertiary {
    border: 1px solid #111;
    color: #111
}

#wpadminbar>.godaddy-styles .components-button.is-tertiary:hover,
#wpadminbar>.godaddy-styles.components-button.is-tertiary:hover,
.godaddy-styles .components-button.is-tertiary:hover,
.godaddy-styles.components-button.is-tertiary:hover {
    background-color: #111;
    box-shadow: none;
    color: #fff
}

#wpadminbar>.godaddy-styles .components-button.is-link,
#wpadminbar>.godaddy-styles.components-button.is-link,
.godaddy-styles .components-button.is-link,
.godaddy-styles.components-button.is-link {
    box-shadow: none;
    color: #00a4a6;
    padding: 0;
    text-decoration: none
}

#wpadminbar>.godaddy-styles .components-button.is-link:active:not([disabled]),
#wpadminbar>.godaddy-styles .components-button.is-link:hover:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-link:active:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.is-link:hover:not([disabled]),
.godaddy-styles .components-button.is-link:active:not([disabled]),
.godaddy-styles .components-button.is-link:hover:not([disabled]),
.godaddy-styles.components-button.is-link:active:not([disabled]),
.godaddy-styles.components-button.is-link:hover:not([disabled]) {
    color: #111;
    outline: none
}

#wpadminbar>.godaddy-styles .components-button.has-icon:active:not([disabled]),
#wpadminbar>.godaddy-styles .components-button.has-icon:hover:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.has-icon:active:not([disabled]),
#wpadminbar>.godaddy-styles.components-button.has-icon:hover:not([disabled]),
.godaddy-styles .components-button.has-icon:active:not([disabled]),
.godaddy-styles .components-button.has-icon:hover:not([disabled]),
.godaddy-styles.components-button.has-icon:active:not([disabled]),
.godaddy-styles.components-button.has-icon:hover:not([disabled]) {
    background-color: transparent;
    color: #00a4a6
}

#wpadminbar>.godaddy-styles .components-modal__frame,
#wpadminbar>.godaddy-styles.components-modal__frame,
.godaddy-styles .components-modal__frame,
.godaddy-styles.components-modal__frame {
    border-radius: 1rem
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content,
.godaddy-styles .components-modal__frame .components-modal__content,
.godaddy-styles.components-modal__frame .components-modal__content {
    margin-top: 0;
    padding: 4.5rem 4.5rem 4.25rem
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content:before,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content:before,
.godaddy-styles .components-modal__frame .components-modal__content:before,
.godaddy-styles.components-modal__frame .components-modal__content:before {
    margin: 0
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content p:last-child,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content p:last-child,
.godaddy-styles .components-modal__frame .components-modal__content p:last-child,
.godaddy-styles.components-modal__frame .components-modal__content p:last-child {
    margin-bottom: 0
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header,
.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,
.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header {
    border-bottom: 0;
    font-size: 2rem;
    height: unset;
    margin-bottom: .75em;
    padding: 0;
    position: relative
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,
.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,
.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container {
    margin-right: 8px
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,
.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,
.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading {
    font-size: 2rem
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,
.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,
.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon {
    font-size: 1rem;
    left: auto;
    padding: .25em;
    position: absolute;
    right: -3.5rem;
    top: -3.25rem
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,
.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,
.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg {
    margin-left: 0;
    right: 0;
    top: 0;
    transform: scale(1)
}

#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,
#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input,
.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,
.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input {
    margin-bottom: .5em
}

#wpadminbar>.godaddy-styles .ux-tag,
.godaddy-styles .ux-tag {
    border-radius: 4px;
    color: #000;
    font-size: .9em;
    font-weight: 700;
    letter-spacing: .05625rem;
    line-height: 1.5;
    padding-block: 8px;
    padding-inline: 8px;
    text-transform: uppercase;
    white-space: nowrap
}

#wpadminbar>.godaddy-styles .ux-tag-critical,
.godaddy-styles .ux-tag-critical {
    background-color: #fbb
}

#wpadminbar>.godaddy-styles .ux-tag-highlight,
.godaddy-styles .ux-tag-highlight {
    background-color: #a6fff8
}

#wpadminbar>.godaddy-styles .ux-tag-info,
.godaddy-styles .ux-tag-info {
    background-color: #d3c1f7
}

#wpadminbar>.godaddy-styles .ux-tag-internal,
.godaddy-styles .ux-tag-internal {
    background-color: #fbd9ed
}

#wpadminbar>.godaddy-styles .ux-tag-neutral,
.godaddy-styles .ux-tag-neutral {
    background-color: #ddeaf8
}

#wpadminbar>.godaddy-styles .ux-tag-passive,
.godaddy-styles .ux-tag-passive {
    background-color: #f4f8fc
}

#wpadminbar>.godaddy-styles .ux-tag-success,
.godaddy-styles .ux-tag-success {
    background-color: #9fffb8
}

#wpadminbar>.godaddy-styles .ux-tag-warning,
.godaddy-styles .ux-tag-warning {
    background-color: #ffeea9
}

#wpadminbar>.godaddy-styles .components-toggle-control,
#wpadminbar>.godaddy-styles.components-toggle-control,
.godaddy-styles .components-toggle-control,
.godaddy-styles.components-toggle-control {
    align-items: flex-end;
    display: flex
}

#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field,
#wpadminbar>.godaddy-styles .components-toggle-control__field,
#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field,
#wpadminbar>.godaddy-styles.components-toggle-control__field,
.godaddy-styles .components-toggle-control .components-base-control__field,
.godaddy-styles .components-toggle-control__field,
.godaddy-styles.components-toggle-control .components-base-control__field,
.godaddy-styles.components-toggle-control__field {
    margin: 0
}

#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,
#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track,
.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,
.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track {
    background-color: #f3f6f8
}

#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,
#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,
.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,
.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track {
    background-color: #00a4a6
}

#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__help,
#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__help,
.godaddy-styles .components-toggle-control .components-base-control__help,
.godaddy-styles.components-toggle-control .components-base-control__help {
    margin: 0
}

/* eslint-disable */
/* If a new version is imported from swiper the selectors should all be namespaced with .jp-carousel-overlay 
/* to prevent clashes with other plugins that are overrding swiperjs css
*/
/**
 * Swiper 6.7.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 22, 2021
 */

@font-face {
    font-family: 'swiper-icons';
    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') format('woff');
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

.jp-carousel-overlay .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}

.jp-carousel-overlay .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.jp-carousel-overlay .swiper-container-android .swiper-slide,
.jp-carousel-overlay .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.jp-carousel-overlay .swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.jp-carousel-overlay .swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.jp-carousel-overlay .swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.jp-carousel-overlay .swiper-container-pointer-events {
    touch-action: pan-y;
}

.jp-carousel-overlay .swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x;
}

.jp-carousel-overlay .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.jp-carousel-overlay .swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.jp-carousel-overlay .swiper-container-autoheight,
.jp-carousel-overlay .swiper-container-autoheight .swiper-slide {
    height: auto;
}

.jp-carousel-overlay .swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.jp-carousel-overlay .swiper-container-3d {
    perspective: 1200px;
}

.jp-carousel-overlay .swiper-container-3d .swiper-wrapper,
.jp-carousel-overlay .swiper-container-3d .swiper-slide,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,
.jp-carousel-overlay .swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.jp-carousel-overlay .swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.jp-carousel-overlay .swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

:root {
    --swiper-navigation-size: 44px;
    /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-disabled,
.jp-carousel-overlay .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-white,
.jp-carousel-overlay .swiper-button-next.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-black,
.jp-carousel-overlay .swiper-button-next.swiper-button-black {
    --swiper-navigation-color: #000000;
}

.jp-carousel-overlay .swiper-button-lock {
    display: none;
}

:root {
    /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.jp-carousel-overlay .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.jp-carousel-overlay .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.jp-carousel-overlay .swiper-pagination-fraction,
.jp-carousel-overlay .swiper-pagination-custom,
.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.jp-carousel-overlay .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.jp-carousel-overlay .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
}

.jp-carousel-overlay button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.jp-carousel-overlay .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.jp-carousel-overlay .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.jp-carousel-overlay .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Progress */
.jp-carousel-overlay .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.jp-carousel-overlay .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.jp-carousel-overlay .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar,
.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar,
.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.jp-carousel-overlay .swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.jp-carousel-overlay .swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

.jp-carousel-overlay .swiper-pagination-lock {
    display: none;
}

.jp-carousel-overlay .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jp-carousel-overlay .swiper-zoom-container>img,
.jp-carousel-overlay .swiper-zoom-container>svg,
.jp-carousel-overlay .swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jp-carousel-overlay .swiper-slide-zoomed {
    cursor: move;
}

/* a11y */
.jp-carousel-overlay .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

:root {
    --jp-carousel-primary-color: #fff;
    --jp-carousel-primary-subtle-color: #999;
    --jp-carousel-bg-color: #000;
    --jp-carousel-bg-faded-color: #222;
    --jp-carousel-border-color: #3a3a3a;
}

:root .jp-carousel-light {
    --jp-carousel-primary-color: #000;
    --jp-carousel-primary-subtle-color: #646970;
    --jp-carousel-bg-color: #fff;
    --jp-carousel-bg-faded-color: #fbfbfb;
    --jp-carousel-border-color: #dcdcde;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
    background-image: none;
}

/* end of temporary fix */

[data-carousel-extra]:not(.jp-carousel-wrap) img,
[data-carousel-extra]:not(.jp-carousel-wrap) img+figcaption {
    cursor: pointer;
}

.jp-carousel-wrap * {
    line-height: inherit;
}

.jp-carousel-wrap.swiper-container {
    height: auto;
    width: 100vw;
}

.jp-carousel-overlay .swiper-zoom-container {
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: center;
}

/*
To prevent flash of prev/next image scale transition after pinch zoom we need to hide them.
Swiper does not add a class of `swiper-slide-zoomed` to slides on pinch and zoom
so we have to target all affected elements in touch devices.
*/
.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img,
.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img {
    transition: none !important;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
    opacity: 0.5;
    transition: 0.5s opacity ease-out;
    height: initial;
    width: initial;
    padding: 20px 40px;
    background-image: none;
}

.jp-carousel-overlay .swiper-button-prev:hover,
.jp-carousel-overlay .swiper-button-next:hover {
    opacity: 1;
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after,
.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
    content: none;
}

.jp-carousel-overlay .swiper-button-prev svg,
.jp-carousel-overlay .swiper-button-next svg {
    height: 30px;
    width: 28px;
    background: var(--jp-carousel-bg-color);
    border-radius: 4px;
}

.jp-carousel-overlay .swiper-button-prev svg:hover,
.jp-carousel-overlay .swiper-button-next svg:hover {
    background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-overlay {
    font-family: 'Helvetica Neue', sans-serif !important;
    z-index: 2147483647;
    overflow-x: hidden;
    overflow-y: auto;
    direction: ltr;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--jp-carousel-bg-color);
}

.jp-carousel-overlay * {
    box-sizing: border-box;
}

/* Fix for Twenty Nineteen theme compatibility */
.jp-carousel-overlay h1:before,
.jp-carousel-overlay h2:before,
.jp-carousel-overlay h3:before {
    content: none;
    display: none;
}

.jp-carousel-overlay .swiper-container .swiper-button-prev {
    left: 0;
    right: auto;
}

.jp-carousel-overlay .swiper-container .swiper-button-next {
    right: 0;
    left: auto;
}

.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-prev,
.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-next {
    transform: scaleX(-1);
}

.jp-carousel-container {
    display: grid;
    grid-template-rows: 1fr 64px;
    /* 1. main carousel, 2. info area as footer */
    height: 100%;
}

.jp-carousel-hide-controls .jp-carousel-container {
    grid-template-rows: 1fr;
}

.jp-carousel-hide-controls .swiper-wrapper {
    margin-top: -32px;
    /* Compensate for the remove of the height of the info bar. */
}


.jp-carousel-hide-controls .jp-swiper-button-next,
.jp-carousel-hide-controls .jp-swiper-button-prev {
    margin-top: -54px;
    /* The height of the info bar plus any top padding on the nav button itself. */
}

.jp-carousel-msg {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    display: inline-block;
    line-height: 19px;
    padding: 11px 15px;
    font-size: 14px;
    text-align: center;
    margin: 25px 20px 0 2px;
    background-color: var(--jp-carousel-primary-color);
    border-left: 4px solid #ffba00;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.jp-carousel-info {
    display: flex;
    flex-direction: column;
    text-align: left !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    z-index: 100;
    background-color: var(--jp-carousel-bg-color);
    transition: opacity 200ms ease-out;
    opacity: 1;
}

.jp-carousel-hide-controls .jp-carousel-info {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.jp-carousel-info-footer {
    position: relative;
    background-color: var(--jp-carousel-bg-color);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
}

.jp-carousel-info-extra {
    display: none;
    background-color: var(--jp-carousel-bg-color);
    padding: 35px;
    width: 100vw;
    border-top: 1px solid var(--jp-carousel-bg-faded-color);
}

.jp-carousel-title-and-caption {
    margin-bottom: 15px;
}

.jp-carousel-info-extra.jp-carousel-show {
    display: block;
}

.jp-carousel-info ::selection {
    background: var(--jp-carousel-primary-color);
    /* Safari */
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-info ::-moz-selection {
    background: var(--jp-carousel-primary-color);
    /* Firefox */
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-photo-info {
    left: 0 !important;
    width: 100% !important;
}

.jp-carousel-comments-wrapper {
    padding: 0;
    width: 100% !important;
    display: none;
}

.jp-carousel-comments-wrapper.jp-carousel-show {
    display: block;
}

.jp-carousel-comments-wrapper>.jp-carousel-photo-info {
    display: none;
}

.jp-carousel-transitions .jp-carousel-photo-info {
    -webkit-transition: 400ms ease-out;
    -moz-transition: 400ms ease-out;
    -o-transition: 400ms ease-out;
    transition: 400ms ease-out;
}

.jp-carousel-buttons {
    margin: -18px -20px 15px;
    padding: 8px 10px;
    border-bottom: 1px solid #222;
    background: #222;
    text-align: center;
}

div.jp-carousel-buttons a {
    border: none !important;
    color: var(--jp-carousel-primary-subtle-color);
    font: normal 11px/1.2em 'Helvetica Neue', sans-serif !important;
    letter-spacing: 0 !important;
    padding: 5px 2px 5px 0;
    text-decoration: none !important;
    text-shadow: none !important;
    vertical-align: middle;
    -webkit-font-smoothing: subpixel-antialiased;
}

div.jp-carousel-buttons a:hover {
    color: var(--jp-carousel-primary-color);
    border: none !important;
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.jp-carousel-slide,
.jp-carousel-slide img {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.jp-carousel-close-hint {
    cursor: default;
    letter-spacing: 0 !important;
    position: fixed;
    top: 20px;
    right: 30px;
    padding: 10px;
    text-align: right;
    width: 45px;
    height: 45px;
    z-index: 15;
    color: var(--jp-carousel-primary-color);
    cursor: pointer;
    transition: opacity 200ms ease-out;
}

.jp-carousel-transitions .jp-carousel-close-hint {
    -webkit-transition: color 200ms linear;
    -moz-transition: color 200ms linear;
    -o-transition: color 200ms linear;
    transition: color 200ms linear;
}

.jp-carousel-close-hint svg {
    padding: 3px 2px;
    background: var(--jp-carousel-bg-color);
    border-radius: 4px;
}

.jp-carousel-close-hint svg:hover {
    background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-close-hint:hover {
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-close-hint:hover span {
    border-color: var(--jp-carousel-primary-color);
}

/** Pagination Start **/
.jp-carousel-pagination-container {
    flex: 1;
    margin: 0 15px 0 35px;
}

.jp-swiper-pagination,
.jp-carousel-pagination {
    color: var(--jp-carousel-primary-color);
    font-size: 15px;
    /* same as .jp-carousel-info-footer .jp-carousel-photo-title  */
    font-weight: normal;
    white-space: nowrap;
    display: none;
    position: static !important;
}

.jp-carousel-pagination-container .swiper-pagination {
    text-align: left;
    line-height: 8px;
}

.jp-carousel-pagination {
    padding-left: 5px;
}

.jp-swiper-pagination .swiper-pagination-bullet {
    background: var(--jp-carousel-primary-subtle-color);
    margin: 0 4px;
}

.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--jp-carousel-primary-color);
}

.jp-swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: var(--jp-carousel-primary-color);
    opacity: 0.5;
}

/** Pagination End **/

/** Title and Desc Start **/
.jp-carousel-info-footer .jp-carousel-photo-title-container {
    flex-basis: 50vw;
    flex: 4;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.jp-carousel-photo-title,
.jp-carousel-photo-caption {
    background: none !important;
    border: none !important;
    display: inline-block;
    font: normal 20px/1.3em 'Helvetica Neue', sans-serif;
    line-height: normal;
    letter-spacing: 0 !important;
    margin: 0 0 10px 0;
    padding: 0;
    overflow: hidden;
    text-shadow: none !important;
    text-transform: none !important;
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-info-footer .jp-carousel-photo-caption {
    text-align: center;
    font-size: 15px;
    /* same as .jp-carousel-pagination */
    white-space: nowrap;
    color: var(--jp-carousel-primary-subtle-color);
    cursor: pointer;
    margin: 0;
    text-overflow: ellipsis;
}

.jp-carousel-info-footer .jp-carousel-photo-caption p {
    margin: 0;
}

.jp-carousel-photo-title {
    font-size: 32px;
    margin-bottom: 2px;
}

.jp-carousel-photo-description {
    color: var(--jp-carousel-primary-subtle-color);
    font-size: 16px;
    margin: 25px 0;
    width: 100%;
}

.jp-carousel-photo-description {
    overflow: hidden;
    overflow-wrap: break-word;
}

.jp-carousel-photo-description p {
    color: var(--jp-carousel-primary-subtle-color);
    line-height: 1.4;
    margin-bottom: 0;
}

.jp-carousel-photo-description p a,
.jp-carousel-comments p a,
.jp-carousel-info h2 a {
    color: var(--jp-carousel-primary-color) !important;
    border: none !important;
    text-decoration: underline !important;
    font-weight: normal !important;
    font-style: normal !important;
}

.jp-carousel-photo-description p strong,
.jp-carousel-photo-description p b {
    font-weight: bold;
    color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p em,
.jp-carousel-photo-description p i {
    font-style: italic;
    color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p a:hover,
.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover {
    color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-photo-description p:empty {
    display: none;
}

.jp-carousel-photo-info h1:before,
.jp-carousel-photo-info h1:after,
.jp-carousel-comments-wrapper h1:before,
.jp-carousel-comments-wrapper h1:after {
    content: none !important;
}

.jp-carousel-caption {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/** Title and Desc End **/

/** Meta Box Start **/
.jp-carousel-image-meta {
    color: var(--jp-carousel-primary-color);
    font-size: 13px;
    font: 12px/1.4 'Helvetica Neue', sans-serif !important;
    width: 100%;
    display: none;
}

.jp-carousel-image-meta.jp-carousel-show {
    display: block;
}

.jp-carousel-image-meta li,
.jp-carousel-image-meta h5 {
    font-family: 'Helvetica Neue', sans-serif !important;
    position: inherit !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    background: none !important;
    border: none !important;
    font-weight: 400 !important;
    line-height: 1.3em !important;
}

.jp-carousel-image-meta ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.jp-carousel-image-meta li {
    width: 48% !important;
    display: inline-block !important;
    vertical-align: top !important;
    margin: 0 2% 15px 0 !important;
    color: var(--jp-carousel-primary-color) !important;
    font-size: 13px !important;
}

.jp-carousel-image-meta h5 {
    color: var(--jp-carousel-primary-subtle-color) !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    margin: 0 0 2px !important;
    letter-spacing: 0.1em !important;
}

a.jp-carousel-image-download {
    display: inline-block;
    clear: both;
    color: var(--jp-carousel-primary-subtle-color);
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}

a.jp-carousel-image-download svg {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
    padding-bottom: 2px;
}

a.jp-carousel-image-download span.photo-size {
    font-size: 11px;
    border-radius: 1em;
    margin-left: 2px;
    display: inline-block;
}

a.jp-carousel-image-download span.photo-size-times {
    padding: 0 1px 0 2px;
}

/** Meta Box End **/

/** Comments Start **/
.jp-carousel-comments {
    font: 15px/1.7 'Helvetica Neue', sans-serif !important;
    font-weight: 400;
    background: none transparent;
    width: 100%;
    bottom: 10px;
    margin-top: 20px;
}

.jp-carousel-comments p a:hover,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:active {
    color: var(--jp-carousel-primary-color) !important;
}

.jp-carousel-comment {
    background: none transparent;
    color: var(--jp-carousel-primary-subtle-color);
    overflow: auto;
    width: 100%;
    display: flex;
}

.jp-carousel-comment+.jp-carousel-comment {
    margin-top: 20px;
}

.jp-carousel-comment:last-of-type {
    margin-bottom: 20px;
}

.jp-carousel-comment p {
    color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-comment .comment-author {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    width: auto;
    display: inline;
    float: none;
    border: none;
    margin: 0;
}

.jp-carousel-comment .comment-author a {
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-comment .comment-gravatar {
    float: none;
    margin-right: 10px;
}

.jp-carousel-comment .comment-content {
    border: none;
    padding: 0;
}

.jp-carousel-comment .avatar {
    margin: 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: none !important;
    padding: 0 !important;
    background-color: transparent !important;
    min-width: 64px;
    min-height: 64px;
    width: 64px;
    height: 64px;
}

.jp-carousel-comment .comment-date {
    color: var(--jp-carousel-primary-subtle-color);
    font-size: 11px;
    border-bottom: 1px solid var(--jp-carousel-bg-faded-color);
    margin-bottom: 6px;
}

#jp-carousel-comment-form {
    margin: 0 0 10px !important;
    width: 100%;
}

#jp-carousel-comment-form.jp-carousel-is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

textarea#jp-carousel-comment-form-comment-field {
    background: var(--jp-carousel-bg-faded-color);
    border: 1px solid var(--jp-carousel-border-color);
    color: var(--jp-carousel-primary-subtle-color);
    font: 16px/1.4 'Helvetica Neue', sans-serif !important;
    width: 100%;
    padding: 10px 10px 5px;
    margin: 0;
    float: none;
    height: 147px;
    -webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
    color: #555;
}

textarea#jp-carousel-comment-form-comment-field:focus {
    background: var(--jp-carousel-bg-faded-color);
    color: var(--jp-carousel-primary-subtle-color);
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
    color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#jp-carousel-loading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

#jp-carousel-library-loading,
#jp-carousel-library-loading:after {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#jp-carousel-library-loading {
    float: left;
    margin: 22px 0 0 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 8px solid rgba(255, 255, 255, 0.2);
    border-right: 8px solid rgba(255, 255, 255, 0.2);
    border-bottom: 8px solid rgba(255, 255, 255, 0.2);
    border-left: 8px solid var(--jp-carousel-primary-color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner:after {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

#jp-carousel-comment-form-spinner {
    display: none;
    float: left;
    margin: 22px 0 0 10px;
    font-size: 10px;
    position: absolute;
    /* relative to .jp-carousel-comment-form-container */
    text-indent: -9999em;
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--jp-carousel-primary-color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    margin: 0 auto;
    top: calc(50% - 15px);
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.jp-carousel-info-content-wrapper {
    max-width: 800px;
    margin: auto;
}

#jp-carousel-comment-form-submit-and-info-wrapper {
    display: none;
    overflow: hidden;
    width: 100%;
}

#jp-carousel-comment-form-commenting-as input {
    background: var(--jp-carousel-bg-color);
    border: 1px solid var(--jp-carousel-border-color);
    color: var(--jp-carousel-primary-subtle-color);
    font: 16px/1.4 'Helvetica Neue', sans-serif !important;
    padding: 10px;
    float: left;
    -webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    width: 285px;
}

#jp-carousel-comment-form-commenting-as input:focus {
    background: var(--jp-carousel-bg-faded-color);
    color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comment-form-commenting-as p {
    font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
    margin: 22px 0 0;
    float: left;
}

#jp-carousel-comment-form-commenting-as fieldset {
    float: left;
    border: none;
    margin: 20px 0 0 0;
    padding: 0;
    clear: both;
}

#jp-carousel-comment-form-commenting-as label {
    font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
    margin: 0 20px 3px 0;
    float: left;
    width: 100px;
}

#jp-carousel-comment-form-button-submit {
    margin-top: 20px;
    margin-left: auto;
    display: block;
    border: solid 1px var(--jp-carousel-primary-color);
    background: var(--jp-carousel-bg-color);
    border-radius: 3px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--jp-carousel-primary-color);
}

#jp-carousel-comment-form-button-submit:active,
#jp-carousel-comment-form-button-submit:focus {
    background: var(--jp-carousel-primary-color);
    color: var(--jp-carousel-bg-color);
}

#jp-carousel-comment-form-container {
    margin-bottom: 15px;
    width: 100%;
    margin-top: 20px;
    color: var(--jp-carousel-primary-subtle-color);
    position: relative;
    overflow: hidden;
}

#jp-carousel-comment-post-results {
    display: none;
    overflow: auto;
    width: 100%;
}

#jp-carousel-comment-post-results span {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    overflow: auto;
    padding: 1em 0;
    box-sizing: border-box;
    border-radius: 2px;
    font: 13px/1.4 'Helvetica Neue', sans-serif !important;
    border: 1px solid var(--jp-carousel-border-color);
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.jp-carousel-comment-post-error {
    color: #df4926;
}

#jp-carousel-comments-closed {
    display: none;
    color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comments-loading {
    font: 400 15px/1.7 'Helvetica Neue', sans-serif !important;
    display: none;
    color: var(--jp-carousel-primary-subtle-color);
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
    bottom: 10px;
    margin-top: 20px;
}

/** Icons Start **/
.jp-carousel-photo-icons-container {
    flex: 1;
    display: block;
    text-align: right;
    margin: 0 20px 0 30px;
    white-space: nowrap;
}

.jp-carousel-icon-btn {
    padding: 16px;
    text-decoration: none;
    border: none;
    background: none;
    display: inline-block;
    height: 64px;
}

.jp-carousel-icon {
    border: none;
    display: inline-block;
    line-height: 0;
    font-weight: 400;
    font-style: normal;
    border-radius: 4px;
    width: 31px;
    /* Prevent comments indicator from changing icon width */
    padding: 4px 3px 3px;
}

.jp-carousel-icon:hover {
    background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-icon svg {
    display: inline-block;
}

.jp-carousel-overlay rect {
    fill: var(--jp-carousel-primary-color);
}

.jp-carousel-selected .jp-carousel-icon {
    background: var(--jp-carousel-primary-color);
}

.jp-carousel-selected rect {
    fill: var(--jp-carousel-bg-color);
}

.jp-carousel-icon-comments.jp-carousel-show {
    display: inline-block;
}

.jp-carousel-icon .jp-carousel-has-comments-indicator {
    display: none;
    font-size: 12px;
    vertical-align: top;
    margin-left: -16px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 4px;
    background: var(--jp-carousel-primary-color);
    color: var(--jp-carousel-bg-color);
    font-weight: normal;
    font-family: 'Helvetica Neue', sans-serif !important;
    position: relative;
}

.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator {
    background: var(--jp-carousel-bg-color);
    color: var(--jp-carousel-primary-color);
}

.jp-carousel-has-comments-indicator.jp-carousel-show {
    display: inline-block;
}

/** Icons End **/

/* Small screens */
@media only screen and (max-width: 760px) {

    .jp-carousel-overlay .swiper-container .swiper-button-next,
    .jp-carousel-overlay .swiper-container .swiper-button-prev {
        display: none !important;
    }

    .jp-carousel-buttons {
        display: none !important;
    }

    .jp-carousel-image-meta {
        float: none !important;
        width: 100% !important;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-left: 0;
    }

    .jp-carousel-close-hint {
        font-size: 26px !important;
        position: fixed !important;
        top: 10px;
        right: 10px;
    }

    /* The admin bar is fixed at top: 0*/
    .admin-bar .jp-carousel-close-hint {
        top: 40px;
    }

    .jp-carousel-slide img {
        opacity: 1;
    }

    .jp-carousel-wrap {
        background-color: var(--jp-carousel-bg-color);
    }

    .jp-carousel-fadeaway {
        display: none;
    }

    .jp-carousel-info>.jp-carousel-photo-info {
        display: none;
    }

    .jp-carousel-comments-wrapper>.jp-carousel-photo-info {
        display: block;
    }

    .jp-carousel-caption {
        overflow: visible !important;
    }

    .jp-carousel-info-footer .jp-carousel-photo-title-container {
        display: none;
    }

    .jp-carousel-photo-icons-container {
        margin: 0 10px 0 0;
        white-space: nowrap;
    }

    .jp-carousel-icon-btn {
        padding-left: 20px;
    }

    .jp-carousel-pagination {
        padding-left: 5px;
    }

    .jp-carousel-pagination-container {
        margin-left: 25px;
    }

    .jp-carousel-comment .avatar {
        min-width: 48px;
    }

    #jp-carousel-comment-form-commenting-as fieldset,
    #jp-carousel-comment-form-commenting-as input {
        width: 100%;
        float: none;
    }
}

/* =Tiled Gallery Default Styles
-------------------------------------------------------------- */

.tiled-gallery {
    clear: both;
    margin: 0 0 20px;
    overflow: hidden;
}

.tiled-gallery img {
    margin: 2px !important;
    /* Ensure that this value isn't overridden by themes that give content images blanket margins */
}

.tiled-gallery .gallery-group {
    float: left;
    position: relative;
}

.tiled-gallery .tiled-gallery-item {
    float: left;
    margin: 0;
    position: relative;
    width: inherit;
    /* prevents ie8 bug with inline width styles */
}

.tiled-gallery .gallery-row {
    overflow: hidden;
}

.tiled-gallery .tiled-gallery-item a {
    /* Needs to reset some properties for theme compatibility */
    background: transparent;
    border: none;
    color: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: auto;
}

.tiled-gallery .tiled-gallery-item img,
.tiled-gallery .tiled-gallery-item img:hover {
    /* Needs to reset some properties for theme compatibility */
    background: none;
    border: none;
    box-shadow: none;
    max-width: 100%;
    padding: 0;
    vertical-align: middle;
}

.tiled-gallery-caption {
    /* Captions */
    background: #f0f0f1;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    text-indent: 10px;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
}

.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption {
    /* Smaller captions */
    font-size: 11px;
}

/* Hide galleries in widgets until they've been resized to fit.
   Gallery widgets are almost guaranteed to need resizing, and
   the jump is a little more obvious than galleries in content. */
.widget-gallery .tiled-gallery-unresized {
    visibility: hidden;
    height: 0px;
    overflow: hidden;
}

/* =Greyscale
-------------------------------------------------------------- */

.tiled-gallery .tiled-gallery-item img.grayscale {
    -webkit-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
}

.tiled-gallery .tiled-gallery-item:hover img.grayscale {
    -webkit-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}


/* =Circles Layout
-------------------------------------------------------------- */

.tiled-gallery.type-circle .tiled-gallery-item img {
    border-radius: 50% !important;
    /* Ensure that circles are displayed in themes that add border-radius to all images as a default */
    object-fit: cover;
}

.tiled-gallery.type-circle .tiled-gallery-caption {
    display: none;
}


/* =Square Layout
-------------------------------------------------------------- */
.tiled-gallery.type-square .tiled-gallery-item img {
    object-fit: cover;
}

/**
 * Like Button toolbar button, loading text & container styles
 */

/* Master container */
#jp-post-flair {
    padding-top: .5em;
}

/* Overall Sharedaddy block title */
div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
    clear: both;
}

div.sharedaddy h3.sd-title {
    margin: 0 0 1em 0;
    display: inline-block;
    line-height: 1.2;
    font-size: 9pt;
    font-weight: bold;
}

div.sharedaddy h3.sd-title:before {
    content: "";
    display: block;
    width: 100%;
    min-width: 30px;
    border-top: 1px solid #dcdcde;
    margin-bottom: 1em;
}


/* Toolbar */
div.jetpack-likes-widget-wrapper {
    width: 100%;
    min-height: 50px;
    /* Previous height, 60px */
    position: relative;
    /* Need to abs position placeholder and iframe so there isn't a jarring jump */
}

div.jetpack-likes-widget-wrapper .sd-link-color {
    font-size: 12px;
}

div.jetpack-comment-likes-widget-wrapper {
    width: 100%;
    position: relative;
    min-height: 31px;
}

div.jetpack-comment-likes-widget-wrapper iframe {
    margin-bottom: 0;
}

#likes-other-gravatars {
    display: none;
    position: absolute;
    padding: 10px 10px 12px 10px;
    background-color: #2e4453;
    border-width: 0;
    box-shadow: 0 0 10px #2e4453;
    box-shadow: 0 0 10px rgba(46, 68, 83, .6);
    min-width: 130px;
    z-index: 1000;
}

#likes-other-gravatars.wpl-new-layout {
    display: none;
    position: absolute;
    padding: 9px 12px 10px 12px;
    background-color: #fff;
    border: solid 1px #dcdcde;
    border-radius: 4px;
    box-shadow: none;
    min-width: 220px;
    max-height: 240px;
    height: auto;
    overflow: auto;
    z-index: 1000;
}

#likes-other-gravatars * {
    line-height: normal;
}

#likes-other-gravatars .likes-text {
    color: white;
    font-size: 12px;
    padding-bottom: 8px;
}

#likes-other-gravatars.wpl-new-layout .likes-text {
    color: #101517;
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 8px;
}

#likes-other-gravatars ul,
#likes-other-gravatars li {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none;
}

#likes-other-gravatars li::before {
    content: "";
}

#likes-other-gravatars ul.wpl-avatars {
    overflow: auto;
    display: block;
    max-height: 190px;
}

#likes-other-gravatars ul.wpl-avatars li {
    width: 32px;
    height: 32px;
    float: left;
    margin: 0 5px 5px 0;
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li {
    width: 196px;
    height: 28px;
    float: none;
    margin: 0 0 4px 0;
}

#likes-other-gravatars ul.wpl-avatars li a {
    margin: 0 2px 0 0;
    border-bottom: none !important;
    display: block;
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a {
    margin: 0 2px 0 0;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a span {
    font-size: 12px;
    color: #2C3338;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#likes-other-gravatars ul.wpl-avatars li a img {
    background: none;
    border: none;
    margin: 0 !important;
    padding: 0 !important;
    position: static;
    box-sizing: border-box;
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a img {
    background: none;
    border: none;
    border-radius: 50%;
    margin: 0 !important;
    padding: 1px !important;
    position: static;
}

div.sd-box {
    border-top: 1px solid #dcdcde;
    border-top: 1px solid rgba(0, 0, 0, .13);
}

.entry-content .post-likes-widget,
.post-likes-widget,
.comment-likes-widget {
    margin: 0;
    border-width: 0;
    display: block;
}

/* Loading text */
.post-likes-widget-placeholder,
.comment-likes-widget-placeholder {
    margin: 0;
    border-width: 0;
    position: relative;
}

.comment-likes-widget-placeholder {
    height: 18px;
    position: absolute;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.comment-likes-widget-placeholder::before {
    color: #2EA2CC;
    width: 16px;
    height: 16px;
    content: '';
    display: inline-block;
    position: relative;
    top: 3px;
    padding-right: 5px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E");
}

.post-likes-widget-placeholder .button {
    display: none;
    /* Let's not show a dummy like button, let's just make a great button experience once it's loaded */
}

.post-likes-widget-placeholder .button span {}

.post-likes-widget-placeholder .loading,
.comment-likes-widget-placeholder .loading {
    color: #999;
    font-size: 12px;
}

.comment-likes-widget-placeholder .loading {
    padding-left: 5px;
    margin-top: 4px;
    align-self: center;
    color: #4E4E4E;
}

/* Like Special cases (display on it's own) */
div.sharedaddy.sd-like-enabled .sd-like h3 {
    display: none;
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
    width: 100%;
    float: none;
    position: absolute;
    /* Need to abs position placeholder and iframe so there isn't a jarring jump */
    top: 0;
}

.comment-likes-widget {
    width: 100%;
}


/* Make ratings block. @todo: make !important unnecessary by removing inline style */
.pd-rating,
.cs-rating {
    display: block !important;
}


/* Hide G+ title */
.sd-gplus .sd-title {
    display: none;
}

@media print {
    .jetpack-likes-widget-wrapper {
        display: none;
    }
}

@charset "UTF-8";
/*
Theme Name: Apostrophe
Theme URI: https://wordpress.com/themes/apostrophe
Author: Automattic
Author URI: https://wordpress.com/themes/
Description: A clean, no-nonsense magazine theme
Version: 1.0.13-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apostrophe
Tags: art, artwork, author-bio, black, blog, blue, bright, classic-menu, clean, collaboration, contemporary, custom-background, custom-colors, custom-header, custom-menu, design, editor-style, fashion, featured-images, food, full-width-template, gray, grid-layout, infinite-scroll, light, light, magazine, microformats, minimal, modern, one-column, post-formats, professional, responsive-layout, right-sidebar, rtl-language-support, simple, site-logo, sticky-post, theme-options, translation-ready, travel, two-columns, white
Status: inactive

Apostrophe WordPress Theme, Copyright 2016 Automattic, Inc.
Apostrophe is distributed under the terms of the GNU GPL.

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Apostrophe is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Site-wide elements
1.0 Normalize
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13.0 Media Queries
	13.1 Mobiles
	13.2 Tablets
	13.3 Desktops
	13.4 Large Desktops
14.0 Print

--------------------------------------------------------------*/

/*--------------------------------------------------------------
0.0 Site-wide styles
--------------------------------------------------------------*/
.entry-meta,
.edit-link,
.comment-reply-link,
.entry-footer a[rel="tag"],
.entry-footer a[rel="category tag"],
#infinite-handle span {
    background: #6b101c;
    color: #fff;
    display: inline-block;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.25;
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.entry-meta a,
.edit-link a,
.comment-reply-link a,
.entry-footer a[rel="tag"] a,
.entry-footer a[rel="category tag"] a,
#infinite-handle span a {
    color: #fff;
    text-decoration: none;
}

.entry-meta a:hover,
.edit-link a:hover,
.comment-reply-link a:hover,
.entry-footer a[rel="tag"] a:hover,
.entry-footer a[rel="category tag"] a:hover,
#infinite-handle span a:hover {
    color: #fff;
}

.apostrophe-navigation .menu-item-has-children>a:after,
.apostrophe-navigation .dropdown-toggle:before,
.apostrophe-social li a::before,
.nav-previous .meta-nav:before,
.nav-next .meta-nav:before,
.sticky .entry-meta::before,
.entry-format::before,
.entry-footer a[rel="tag"]::before,
.entry-footer a[rel="category tag"]::before,
.archive .apostrophe-nothumb span:before,
.blog .apostrophe-nothumb span:before,
.search .apostrophe-nothumb span:before {
    display: inline-block;
    font-family: Genericons;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------------------------------
1.0 Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;

    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1.5em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;

    -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    box-sizing: content-box;

    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
    /* Sets up base font size so rems are equal to pixels */
}

body,
button,
input,
select,
textarea {
    color: #404040;
    font-family: "PT Serif", Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.75;
}

h1,
h2,
.widgettitle,
.widget-title,
.comments-title,
#reply-title,
h3,
h4,
h5,
h6 {
    -ms-word-wrap: break-word;
    clear: both;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.5;
    margin: 1.13636% 0 0.50505%;
    word-wrap: break-word;
}

h1 a,
h2 a,
.widgettitle a,
.widget-title a,
.comments-title a,
#reply-title a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}

h1 {
    color: silver;
    font-size: 42px;
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.25;
}

h2,
.widgettitle,
.widget-title,
.widget-title label,
.comments-title,
#reply-title {
    color: #999;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    color: gray;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 300;
}

h4 {
    color: gray;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h5 {
    color: #5a5a5a;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
}

h6 {
    color: #5a5a5a;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.5em;
}

.emphasis {
    color: #666;
    font-size: 1.25em;
    font-style: italic;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 0.85em;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 0.85em;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

blockquote,
q {
    quotes: "“" "”" "‘" "’";
}

blockquote:before,
blockquote:after {
    content: "";
}

blockquote {
    border-left: 4px solid #d9d9d9;
    font-style: italic;
    margin: 0 1.5em 1.5em 0;
    padding-left: 1.5em;
}

cite {
    color: gray;
    display: block;
    font-style: normal;
    margin-top: 0.25em;
}

cite:before {
    content: "—";
}

.pullquote {
    border-bottom: 2px solid #a6a6a6;
    border-left: 0;
    border-top: 4px solid #d9d9d9;
    color: #a6a6a6;
    font-size: 1.2em;
    margin: 4em auto;
    max-width: 600px;
    padding: 0;
}

.pullquote cite {
    font-size: 0.8em;
}

q:before {
    content: open-quote;
}

q:after {
    content: close-quote;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 0;
}

ul {
    list-style: disc inside;
    padding: 0;
}

ol {
    list-style: decimal inside;
    padding: 0;
}

li {
    margin: 0.5em 0;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

ul ul,
ul ul ul ul {
    list-style-type: circle;
}

ul ul ul {
    list-style-type: disc;
}

ol ol,
ol ol ol ol {
    list-style-type: lower-alpha;
}

ol ol ol {
    list-style-type: decimal;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

table {
    font-size: 0.85em;
    /* A smidge smaller than body text */
    margin: 0 0 1.5em;
    width: 100%;
}

table caption {
    font-style: italic;
    margin-bottom: 0.25em;
}

table td,
table th {
    padding: 8px 8px;
}

table thead th {
    border-bottom: solid 3px;
}

table tbody th,
table td {
    border-bottom: solid 1px;
}

table a {
    text-decoration: none;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button-primary,
.button,
.button-secondary {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid #6b101c;
    color: #159ae7;
    cursor: pointer;
    display: inline-block;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    margin: 5px 0;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #e5f4fd;
    border-color: #159ae7;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    background-color: #ceeafa;
    border-color: #0d5c89;
    margin-top: 6px;
    outline: none;
}

label {
    color: silver;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    border: 2px solid #ccc;
    box-sizing: border-box;
    color: #666;
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1;
    padding: 12px 10px;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: #159ae7;
    color: #159ae7;
    outline: none;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
    color: #6b101c;
    transition: 100ms all ease-in;
}

a:hover,
a:focus,
a:active {
    color: #362e77;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
/* Main site navigation */
.main-navigation {
    border-top: solid #d9d9d9 1px;
    clear: both;
    display: block;
    font-family: "Open Sans", Arial, sans-serif;
    width: 100%;
}

.main-navigation a {
    border-top: solid 4px transparent;
    color: #404040;
    display: block;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    text-decoration: none;
}

.main-navigation a:hover {
    color: #6b101c;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul li {
    margin: 0;
}

/* Main navigation */
.apostrophe-navigation .dropdown-toggle {
    background: transparent;
    border: 0;
    display: none;
    margin: 0;
    padding: 10px 10px 15px;
    position: absolute;
    right: 0;
    top: 0;
}

.apostrophe-navigation .menu-item-has-children>a:after {
    content: "\f431";
    padding-left: 0.5rem;
    vertical-align: -0.1rem;
}

.apostrophe-navigation .dropdown-toggle:before {
    content: "\f431";
    line-height: 1.5;
}

.apostrophe-navigation .dropdown-toggle.toggled-on:before {
    content: "\f432";
}

.apostrophe-navigation .current_page_item a,
.apostrophe-navigation .current-menu-item a,
.apostrophe-navigation .current-post-ancestor a,
.apostrophe-navigation .current-menu-ancestor a,
.apostrophe-navigation .current-menu-parent a,
.apostrophe-navigation .current-post-parent a {
    border-top-color: #6b101c;
}

/* Social menu */
.apostrophe-social {
    color: transparent;
    float: right;
    list-style: none;
    padding: 3px 0;
}

.apostrophe-social .dropdown-toggle {
    display: none;
}

.apostrophe-social li a {
    line-height: 1;
}

.apostrophe-social li a span {
    left: -999em;
    position: absolute;
}

.apostrophe-social li a::before {
    color: silver;
    content: "\f408";
    font-size: 20px;
    font-size: 2rem;
    transition: 200ms color ease-in;
}

.apostrophe-social li a[href*="codepen.io"]::before {
    content: "\f216";
}

.apostrophe-social li a[href*="digg.com"]::before {
    content: "\f221";
}

.apostrophe-social li a[href*="dribbble.com"]::before {
    content: "\f201";
}

.apostrophe-social li a[href*="facebook.com"]::before {
    content: "\f203";
}

.apostrophe-social li a[href*="flickr.com"]::before {
    content: "\f211";
}

.apostrophe-social li a[href*="plus.google.com"]::before {
    content: "\f206";
}

.apostrophe-social li a[href*="github.com"]::before {
    content: "\f200";
}

.apostrophe-social li a[href*="instagram.com"]::before {
    content: "\f215";
}

.apostrophe-social li a[href*="linkedin.com"]::before {
    content: "\f208";
}

.apostrophe-social li a[href*="pinterest.com"]::before {
    content: "\f210";
}

.apostrophe-social li a[href*="polldaddy.com"]::before {
    content: "\f217";
}

.apostrophe-social li a[href*="getpocket.com"]::before {
    content: "\f224";
}

.apostrophe-social li a[href*="reddit.com"]::before {
    content: "\f222";
}

.apostrophe-social li a[href*="skype.com"]::before,
.apostrophe-social li a[href*="skype:"]::before {
    content: "\f220";
}

.apostrophe-social li a[href*="stumbleupon.com"]::before {
    content: "\f223";
}

.apostrophe-social li a[href*="tumblr.com"]::before {
    content: "\f214";
}

.apostrophe-social li a[href*="twitter.com"]::before {
    content: "\f202";
}

.apostrophe-social li a[href*="vimeo.com"]::before {
    content: "\f212";
}

.apostrophe-social li a[href*="wordpress.org"]::before,
.apostrophe-social li a[href*="wordpress.com"]::before {
    content: "\f205";
}

.apostrophe-social li a[href*="youtube.com"]::before {
    content: "\f213";
}

.apostrophe-social li a[href$="/feed/"]::before,
.apostrophe-social li a[href$="/feed"]::before,
.apostrophe-social li a[href$="?feed=rss2"]::before {
    content: "\f413";
}

.apostrophe-social li:hover {
    background: none;
}

.apostrophe-social li:hover a::before {
    color: #6b101c;
}

.apostrophe-social li:hover a[href*="codepen.io"]::before {
    color: #252527;
}

.apostrophe-social li:hover a[href*="digg.com"]::before {
    color: #356aa0;
}

.apostrophe-social li:hover a[href*="dribbble.com"]::before {
    color: #ea4c89;
}

.apostrophe-social li:hover a[href*="facebook.com"]::before {
    color: #3b5998;
}

.apostrophe-social li:hover a[href*="flickr.com"]::before {
    color: #ff0084;
}

.apostrophe-social li:hover a[href*="plus.google.com"]::before {
    color: #dd4b39;
}

.apostrophe-social li:hover a[href*="github.com"]::before {
    color: #f5f5f5;
}

.apostrophe-social li:hover a[href*="instagram.com"]::before {
    color: #517fa4;
}

.apostrophe-social li:hover a[href*="linkedin.com"]::before {
    color: #007bb6;
}

.apostrophe-social li:hover a[href*="pinterest.com"]::before {
    color: #cb2027;
}

.apostrophe-social li:hover a[href*="polldaddy.com"]::before {
    color: #bc0b0b;
}

.apostrophe-social li:hover a[href*="getpocket.com"]::before {
    color: #ef4056;
}

.apostrophe-social li:hover a[href*="reddit.com"]::before {
    color: #ff5700;
}

.apostrophe-social li:hover a[href*="skype.com"]::before,
.apostrophe-social li:hover a[href*="skype:"]::before {
    color: #12a5f4;
}

.apostrophe-social li:hover a[href*="stumbleupon.com"]::before {
    color: #eb4924;
}

.apostrophe-social li:hover a[href*="tumblr.com"]::before {
    color: #32506d;
}

.apostrophe-social li:hover a[href*="twitter.com"]::before {
    color: #00aced;
}

.apostrophe-social li:hover a[href*="vimeo.com"]::before {
    color: #aad450;
}

.apostrophe-social li:hover a[href*="wordpress.org"]::before,
.apostrophe-social li:hover a[href*="wordpress.com"]::before {
    color: #21759b;
}

.apostrophe-social li:hover a[href*="youtube.com"]::before {
    color: #b00;
}

.apostrophe-social li:hover a[href$="/feed/"]::before,
.apostrophe-social li:hover a[href$="/feed"]::before,
.apostrophe-social li:hover a[href$="?feed=rss2"]::before {
    color: #f60;
}

/* General navigation */
.navigation {
    margin: 3.0303% 0;
}

.navigation:before,
.navigation:after {
    content: "";
    display: table;
}

.navigation:after {
    clear: both;
}

/* In-page navigation */
.nav-previous,
.nav-next {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.2;
    width: 50%;
}

.nav-previous a,
.nav-next a {
    display: block;
    text-decoration: none;
}

.nav-previous .meta-nav,
.nav-next .meta-nav {
    color: silver;
    display: block;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 100;
    overflow: hidden;
    position: relative;
}

.nav-previous .meta-nav:before,
.nav-next .meta-nav:before {
    color: silver;
    content: "\f432";
    display: block;
    font-size: 36px;
    font-size: 3.6rem;
    position: absolute;
}

.nav-previous {
    float: left;
}

.nav-previous .meta-nav {
    padding-left: 25px;
}

.nav-previous .meta-nav:before {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    left: -10px;
    top: -2px;
}

.nav-next {
    float: right;
    text-align: right;
}

.nav-next .meta-nav {
    padding-right: 25px;
}

.nav-next .meta-nav:before {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    right: -10px;
    top: 2px;
}

/* Pagination */
.paging-navigation {
    border-top: solid 1px;
    clear: both;
    display: block;
    float: left;
    text-align: center;
    width: 100%;
}

.paging-navigation .pagination {
    margin-top: -1px;
}

.paging-navigation .page-numbers {
    border-top: solid 4px transparent;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    height: 48px;
    line-height: 40px;
    padding: 0 14px;
    text-decoration: none;
}

/* Image navigation */
.image-navigation {
    margin-bottom: 0;
}

.attachment .post-navigation .nav-previous {
    border-top: 2px solid #ccc;
    margin-top: 1.51515%;
    padding-top: 3.0303%;
    text-align: center;
    width: 100%;
}

.attachment .post-navigation .nav-previous .meta-nav {
    display: inline-block;
    position: relative;
}

.attachment .post-navigation .nav-previous .post-title {
    display: block;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875px;
    font-size: 0.0875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before:before,
.clear:before:after,
.clear:after:before,
.clear:after:after,
.entry-content:before:before,
.entry-content:before:after,
.entry-content:after:before,
.entry-content:after:after,
.comment-content:before:before,
.comment-content:before:after,
.comment-content:after:before,
.comment-content:after:after,
.site-header:before:before,
.site-header:before:after,
.site-header:after:before,
.site-header:after:after,
.site-content:before:before,
.site-content:before:after,
.site-content:after:before,
.site-content:after:after,
.site-footer:before:before,
.site-footer:before:after,
.site-footer:after:before,
.site-footer:after:after {
    content: "";
    display: table;
}

.clear:before:after,
.clear:after:after,
.entry-content:before:after,
.entry-content:after:after,
.comment-content:before:after,
.comment-content:after:after,
.site-header:before:after,
.site-header:after:after,
.site-content:before:after,
.site-content:after:after,
.site-footer:before:after,
.site-footer:after:after {
    clear: both;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
/* Make sure select elements fit in widgets. */
.widget select {
    font-size: 16px;
    font-size: 1.6rem;
    max-width: 100%;
}

/* Form elements should span the full width. */
.widget input {
    width: 100%;
}

/* Calendar widget */
.widget_calendar {
    max-width: 500px;
}

.widget_calendar #next {
    text-align: right;
}

/* Search widget */
.widget_search .search-form label {
    float: none;
    width: 100%;
}

.widget_search .search-submit {
    display: none;
}

/* Facebook widget */
.widget_facebook_likebox iframe {
    margin: 0;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.0 Basic structure
--------------------------------------------------------------*/
#page {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}

#page:after {
    clear: both;
    content: " ";
    display: block;
}

#main:before,
#main:after {
    content: "";
    display: table;
}

#main:after {
    clear: both;
}

.site-logo {
    max-height: 125px;
    width: auto;
}

.site-title,
.site-description {
    font-family: "PT Serif", Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 1.51515%;
    padding: 0;
}

.site-title a,
.site-description a {
    color: #362e77;
    text-decoration: none;
}

.site-title a:hover,
.site-description a:hover {
    color: #6b101c;
}

.site-description {
    font-size: 21px;
    font-size: 2.1rem;
    font-style: italic;
}

.site-footer {
    clear: both;
    margin: 48px 0 0;
    text-align: center;
}

.site-footer .widget-area {
    border-top: 4px solid #ccc;
    text-align: center;
    width: 100%;
}

.site-footer .widget-area #footer-sidebar {
    clear: both;
    line-height: 1;
    margin: 0 auto;
    max-width: 800px;
}

.site-footer .widget-area #footer-sidebar:before,
.site-footer .widget-area #footer-sidebar:after {
    content: "";
    display: table;
}

.site-footer .widget-area #footer-sidebar:after {
    clear: both;
}

.site-footer .widget-area li {
    display: inline-block;
    padding-right: 5px;
    /* Hierarchical lists look pretty funky in a sidebar footer with center alignment.
	 * Let's just display them inline for the time being.
	 */
}

.site-footer .widget-area li:after {
    content: "|";
    display: inline;
    padding-left: 10px;
}

.site-footer .widget-area li:last-child:after {
    display: none;
}

.site-footer .widget-area li ul,
.site-footer .widget-area li ol {
    display: inline;
}

.site-footer .widget-area .widget {
    border-top: none;
    clear: left;
    margin: 0;
    padding: 0.75758% 0;
}

.site-footer .widget-area input {
    width: auto;
}

.site-footer .site-info {
    border-top: 2px solid #ccc;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0.75758% 0 0;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
/* Sticky posts */
.sticky .entry-meta::before {
    content: "\f408";
    display: inline;
    margin: 0 0 0 -5px;
    vertical-align: bottom;
}

/* Entry/post headers */
.entry-format::before {
    background: #e6e6e6;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    height: 38px;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 19%;
    width: 38px;
}

.entry-format:hover::before {
    background: #ccc;
}

.page-header {
    margin: 0 0 3.0303% 0;
}

.byline,
.updated:not(.published) {
    display: none;
}

.page-title,
.entry-title {
    margin-top: 0;
    position: relative;
}

.edit-link,
.comment-reply-link {
    background: #e6e6e6;
}

.edit-link:hover,
.comment-reply-link:hover {
    background: #ccc;
}

/* Entry/page content */
.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.5em;
}

.page-links a {
    font-weight: 400;
    padding: 0 2px;
    text-decoration: none;
}

.page-description {
    margin: 0 0 48px 0;
    padding: 12px 24px;
}

.page-description p {
    margin-bottom: 0;
    margin-top: 24px;
}

/* Entry/page footers */
.entry-footer:before,
.entry-footer:after {
    content: "";
    display: table;
}

.entry-footer:after {
    clear: both;
}

.entry-footer .post-categories,
.entry-footer .post-tags {
    float: left;
    font-size: 0;
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0;
}

.entry-footer .post-categories li,
.entry-footer .post-tags li {
    display: inline-block;
    margin: 0 0.4rem 0.4rem 0;
}

.entry-footer a[rel="tag"],
.entry-footer a[rel="category tag"] {
    margin-bottom: 0;
}

.entry-footer a[rel="tag"]::before,
.entry-footer a[rel="category tag"]::before {
    margin: 0 0.2rem 0 -0.2rem;
    vertical-align: -0.2rem;
}

.entry-footer a[rel="tag"]:hover,
.entry-footer a[rel="category tag"]:hover {
    background-color: #5a5a5a;
}

.entry-footer a[rel="category tag"] {
    background: #362e77;
}

.entry-footer a[rel="category tag"]::before {
    content: "\f301";
}

.entry-footer a[rel="tag"]::before {
    content: "\f302";
}

.entry-footer .apostrophe-tags::after {
    clear: both;
    content: "";
    display: block;
}

/* Author panel */
.single .author {
    border-bottom: 4px solid #ddd;
    border-top: 1px solid #ddd;
    clear: left;
    margin: 125px 0 3.0303%;
    padding: 3.0303% 0;
    text-align: center;
}

.single .author:before {
    clear: both;
    display: block;
    width: 100%;
}

.single .author .avatar {
    border-radius: 50%;
    height: 125px;
    margin-top: -100px;
    width: 125px;
}

.single .author .author-bio {
    clear: left;
    font-size: 17px;
    font-size: 1.7rem;
    font-style: italic;
    text-align: left;
}

.single .author h3 a {
    color: #a6a6a6;
}

.single .author h3 a:hover {
    color: #737373;
}

/* Archive pages */

/* Posts without featured images will show as a grey box in the panel.
 * This hack sets the box's height to be equal to its width.
 * http://www.mademyday.de/css-height-equals-width-with-pure-css.html
 */
.archive .entry-thumbnail,
.blog .entry-thumbnail,
.search .entry-thumbnail {
    display: block;
    line-height: 0;
    /* This eradicates any unwanted bottom padding. */
}

.archive .entry-thumbnail img,
.blog .entry-thumbnail img,
.search .entry-thumbnail img {
    transition: all 0.125s linear;
    /* Fade out quickly */
}

.archive .entry-meta,
.blog .entry-meta,
.search .entry-meta {
    display: table;
    position: relative;
}

.single.date-hidden .entry-meta {
    padding: 0;
}

.archive .entry-title,
.blog .entry-title,
.search .entry-title {
    font-family: "PT Serif", Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.archive .entry-title a,
.blog .entry-title a,
.search .entry-title a {
    color: #6b101c;
}

.archive article:hover .entry-thumbnail img,
.blog article:hover .entry-thumbnail img,
.search article:hover .entry-thumbnail img {
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: gray;
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    filter: grayscale(100%);
    transition: all 0.5s linear;
    /* Fade in slowly */
}

.archive article:hover .entry-title a,
.blog article:hover .entry-title a,
.search article:hover .entry-title a {
    color: #a6a6a6;
}

/* Articles without featured images */
.archive .apostrophe-nothumb,
.blog .apostrophe-nothumb,
.search .apostrophe-nothumb {
    background: #ccc;
    position: relative;
}

.archive .apostrophe-nothumb:before,
.blog .apostrophe-nothumb:before,
.search .apostrophe-nothumb:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.archive .apostrophe-nothumb span,
.blog .apostrophe-nothumb span,
.search .apostrophe-nothumb span {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

.archive .apostrophe-nothumb span:before,
.blog .apostrophe-nothumb span:before,
.search .apostrophe-nothumb span:before {
    color: #fff;
    content: "\f100";
}

/* Featured content */
.archive .apostrophe-featured .entry-title,
.blog .apostrophe-featured .entry-title,
.search .apostrophe-featured .entry-title {
    font-size: 3.6rem;
}

.archive .apostrophe-featured .apostrophe-nothumb:before,
.blog .apostrophe-featured .apostrophe-nothumb:before,
.search .apostrophe-featured .apostrophe-nothumb:before {
    padding-top: 48.45%;
}

/* Specify icons for post formats */
.format-aside .apostrophe-nothumb span:before,
.entry-format.format-aside::before {
    content: "\f101";
}

.format-image .apostrophe-nothumb span:before,
.entry-format.format-image::before {
    content: "\f102";
}

.format-video .apostrophe-nothumb span:before,
.entry-format.format-video::before {
    content: "\f104";
}

.format-quote .apostrophe-nothumb span:before,
.entry-format.format-quote::before {
    content: "\f106";
}

.format-link .apostrophe-nothumb span:before,
.entry-format.format-link::before {
    content: "\f107";
}

.format-gallery .apostrophe-nothumb span:before,
.entry-format.format-gallery::before {
    content: "\f103";
}

.format-audio .apostrophe-nothumb span:before,
.entry-format.format-audio::before {
    content: "\f109";
}

.format-chat .apostrophe-nothumb span:before,
.entry-format.format-chat::before {
    content: "\f108";
}

.format-status .apostrophe-nothumb span:before,
.entry-format.format-status::before {
    content: "\f105";
}

/* Inline controls for logged-in users on archive pages */
article {
    position: relative;
}

.apostrophe-inline-controls {
    background: #eee;
    display: none;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 4px;
}

.apostrophe-inline-controls a {
    color: #333;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    height: auto;
    padding: 6px;
    text-decoration: none;
    width: auto;
}

article:hover .apostrophe-inline-controls {
    display: block;
}

.apostrophe-featured .apostrophe-featured-toggle {
    color: #eac31c;
}

.apostrophe-featured .apostrophe-featured-toggle:hover {
    color: white !important;
}

.apostrophe-featured-toggle:hover {
    color: #eac31c !important;
}

/* Password-protected posts */
.post-password-form input[type="submit"] {
    margin-top: 12px;
}

/* Search form */
.search-form {
    margin-bottom: 3.0303%;
}

.search-form:before,
.search-form:after {
    content: "";
    display: table;
}

.search-form:after {
    clear: both;
}

.search-form input[type="submit"] {
    width: 100%;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
/* General widget styles */
.widgettitle,
.widget-title,
.widget-title label {
    color: #a6a6a6;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    margin-bottom: 24px;
    margin-top: 0;
    padding-top: 0;
}

.widget-title label {
    text-transform: none;
}

.widget {
    border-top: 4px solid #d9d9d9;
    margin-bottom: 7.57576%;
    padding: 8.33333% 8.33333%;
}

.widget li>ul {
    margin-left: 0.5em;
}

/* Specific widget areas */
.widget-area .sidebar-primary aside {
    background: #6b101c;
    border-top-color: #362e77;
    color: #fff;
}

.widget-area .sidebar-primary aside .widgettitle,
.widget-area .sidebar-primary aside .widget-title {
    color: #fff;
}

.widget-area .sidebar-primary aside a,
.widget-area .sidebar-primary aside cite {
    color: #ceeafa;
}

.widget-area .sidebar-primary aside ul {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.widget-area .sidebar-primary aside:last-child p:last-child {
    margin-bottom: 0;
}

.widget-area .sidebar-secondary aside {
    background: #f8f8f8;
}

.widget-area .sidebar-secondary,
.widget-area .sidebar-tertiary {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.widget-area .sidebar-tertiary .widget {
    padding-left: 0;
    padding-right: 0;
}

/* Adjust 404 page widgets a bit */
.error404 .page-content .widget {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-left: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comments-title,
#reply-title {
    margin: 3.0303% 0 0;
}

.comment-list {
    clear: both;
    list-style: none;
    padding-top: 2em;
}

.comment-list ul.children {
    list-style: none;
    margin-left: 20px;
}

.comment-meta {
    font-family: "Open Sans", Arial, sans-serif;
    padding: 0.25em;
}

.comment-meta .comment-author .avatar {
    border-radius: 50%;
    float: left;
    height: 100px;
    margin: 0 0.5em 0 0;
    width: 100px;
}

.comment-meta .comment-author b {
    color: #999;
    display: inline-block;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    max-width: calc(100% - 100px - 0.5em);
    padding-top: 0.25em;
}

.comment-meta .comment-author b a {
    color: #999;
    text-decoration: none;
}

.comment-meta .comment-author .says {
    display: none;
}

.comment-meta .comment-metadata {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0;
    text-transform: uppercase;
}

.comment-meta .comment-metadata>a {
    color: #737373;
    text-decoration: none;
}

.comment-content {
    border-bottom: 1px solid #ccc;
}

.comment-content a {
    word-wrap: break-word;
}

.reply {
    margin-top: -1em;
    text-align: center;
}

.comment-reply-link:hover {
    color: #fff;
}

.bypostauthor .comment-meta {
    background: rgba(58, 58, 58, 0.03);
}

#reply-title {
    margin-top: 2em;
}

.form-allowed-tags {
    background: #efefef;
    border-radius: 1rem;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 1.5rem;
}

#comment-nav-above {
    margin: 1.51515% 0 0;
}

#comment-nav-below {
    margin: 0 0 1.51515%;
}

#respond label {
    letter-spacing: 0;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/* Click-to-scroll button */
#infinite-handle {
    clear: both;
    text-align: center;
}

#infinite-handle span {
    background: #333;
    padding: 10px 20px;
}

#infinite-handle span:hover {
    background: silver;
}

/* Loading icon */
.infinite-loader {
    clear: both;
    text-align: center;
}

.infinite-loader .spinner {
    left: 50% !important;
    /* ..because the Jetpack CSS is inline */
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

img.size-full,
img.size-large {
    display: block;
    margin-bottom: 36px;
    margin-top: 36px;
}

img.alignnone,
.wp-caption.alignnone img:not(.wp-smiley) {
    display: block;
}

img.alignright,
img.alignleft,
.wp-caption.alignleft img,
.wp-caption.alignright img {
    margin-top: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    margin-bottom: 24px;
    margin-top: 24px;
    max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption img.size-full,
.wp-caption img.size-large {
    clear: both;
    margin-bottom: 0;
}

.wp-caption-text {
    display: block;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    text-align: center;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}

.gallery:after {
    clear: both;
    content: " ";
    display: block;
}

.gallery-item {
    margin: 0;
    padding-bottom: 0.5em;
    text-align: center;
}

.gallery-item a {
    display: block;
    line-height: 0;
}

.gallery-item a::before,
.gallery-item a::after {
    display: block;
}

.gallery-item .wp-caption-text a {
    line-height: 1.2;
}

.gallery-columns-2 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-2 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 50%;
}

.gallery-columns-2 .gallery-item:nth-child(2n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-2 .gallery-item:nth-child(2n + 2) {
    clear: none;
    margin-left: 50%;
    margin-right: -100%;
}

.gallery-columns-3 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-3 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 33.33333%;
}

.gallery-columns-3 .gallery-item:nth-child(3n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-3 .gallery-item:nth-child(3n + 2) {
    clear: none;
    margin-left: 33.33333%;
    margin-right: -100%;
}

.gallery-columns-3 .gallery-item:nth-child(3n + 3) {
    clear: none;
    margin-left: 66.66667%;
    margin-right: -100%;
}

.gallery-columns-4 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-4 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 25%;
}

.gallery-columns-4 .gallery-item:nth-child(4n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-4 .gallery-item:nth-child(4n + 2) {
    clear: none;
    margin-left: 25%;
    margin-right: -100%;
}

.gallery-columns-4 .gallery-item:nth-child(4n + 3) {
    clear: none;
    margin-left: 50%;
    margin-right: -100%;
}

.gallery-columns-4 .gallery-item:nth-child(4n + 4) {
    clear: none;
    margin-left: 75%;
    margin-right: -100%;
}

.gallery-columns-5 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-5 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 20%;
}

.gallery-columns-5 .gallery-item:nth-child(5n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-5 .gallery-item:nth-child(5n + 2) {
    clear: none;
    margin-left: 20%;
    margin-right: -100%;
}

.gallery-columns-5 .gallery-item:nth-child(5n + 3) {
    clear: none;
    margin-left: 40%;
    margin-right: -100%;
}

.gallery-columns-5 .gallery-item:nth-child(5n + 4) {
    clear: none;
    margin-left: 60%;
    margin-right: -100%;
}

.gallery-columns-5 .gallery-item:nth-child(5n + 5) {
    clear: none;
    margin-left: 80%;
    margin-right: -100%;
}

.gallery-columns-6 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-6 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 16.66667%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 2) {
    clear: none;
    margin-left: 16.66667%;
    margin-right: -100%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 3) {
    clear: none;
    margin-left: 33.33333%;
    margin-right: -100%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 4) {
    clear: none;
    margin-left: 50%;
    margin-right: -100%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 5) {
    clear: none;
    margin-left: 66.66667%;
    margin-right: -100%;
}

.gallery-columns-6 .gallery-item:nth-child(6n + 6) {
    clear: none;
    margin-left: 83.33333%;
    margin-right: -100%;
}

.gallery-columns-7 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-7 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 14.28571%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 2) {
    clear: none;
    margin-left: 14.28571%;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 3) {
    clear: none;
    margin-left: 28.57143%;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 4) {
    clear: none;
    margin-left: 42.85714%;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 5) {
    clear: none;
    margin-left: 57.14286%;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 6) {
    clear: none;
    margin-left: 71.42857%;
    margin-right: -100%;
}

.gallery-columns-7 .gallery-item:nth-child(7n + 7) {
    clear: none;
    margin-left: 85.71429%;
    margin-right: -100%;
}

.gallery-columns-8 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-8 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 12.5%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 2) {
    clear: none;
    margin-left: 12.5%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 3) {
    clear: none;
    margin-left: 25%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 4) {
    clear: none;
    margin-left: 37.5%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 5) {
    clear: none;
    margin-left: 50%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 6) {
    clear: none;
    margin-left: 62.5%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 7) {
    clear: none;
    margin-left: 75%;
    margin-right: -100%;
}

.gallery-columns-8 .gallery-item:nth-child(8n + 8) {
    clear: none;
    margin-left: 87.5%;
    margin-right: -100%;
}

.gallery-columns-9 {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.gallery-columns-9 .gallery-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 0.25em;
    padding-right: 0.25em;
    width: 11.11111%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 1) {
    clear: both;
    margin-left: 0;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 2) {
    clear: none;
    margin-left: 11.11111%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 3) {
    clear: none;
    margin-left: 22.22222%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 4) {
    clear: none;
    margin-left: 33.33333%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 5) {
    clear: none;
    margin-left: 44.44444%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 6) {
    clear: none;
    margin-left: 55.55556%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 7) {
    clear: none;
    margin-left: 66.66667%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 8) {
    clear: none;
    margin-left: 77.77778%;
    margin-right: -100%;
}

.gallery-columns-9 .gallery-item:nth-child(9n + 9) {
    clear: none;
    margin-left: 88.88889%;
    margin-right: -100%;
}

.gallery-caption {
    font-size: 16px;
    font-size: 1.6rem;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/*--------------------------------------------------------------
13.0 Media Queries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
13.1 Small screens, under 768px wide.
Primarily mobile devices and super-small tablets.
--------------------------------------------------------------*/
@media (max-width: 767px) {

    /* Page structure */
    #page {
        min-width: 280px;
        padding: 3.0303%;
    }

    /* Center-align site branding and logo */
    .site-branding {
        text-align: center;
    }

    .site-logo {
        margin: 30px auto 10px;
    }
}

/* Small screen + portrait orientation = more space between title & description */
@media (max-width: 767px) and (orientation: portrait) {

    .site-title,
    .site-description {
        margin-bottom: 6.06061%;
    }
}

@media (max-width: 767px) {

    /* Show menu toggle and hide menu by default */
    .menu-toggle,
    .main-navigation.toggled-on .nav-menu,
    .main-navigation.toggled-on ul.toggled-on {
        display: block;
    }

    .main-navigation ul {
        display: none;
    }

    /* Condensed mobile menu */
    div.apostrophe-navigation ul,
    ul.apostrophe-navigation {
        display: none;
    }

    .main-navigation {
        margin: 10px 0 20px;
    }

    .main-navigation .menu-toggle {
        border-bottom: solid 1px;
        border-top: solid 4px transparent;
        cursor: pointer;
        display: block;
        height: 60px;
        line-height: 52px;
        margin: 0;
        padding: 0;
    }

    .main-navigation .menu-toggle:before {
        content: "\f419";
        display: inline-block;
        font-family: Genericons;
        font-size: 16px;
        font-weight: normal;
        line-height: 52px;
        padding-right: 10px;
        vertical-align: top;
        -webkit-font-smoothing: antialiased;
    }

    .main-navigation.toggled-on .current_page_item a,
    .main-navigation.toggled-on .current-menu-item a,
    .main-navigation.toggled-on .current-post-ancestor a,
    .main-navigation.toggled-on .current-menu-ancestor a,
    .main-navigation.toggled-on .current-menu-parent a,
    .main-navigation.toggled-on .current-post-parent a {
        border-top-color: transparent;
    }

    .main-navigation.toggled-on .apostrophe-navigation {
        border-bottom: solid 1px;
        display: block;
    }

    .main-navigation.toggled-on .apostrophe-navigation li {
        clear: left;
        display: block;
        float: none;
        position: relative;
    }

    .main-navigation.toggled-on .apostrophe-navigation li a {
        margin-top: 0;
        padding: 10px 25px 15px;
    }

    .main-navigation.toggled-on .apostrophe-navigation .toggled-on:not(.dropdown-toggle) {
        border-bottom: 1px solid;
        border-top: 2px solid;
    }

    .main-navigation.toggled-on .apostrophe-navigation .toggled-on>.sub-menu {
        display: block;
    }

    .main-navigation ul li.menu-item-has-children>a:after {
        display: none;
    }

    .main-navigation.toggled-on .apostrophe-navigation li.menu-item-has-children a {
        padding-right: 60px;
    }

    ul.apostrophe-social {
        position: absolute;
        right: 0;
        top: 0;
    }

    ul.apostrophe-social li a {
        line-height: 60px;
    }

    .apostrophe-navigation .dropdown-toggle {
        display: block;
    }

    /* Use a slightly smaller font size for titles */
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }

    /* Arrange posts into grid structure on archive pages */
    .archive .apostrophe-nothumb span:before,
    .blog .apostrophe-nothumb span:before,
    .search .apostrophe-nothumb span:before {
        font-size: 64px;
        font-size: 6.4rem;
        margin-top: calc(50% - 32px);
    }

    .archive article,
    .blog article,
    .search article {
        margin-bottom: 5.55556%;
    }

    .archive article:not(.apostrophe-featured):before,
    .archive article:not(.apostrophe-featured):after,
    .blog article:not(.apostrophe-featured):before,
    .blog article:not(.apostrophe-featured):after,
    .search article:not(.apostrophe-featured):before,
    .search article:not(.apostrophe-featured):after {
        content: "";
        display: table;
    }

    .archive article:not(.apostrophe-featured):after,
    .blog article:not(.apostrophe-featured):after,
    .search article:not(.apostrophe-featured):after {
        clear: both;
    }

    .archive article:not(.apostrophe-featured) .entry-thumbnail,
    .blog article:not(.apostrophe-featured) .entry-thumbnail,
    .search article:not(.apostrophe-featured) .entry-thumbnail {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding-left: 5.55556%;
        padding-left: 0;
        padding-right: 5.55556%;
        padding-right: 0;
        width: 33.33333%;
    }

    .archive article:not(.apostrophe-featured) .entry-header,
    .blog article:not(.apostrophe-featured) .entry-header,
    .search article:not(.apostrophe-featured) .entry-header {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: right;
        padding-left: 5.55556%;
        padding-right: 5.55556%;
        padding-right: 0;
        width: 66.66667%;
    }

    .archive article:not(.apostrophe-featured) .entry-meta,
    .blog article:not(.apostrophe-featured) .entry-meta,
    .search article:not(.apostrophe-featured) .entry-meta {
        margin-bottom: 5px;
    }

    .archive .apostrophe-featured .entry-meta,
    .blog .apostrophe-featured .entry-meta,
    .search .apostrophe-featured .entry-meta {
        margin-left: -5px;
        margin-top: -33px;
    }

    .archive .apostrophe-featured .apostrophe-nothumb span:before,
    .blog .apostrophe-featured .apostrophe-nothumb span:before,
    .search .apostrophe-featured .apostrophe-nothumb span:before {
        margin-top: calc(25% - 32px);
    }

    .archive article:hover .apostrophe-inline-controls,
    .blog article:hover .apostrophe-inline-controls,
    .search article:hover .apostrophe-inline-controls {
        display: none;
    }

    /* Hide post status icons */
    .entry-format::before {
        display: none;
    }

    /* Hide extra navigation text on smaller screens */
    .nav-previous .apostrophe-post-title,
    .nav-next .apostrophe-post-title {
        display: none;
    }

    /* Make sure sidebar clears properly */
    #secondary {
        clear: both;
    }
}

/*--------------------------------------------------------------
13.2 Slightly larger screens, between 768px and 1024px wide.
Primarily tablets and teensy desktops.
--------------------------------------------------------------*/
@media (min-width: 768px) {
    #page {
        padding: 3.0303%;
    }

    #masthead,
    #colophon {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 0.75758%;
        padding-right: 0.75758%;
        width: 100%;
    }

    #masthead:before,
    #masthead:after,
    #colophon:before,
    #colophon:after {
        content: "";
        display: table;
    }

    #masthead:after,
    #colophon:after {
        clear: both;
    }

    /* Site logo */
    .site-branding {
        margin-bottom: 0;
    }

    .site-branding:before,
    .site-branding:after {
        content: "";
        display: table;
    }

    .site-branding:after {
        clear: both;
    }

    .site-logo {
        float: left;
        margin-bottom: 1.51515%;
        margin-right: 2.27273%;
    }

    .site-title,
    .site-description,
    .site-description {
        clear: none;
    }

    .site-description {
        padding-bottom: 1.51515%;
    }

    .site-logo-link+.site-title,
    .site-logo-link+.site-description {
        margin-top: 2.27273%;
    }

    /* Hide menu toggle */
    .main-navigation .menu-toggle {
        display: none;
    }

    /* Full-sized navigation bar; no need to be trendy */
    .main-navigation {
        margin: 0 0 3.0303%;
        position: relative;
        z-index: 100;
        /* Sub-menus */
    }

    .main-navigation:before,
    .main-navigation:after {
        content: "";
        display: table;
    }

    .main-navigation:after {
        clear: both;
    }

    .main-navigation li {
        float: left;
        position: relative;
    }

    .main-navigation li :hover>a {
        border-color: silver;
    }

    .main-navigation li a {
        margin: -2px 3rem 0 0;
        padding: 0.75rem 0 1.5rem;
    }

    .main-navigation ul ul {
        background-color: #fff;
        border-bottom: 4px solid #aaa;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        float: left;
        left: -999em;
        min-width: 100%;
        position: absolute;
        top: 2em;
        z-index: 99999;
    }

    .main-navigation ul ul ul {
        left: -999em;
        top: 0;
    }

    .main-navigation ul ul li {
        float: none;
        white-space: nowrap;
        /* Show sub-sub menus */
    }

    .main-navigation ul ul li.menu-item-has-children>a:after {
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        vertical-align: -4px;
    }

    .main-navigation ul ul li a {
        border-top-width: 0;
        margin: 0;
        padding: 0.5em 1em;
    }

    .main-navigation ul ul li:hover>ul,
    .main-navigation ul ul li.focus>ul {
        left: 100%;
    }

    .main-navigation ul ul :hover>a {
        background-color: #eee;
        border-color: transparent;
    }

    .main-navigation li:hover>ul,
    .main-navigation li.focus>ul {
        left: auto;
    }

    .apostrophe-social li a {
        margin-left: 20px;
        margin-right: 0;
    }

    /* Arrange posts into grid structure on archive pages */
    .archive article,
    .blog article,
    .search article {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        margin-bottom: 3.33333%;
        padding-left: 1.11111%;
        padding-right: 1.11111%;
        width: 33.33333%;
    }

    .archive article .entry-meta,
    .blog article .entry-meta,
    .search article .entry-meta {
        margin: -33px 0 15px -5px;
    }

    .archive article.clear,
    .blog article.clear,
    .search article.clear {
        clear: both;
    }

    .archive article .apostrophe-nothumb span:before,
    .blog article .apostrophe-nothumb span:before,
    .search article .apostrophe-nothumb span:before {
        font-size: 128px;
        font-size: 12.8rem;
        margin-top: calc(50% - 64px);
    }

    .archive article.apostrophe-featured,
    .blog article.apostrophe-featured,
    .search article.apostrophe-featured {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding-left: 1.11111%;
        padding-right: 1.11111%;
        width: 66.66667%;
    }

    .archive article.apostrophe-featured .entry-header,
    .blog article.apostrophe-featured .entry-header,
    .search article.apostrophe-featured .entry-header {
        display: inline-block;
        margin-top: -1px;
        /* Solves the 1px offset bug */
    }

    .archive article.apostrophe-featured .apostrophe-nothumb span:before,
    .blog article.apostrophe-featured .apostrophe-nothumb span:before,
    .search article.apostrophe-featured .apostrophe-nothumb span:before {
        margin-top: calc(25% - 64px);
    }

    /* Use a two-column layout for the 404 page's widgets */
    .error404 .page-content .apostrophe-widget-column:nth-of-type(odd) {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding-left: 1.11111%;
        padding-left: 0;
        padding-right: 1.11111%;
        width: 46.66667%;
    }

    .error404 .page-content .apostrophe-widget-column:nth-of-type(even) {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: right;
        padding-left: 1.11111%;
        padding-right: 1.11111%;
        padding-right: 0;
        width: 46.66667%;
    }

    /* Show search input and button on a single line */
    .search-form label {
        float: left;
        width: 75%;
    }

    .search-form input[type="submit"] {
        float: left;
        margin: 0 0 0 1%;
        width: 24%;
    }

    /* Make sure sidebar clears properly */
    #secondary {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        clear: both;
        float: left;
        width: 100%;
    }
}

/* Sidebar widgets should appear in two columns, since we've got the space */
@media (min-width: 768px) and (max-width: 1023px) {
    #secondary .widget {
        float: left;
        margin-right: 1.53846%;
        width: 49.23077%;
    }

    #secondary .widget:nth-of-type(even) {
        margin-right: 0;
    }
}

/*--------------------------------------------------------------
13.2 Still larger screens, 1024px wide and up.
Very large tablets in landscape mode and most desktops.
--------------------------------------------------------------*/
@media (min-width: 1024px) {

    /* Use a two-column layout at this size (if we have an active sidebar) */
    #primary {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        width: 68.18182%;
    }

    #primary:before,
    #primary:after {
        content: "";
        display: table;
    }

    #primary:after {
        clear: both;
    }

    #primary.full-width {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding-left: 0.75758%;
        padding-right: 0.75758%;
        width: 100%;
    }

    /* Allow the primary panel to span full width on archive pages */
    .archive.apostrophe-no-sidebar #primary,
    .blog.apostrophe-no-sidebar #primary,
    .search.apostrophe-no-sidebar #primary {
        width: 100%;
    }

    .archive.apostrophe-no-sidebar #secondary,
    .blog.apostrophe-no-sidebar #secondary,
    .search.apostrophe-no-sidebar #secondary {
        display: none;
    }

    #secondary {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        clear: none;
        float: right;
        padding-left: 0.75758%;
        padding-right: 0.75758%;
        width: 27.27273%;
    }

    /* Out-dent emphasized elements */
    .emphasis {
        margin: 2em 1em 2em -1em;
    }

    /* Pullquotes should move to the (empty) right-hand column on sidebar-less layouts */
    .apostrophe-no-sidebar .pullquote {
        position: absolute;
        right: -50%;
        width: 40%;
    }

    /* Show post status icon at left of post title */
    .entry-format::before {
        left: -46px;
        right: auto;
    }
}

/*--------------------------------------------------------------
14.0 Print
--------------------------------------------------------------*/
@media print {
    .entry-date {
        display: block !important;
    }

    .entry-date>span,
    .updated {
        display: none !important;
    }
}

/**

	Genericons

*/


/* IE8 and below use EOT and allow cross-site embedding. 
   IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
   So unfortunately, IE9 will throw a console error, but it'll still work.
   When the font is base64 encoded, cross-site embedding works in Firefox */
@font-face {
    font-family: "Genericons";
    src: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot);
    src: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot) format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Genericons";
    src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADakAA0AAAAAVqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA2iAAAABoAAAAcdeu6KE9TLzIAAAGgAAAARQAAAGBkLHXFY21hcAAAAogAAACWAAABsqlys6FjdnQgAAADIAAAAAQAAAAEAEQFEWdhc3AAADaAAAAACAAAAAj//wADZ2x5ZgAABFQAAC7AAABIkKrsSc5oZWFkAAABMAAAAC8AAAA2C2BCV2hoZWEAAAFgAAAAHQAAACQQuAgGaG10eAAAAegAAACfAAABOFjwU3Jsb2NhAAADJAAAATAAAAEwy4vdrm1heHAAAAGAAAAAIAAAACAA6QEZbmFtZQAAMxQAAAE5AAACN1KGf59wb3N0AAA0UAAAAjAAAAXo9iKXv3jaY2BkYGAAYqUtWvLx/DZfGbg5GEDgkmLVWhj9/ycDAwcbWJyDgQlEAQABJgkgAHjaY2BkYOBgAIIdHAz/fwLZbAyMDKiAFQBE7gLWAAAAAAEAAACXAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNgYf/MOIGBlYGB1Zh1JgMDoxyEZr7OkMYkxMDAxMDKzAADjAIMCBCQ5prC0MCg8FWcA8TdwQFVg6REgYERAPvTCMQAAAB42i1PsRXCUAg8SAprl7FN4QZqb2WZGRjAIVLrHj4be4ews7OJHAd54cMBd+Af7JHmt3RPYAOHAYFweFhmYE4jlj+uVb8nshCzd/qVeNUCLysG8lgwrojfSW/pcTK6o7rWX82En6HJwIEv+wbi28IwpndxRu/JaJGStHRDq5EB+OKCNumZLlSVl2TnOFVtl9nR5t7woR0QzVT+D7cKLeIAeNpjYGBgZoBgGQZGBhBYA+QxgvksDBOAtAIQsoDoj5yfOD9JflL7zPGF84vkF80vll88v0R+yfxS9lX8/3+wCoZPDJ8EPil8ZvjC8EXgi8IXgy8OXwK+JHwp+Mrw////x/wsfHx8HHxMvJo8Rjw6PGo8CjxSPCI8fDwc3PVQ2/ECRjYGuDJGJiDBhK4A4pXhDABtHClYAAAARAURAAAALAAsACwALABaAIQAzADyAQABHAFGAZQBzgIIArIDTAOkA+AEEgTCBRYFYgW+BjAGwgbkByQHSAeCB+AI2Ao4CowLGgvQDBwM6g08DX4Nug4kDkYOYg6ADsoO7A8yD4gP8hAwEGYQpBDuEUgRshHUEfYSQBJeEnoSlhLEEtwTIBNYE6oT6hQaFC4UShSQFJ4UtBTyFSAVjBW4FegV+hYUFiwWQBZWFmQWchaIFuYXFhdUF4gXyhgEGCwYThh8GNYZEhlCGVgZZhl8GZIZoBnQGhIaShp8GtIa6Br+GzAbVBt+G8Ib/Bw6HGgciBy8HOwdHh1WHXAdmB3eHvYfIB8uHzofSB9WH6of4CA4IMghACFCIcQh4CIGIjoiSCJ8IpYiyCLmIxAjWiPwJCQkSHja1Xx5YFTVvf/53nUm++zJJJnMkpkJJJkss5GFMIQ9w04IS0BZRSJLMIIo1l4XFETQFkVFBKwVrbuWpRaXPOtalZaCPKu1D2yf28NX21qfQubk9z3nzoSAS//+Mbn3nnvuuWc/n+/n+z3fCxHIaEKEJfJMIhKVhJ4GUtP8jCqRz+ufVuQ/NT8jChgkT4ssWmbRz6gK9DU/Ayw+bPKY/B6TZ7TgpuVwN71Unnnm0dHS24QQRSACUYis8XyzST6xEAch4LF5ZJsnKkc9NsDDj2ETXgUikT4iaClNJEBSGoZIP74qa+l//YRfKB5EAEyj4g/ztWBZbslcIEjucqHATOpjkYBXsYo18DNYeOQI3UMvonuOHIHXj+/YcXyHSs7FLGQp+o7sYA8IFq+BpmqKhtk6SDEZinWVWfMsHlLfIkRCgjdPsLpAtMlRUu8CmzVP8HlDEInJmkC+wcbihT54cN/6cePW79Mv/f1E+MUT2zvCM68cOWt7Rwc2pk8TNQ3IWW0gEbuI3yxI7KW9HdtnjbxyZrhj+xPbWX0EYhjcf9h3Jg9gldjBfhLm1af1ERF7BTAEmoxngQDeU35mB/YPsDiFtU0gxChgX2tn8S6FP3zG38O+zMWEVkU1yaYQRCMxt13WblvTT9bcdgpaTsnahlcqUp9owt0Vr2zYc+oUHwN8S2FjwMYV62PNA5+pPhaFc0EP4JhuPr2la4eQCVCsNRvnLac3A9nRNShIBFZPXpciEmHjareZsEbRWNTEBhVvHDasmyniwP7HJ+4AhlsgbmOP7PUsWVA8DFmHuzoSa3avSXR09XZ0HaZfHa7raOARKjm8kWoLdwfuamwHbcqaNVOo1t54V2D3QtA2nsQL1TYePrwRtMTaWUWYhvI0gGlYz5FeldWtgPiwvfW8bpVgAk/cwxqtR/hwhHxeVq9YWNG6duzo0miCHtBgy55TlN/jbYIHFGwyi6IJ6NVO7RG0c7c7ugBDRITMuMlYqovNAFYeuNg4BWPRSBCDBRhsEaKRQJCl5mOvSfmxpqbY3GQSCmYvXjy7s6bVP2WcjI/P4iEUxG7ddWt0brKrC5/P+Yz2fTans2bNjWMvPTwOi8B2Vhtw5pEr+cpyCWabVVAkVQngpGDFtChYcIsQCIYgT1ADQUUNifmQB7g4HIrN6pIdiponhCAYkoJDMd7ucEkOlxK32q02qxIMlAewtuYWQVwLdsg6+fyNbcufpfRunw+CruicxZMm1JYsV4zGfIuUV9+8OH7VzTdfFV80IpSVVZBvMErLS2rHT140JxrJtYfGjRjrFIyl3liplFNkNDlFY6nTmwuKwx0fu6gZfL67aOrZ5W03Pn/SQNiZfrXlIfr62RfrVXeh9JvpoxY4FUt5/eRFm2bsvTy/YvzFdSDK5jq/F8DrrzMpglAxtSFekt2zZ/rmRZPr/WYl1JmVJxdEq6VcX3GhoGY7zaAUuoZ5pNwhrqF5WabyKXVZhW4l/MJZaHhoC28cdiIDKkJ4nxqIiZQittSTBJlKiL8+LogKUe3+mDleLrvAjLhidsRIPBDMAda9LsERkxwCsETlccHiVXx2S4sUD1SBWyIIewRxjzDgk8iBw54n/0w3db0rjt/1ViE9TY/nNXaeue+KFT+Cxz4uSNCP6Bp5+biD/9dsLw0qj8DEq51nG1+if695Cb68Zevjbs19yW+VvZO2LB9yLT1Er4JdsAEsP/85/ZxupEvw+PznPweLNhWq4MY2evS13r0roL03FCq+m/5W2Jx4iP5u/dsQm1SrddTDuw0Xd7lKw+05HqUYSuGfM+nhE/bxIXBCrGAf3Sc0ultay6/9qXZB5lggL5R1FyAeVyEef0Aa8EZR7Qi4kuRz++3helzyOL0wgJfhOL8YXsXtkgNnaIsQrrc7YvE8UGOqllwpVM/Vnvo9pdvoEdpfVTXzgZ+MuPJ5n99dV/vjhyfPTs6uvwVu+TCrcfGm5OQt4R+tsLY3rFJquycX25Yff/vwfT0jH5QDY+vEbavV3KI3b5QrxfqfXbS445E3s4dUtm1a3Dg8XpRILPfm6vUlKD9UjQQH0MGHKG3xDEcZEXbEAz4UIKUIiyg0zwMI+hHk5dCPKlv3yZOWX/TT2VWUpqrYAxUR4SxB6HwNpN6c5jj8Iyt28drRp2lfqmFHl4xPOLZjufLHWK6b4YPIBAMrI9IiYU+Ugejl5YrSbpiQT1+lvX/+s6N6/EXXtsW7nE51/pKKiNMofU2P9h0SJ0ANCJEFs8bHShVRpB+Z/NVeUTASRJ9M2yyIzB6yhKzi2GA3s0HxeXFFF5hjgDMXFKjHuZsNdgtYYvEWMRphQGBA6AjXOwLlPq+kqPXh+tgIiNkVVVHBIiKOxBz2c3F+HGpVjJmjEbENVsDEL7aN7Nn38idXH6T7v9i27Qv6pzNv0x+PFQO3XC8JX/+j+y/gmypIBXkW1VFoBYdslvMkVZjcCMZV9NN7b6H9R8YXF/lX+Lw2S561qhb8T13bbs23WjdOCVzm82GkrVLwycO/OvSeqmHu+w9e/cnL+3pGbvsCJvLSU3mn6YYlUul9fTUhWREeSo30SHv7dkOOklNXNzZcGJoT9Qp+gzu7JL/Qlt3QAUu6Ox9YJQsilHlFWei7SzDBbFXwuiErE6lWVN68M9XQBT3vH2FzXSC3wj9Rlm4ldWQ4G0W73q8hITOh1ZARh5FBLM5+Me7xh20+my/qi4ajYeE9IZAbGLPkmh3T1723++JF9797+do3WncKVqO9oMjucpWblz66ZMmjS0d2j48VSXS/uE9nVJIWDE/fcc2SMYGLd7+3bu37uy+ePPEeyFVzDdmqURIXP/rbRxeXx8Y0Fb3Nk2M9RZ13Kc8jJzFjXTkjCTJxx4YX4R/FPkZF2FQHFYWyxxz02FoUfCbYhPn0ILQ9KExbumxGvL0KqjrkAnpoWkfluKG52fSQJMGEbJvbUxNuLZ++eVkDEPG/bl40oW1h9aS62kmhszsF8/Ir/WF3cSz1n+L187eaSnzFxZbs+GWPr2ZcKT0/Gct0k+ZBKzC91Bg/saCYDoEPiYTVjhG8moIa9dgLbCrWOs672mbSVyVbeCiGHfSbG0ZPg6mto6ZPGyk1PbSpftowbwH9GgAMhixvg3fMyMwy1ZfkGSIW9X0sbpzS2DxpclPjlL4N8NqTB4sqg4XdHtpz4CAcrrQ5h5Re3E5nY2c+isJhGsqFqazGLkkf9kBQwJURDMQtbALEWKWsrD/ZGsFVEULemYdJkQSpeewvyOeJLNWt++MT2xZEqmdctePgksVPeicUeOffqZb+TMqzb71kxuxAc57j6iVrn1005obXfzT/0ZtXTQjOMKuqaBVUn33munj5xBV3/fIvBhJftGnvgfkbPnxx18rm+Qn6wbAN22MPXy08ZfQsj9x6+LLp4e3/0bD49l9B3cFLn76uLTSt+6a7p965yOYszJmSVWgy+u54rnvS7nu3rp9Vr+N4RvYtzvCJAiFPwGYGY3ELn8/AGiXqjbI77AgbEI8Fgmk0x6nD2CRS7TinOWxuYboywE5yBMiFXCIt5+/YliwZX7J12lW/u31a0+W73u5Zd3T3tVOGdC0zl8iCSZDlvNHjtN41Sx/oGjZ1x0XRdn9Odp1r3KjY3GiBwbjG4pAP0NO7BjMH+hn9iuU/dP1icEaTlx0G8c7Ox+9YnYhfdM3td7bdcmyoIc9iSGRZbaYpVy185uZpzctvm7n96zujndGaXVcObZ01+upk5TSLhfpnLNo8BRyw7sgAQRDIXmGBukDei4srn/PeAuS2BeXpq2yF2V9+SR/+MnVFOiDvZecv03d41eUlUW9Xc4gXbyQR+bkP0TuIkwWpYhx/FrPDjCITQxhlVjaAtSAHlaGfpu5bsco7bZ71qvaN1z0152hdxNo8YdiabkPBpsSYG1VioA/SFB1Oh0AZ3HYtlLWvuKLnboOV/p7+agr9+1NPzbu7FB5nbcjoT/mIDd9af0ZBIag27OnjZ+CanoKsl/J7Ac99nL0SgHeJplTgWvbqWgUqEw47kw9xEwoHnDaMeEZNvihvVFwaBb+gs0wF1c0TN93cM3/+ig0XXzSqNfJqVzIZqjapGm2iH9PIrqoqZ/ls+lHMbi8ra2i8boOwNuVLJObO2cKm52D8cJBqjsEX1J+4lQK7O1aANeKr0c05B9bNHkb2b8J5WQlepRSs9iaojw2GELGMvnSKqVBIzf/XvPk0/ez0ZjP932RUJtFkMqqlT+ejCCWn9Lf6TolkbCMqSKg7NY1JsVekA5l3knxp9QOooPSTbeSnZAe5h9xH7icPkoeZNodNsNUq7M+q1KHOoNQpqpWdFBsDFOxOJR9A8QahtgYCwdpANKB3byAYCfIVGIhiZAS7IFobi8bqIqzPo/VxftV/I6A2DrF6B9Ta62rtYbtj4GdjRy37szqsdXYwyXEjOPyyLQ4mv+qPB1UjBGV/VFVx1Pk/Af+E9BkvqVZThSnVCiLgdBZZrADn/RNgIDGKVuEFTC68AAIM5JHOCDArcH2cujJ19mNwpV59EO6kH34sjPv000+hUpA/ph8KjQ9K/5AlWi2oAkjsHVaowIpM54D5A63OzoFjLPt0TUX+HC+AL+GLEhyTZAFkEPCWHew1ngE7H8vOptXpFop6jqwMlgzfgCn07Rd3wmz68M4X9/5pVeoFiLx47+Rdu3ZhaPbOF+//06rz56oF5dwL5GM2V5GJFaCO5uaqVQsSYVTXBJQPDrsUV9I8AjEVgXUEMEzFFKiHWTgDUxiRRmStjdQhVQuUsyj+aoyBcAgUPUI4B8whIRjggocnY1Qcc2MP2T0TSiIqi0GO1w6XiLfsjfStAPXlOINQiAVZlojhEpYZDJjjMYyPK5KCcG+2SxI5yJgfI2T0Dkb8OAc8tpueWLlyidW075r14N4wIbn6rTtmlSdC2KNGEUb+/OVlD4Brodt/KX3/dnHo0I4tV6xrn7vgyWuT2V3tl9AvV14xvCXLsHPlqv9qanEkQxs3RTsstnBBVbS0am4gEDEYzEUFlfXFzki1udghK5VlFTWh8bmohxlt9jGBwFirTTYbi70V9spOj9cvCh0bW8Mza3Js5qmXrBtWPjJsKjaaHRsebp91+0y64TRsuqRp1o43eibdsNAZG9/TTQ899BD9dFxb7qzZUP2MyXwv/fSNdde9DyGdd+rNZLQzzUDvMqxdfRn945139E8Yn9dgm739re6xm9bWY1uzBEiuaLp1Q7j62jtTWaNuGtYz1FfiTV775ALhshdbJlmbWpZfds3637g80+d3fpgMV1uDwxcsnFlcWaZm5zkc44YMbfc4PBZByHGai9v8/haTXYFhlQKUTSh1eQSo9Pnag1aP0yIZi8rcc2pHXhYy5Yy5aHU00l5tsOfVDC+Pb2ieclU0P2flA303f/3WTTeuPXrvZVb3yq3T7qJPrN/QXer8rz27YOU99/7BJQk5t7xL/7x7H/3D+9f//8R1mT73Y3W4ej25BG9cuAjy5BAqSKY8A858HnIJsTiKJ5eI+ngspPiC3kAeJgOXWAZqSMLF0iK6RIe8Wy2aMGb26CZnXlnlitVXdl86K2E2I+waTFa3P1IaWdU+xmzxjB41rACGKdbEiNmTpo+oyxLKW6Z3zpsx0mKRCsKR5NgZ48aXFBeJJmeR0XhKdTQOKc0eP2rMww899bO7N8xzqkPEnKH1M+ffsO3QojmbZ8Qtcm6uqtD/EVS7w+3yuUqzzUKRKycXCr2VeeXV4jOpjwQ5W5It1aMuGzPx+s62Km++ASFJyS+sCCerqxdMm9hYlZP9htG9fNWD9786b/LlTW4hr6QoKz2GiEFXIAYNIddh79hVbgwNMqiRUCwy5iaivseUAtlmBWapCgz+YRqmD9rTgn3gORITJpusg2SINS3zB57bMnQgpo4Mw6QbDiy5auWUiZe//yukq6ZRdZ3r75y69cq2sYteeHB7z4wqekmT1ze8qX368g6Xu9xtKYjEOxdVDvWUOIpqIj5vkXPYsBkzu7ctXzGsIR7tnL1xXsswr6el9dLJ1aFCp8NWUlYV8/pikVlXHrxnVbfYuuzyJQdumNSYN3zFrmff62mfefnGqXeu76xL5lTN6Nn+4AuL5tPftl86e3hzRbDY6bAYjeZ8zCPkLXe7W0I2e3l5dai+FqmIMzhkQtuCS0a3BgMlVrPJ46ofMbTKbvN4orWFRagDJSdNrBkRCnH+jKyIKMzuGGESHXFX1wbwrFQiS+EcJSRUgomjOO94Zp1Gwe6ptyuaPVhkZ0cymmCsgSZGXjFu7lCtt27VwgSoiACeOWMLDAbYG01KpLiu3OAJ6mdM3ZWsqK0QtIvu/3qzbKr2lLTvnD5zrz+Q1Cn927BVDas93KIVJLVkBBmPesxmrGUMq6UPWwSJAY4VYC3TWqK9nKkzCrvzxzidV+0oE1iQWwesdgmsjhgzlyjEqzCzbsRi1e0/gBKO866MXoTpLCimHHILYgXrCtQSgn7R7mD3LpBezx/qyu949nBHvmto/rDbfkL/1hoKjRwZCrXC6HmtrfNaBU9lw5DqshmpLY+C75FH6AePPkY/eOQR8KU+rKiZWVo1pFGuxoEYUb1vWCjvilfoF/QE/eKVtQWllUXrZtTNKDn03/Nks9kGDYXT69qWL2+rmVIn0jOT/vxkycz62LyYaMh3VeZ3dORXuvKHgRJqxeJbW/VzKDS8rHZIQ3B4alnXgctWHOzqOnjiYJdwb03JxOHlDUJ7qCVUnUg9Fe8srq9b+uzGKVM2/mop6n/hkb4Z66oDC43whj07Rx4/pG75HcurJ4Wa6bU5CypCsXlsfSK/Znq6RnwkjuPBjDBM7RX5loUwHDw23VzOu81hU2VPRscKRh1x/aE0ze63e2sA5t03f4w2LwZqzega+bUtW16X7kMaoc7bPX/+7nmw/D6Mlo7Os/ttIS8tm3vPnGjnj0YfPeKpqfHAx5uef3HTZdU/Ptq5a+6cnZ1/qA0dZ/FEryPbP8B5nU/KM3ybb+Lo+jrbxkF+yPZyHBB3IamOOxRkxpn9GyTW7wWSXX76Hn3P35UMwHLZ1DC6wSSr3Kx+VN/iOcrs6Kl9LAF9H/z8hR1Sqc9XKhHdrvUCcqnWgT0WByFG0WTMiduMEHUIt8Ga1Od0O6wULBTDggVWpv4u5NPtqc9hDb0dLt+d+iL1xW61lb5FD0F56lnw0V/RtyAC4+kH9CFxL/0TTIDI2W/o28t66EvQ0rOMt10ghCpzsO0uMoa3XRUFNU9iKoQKeaBrOEwcMr6F65vtb8TNyLCYcqGzMKaZcMuiBxVo+dXZjdbIHFlWrEU1rjMGWaVX5g11Z1vL8suaK4RTXtlpSa2ylcr/dFpLyz6wFouCS5RcFvr3Yp+vGEZk2wtUsmgRpbTFarVV2MyCgTYU5IqyWlkh2xxVVSV09S/tZW5zn0GRcZ4U5jnzDLtyrT5vcbDYk2PhOMX2R9h+0GDtb9BmCPnezY/0bgfHOgFnLd9TYnsdqPw5PDaPGBZ6xd5+wjRETJ7i8jylIRPW+klmLmHJCmPHOdwqZYTMRqCESyFFKBHf7GKApmAwRdg+U5Ldk8weC5+HZcSftmtm2DQza+q7f4hNeCdZTKhsmcQ6cIH8XHf3c/Qs/ZCefX716ufhjrXv3NvZee87a3fRr3buhKw/wdBO+rRKVj+vJ2LJkefji8+fXd2588RnJ3Z27qRf0dcxuUToXPqfnTAV3tPnB9aJ8L1IE957GY7arSLrVQ/rTKmL72ZqTGs+tUfS+B4m/ezUnn7siD2nCBncrmxSTKp0W53JEw3b8LAw45c+rbj+mh4vNlQ+VlhYRqFzBg9NwM5ORvu4xiniOdXrRKYcSODZqWhn2RLStLOYjCVIsbNwIOCkhD2HXkx5fl1cZChpxLrUoqasioxHxS16iZ4mqK0PowJRAnU/VFUJy1JC4RJ1xRO8DMK0KYebmya/s8bSb0AwqFij4pxQETyNVRLcDtTnDn9X5QnJGajr4H3rYpwblaQJZdwohqdhm5g+MmFPOowc1Wb6oZ7OvHtuO5vVmF+/pwGU6GnYM37Q9DVzFsh3NQWi+qY5Xx8zYaZ6tXo1tseNCAcOQB2tRYA4qAFvPt+jUyFurx+BsAt/Fsrmpk6VNzUGvTnWYcLX+4WyA/6uwIFCs7lwf+rkgQCG/cIwnspfU5pnDIWnS88dSJ3c7/cfKGptLTwglGHwoL9rYG1ynC8gJdh3KqCUZjv15W7JjOyOIM9HBEMJhdhHNGq6+9n0+oFhkLVzdd/q9Ue+PLKenQAb/LfVmSe4dHY9eze8mX64fv2AfTpdFm/pBcWRdFGoXtgtUY9NNsHfvlVmauxAngZBE1dT07fKpd+cq5VhsG2cr7cSUsFtVza2FeOJMjj6gXqIOIw4UGzpCv+mOkomIb6S+jf14vKNQKWBKO+QXKxTKaJbNdv/Z9AWNEIMqyIagXe8EZi2FUNVI8aNjgLnXYifMpyl8hL6JfKeL5dSBc4shRwYCjl+WEu3Tnrl3Zcn0lvh8kmvrFjxypQUYWauU/SlhRxbZXyTypf09CyDM3BmWU9PXyVcAT2TZ0yfTG+lW/EKL+3RXzglRDk6n1dn5ofh46uOgDcIjDWyuiOtjDNLeByCFgcE46whqEtk8N7PmSM2KK7zTYkUeWC/ckoAWMBbcucvdm2/qH3FK0lY+8fQdWfJdRpt5M268//eSG3h1YC3u257eAVvWsuaEaf2rEDIgf2eoj2nhJN0L2vTlO3e6ZPhinfhQ54DvMoauDf1Fm/4V13LeRNfWrNgJQdjEBho6b4S2P/M7IX1MwIKo15IaLSX9mqQ4CdIyBfcayxNen+R29HPz8NA+nrFhNbX29eriQl+EhPqBfcaS8PmqJaWKxbEsyjzcLFVGqJ+ziLsKutBhlWIVHJ4wPgZPveTiQ44mo49ySgg0DCB4OxPA76mg4+eQuGJEYoOIOjiX2+KqyACXjMH5w1QirxhBzGy9WrBP5CLQSW0/BD1U/8hWi5M3L9f+jE9mPoUJtL9ggPaQHCkPmXYovMFDbs2i692BN4gMxqj1Ne0PqKJuGAUBpiUGahTvdBLE+f4MeMLRu6TZAT8M3kYi0jhT8TfGQxzF5pedmJVJRLvv16lF98zkDzGdIwCW90OHIoaQfXjfMQ+6u3TaELUUo8vEGak9moLEgs0mIThBQqW3qdBL7acPetbwJ/lskdp/oS5syE2Ztx8VOQ5jPYgDCVS/E1WFegdjDc5uLY5g+a+Gp6IUO4z1aMYcwLeZEGgCnxmphyhmAWi7zm09ZMjdPfvj8I2mAYlr67qJ/Me/Jx+TA880b23G//kjLvE72HREZGsepX+lT5JLz/6BCSh6PMH5/VpPB2X7f3fADEo6ovYG07uo+JCecJ1UlyiLcgsBpZmMXgs6luVeZErZnxzunVZs8PhE76u7L68u5L+H193f4zQj8LC3LHa/LgvMbNrmPTO2AkTxp45ylcVRNmeAQ5MZp/BhtgQ1nkNQwXUXeJc3+RIhqCG6Oth0GB3sMYH1ZAgcBqleJnHFv1tkv7mpVkPbm0E1AoC0S2TmIMOHqi+JmH4S9d/MofFg2/G4i95YyWcSo8dD7U3AWoT/tjwU0IZ28h47PiSOSwCyutLaS3vPd3fivsxVWa8mPLAyzg9Liu7m7sz+bwDTkt8rXGazJ2XOIJrLLRmytRuXDcauzLXpZR2NcP2qxk2MD8lQZuypntqmmy9TJvZnUA2snUBP1HY3Mgjhbp/HIKnyrA+GjGjClHAii+wi+VccsyZSpfT5VPn7IR9Nz733I2Ys0qYNFl7DB/AXVOPrd0FWSnnc2B4jjlTMTxbwPBMPsmWEJIJH8QdMucl9KR2Uj65IEVgr9aLY4Vz1EAGuBQpwsFi48WuBvI10Q82k3GZ4pHionAQZ7CQIZhHEFd1HrMLO0w4iKwJzALi8JjKcIJxDwMTTn34y18E7ZOa0f4/PnTz6UcXrZc3DVs69i8pzfLO+KlLnljF4pRSvP8k1L1xzNP0b1X0jH3zqyDeugvsdPKlrz48Dt+3vDP215euPbKtFBR8SFNMJxGxrZLGW8OWpcb87tL1ZPjDOoG1j89EfzrFWVRP+vC9PsKd3RjSzBASBtZnKtczy9gq5/wgfQGHlN7vM6fXizCM/gu2a9QCa6UH04HuvlE4Mdgw/H33mjW718j30zLEJyLsSZ3Sry0L2VOcPvTwGpbkPG6icj7L8IW7kg1emTL3HUNVCa+QPLceEYnTsSJ3IBu8GAnLisuUdN4ZphzXmTJJ4475gqs/7f2pM2Vd/Mhc8Hi4EEK1Ecmzz8TSCPu48Bj8B2nnRuZHmRFDNKGrA/ycwMqx5zgI/A3QX6T6ZZ9OjCVOm5lE0nM9yzVK5oTKCB0j4kRlumgJ12d1cRiJNUHajsVtTNw+OWizT1UPb2xdVxV67vI9pwolwvWyHWWejYfD1Us3nNrT0srXpqaCKqf9Ye1Wxr+DbGEEA5ERbCdNRFquHEwmP207mqQN9CS8Bm1tnyaPt83e20/2yruSx/ARjKcN4GaPjuNdW2rHXiAMkIHJLpnRKPVc/4t6RWS9Qtym+Af5f+UnuKwRsPCoByQCn1PLLJjFXFTpL+THqYVaOmCWBrO4HRIX2B8UTX8H1zySWyS1EplFf8G8UGHWLGqRH++gv8B3O+BzrssnFFYPxuiYgASEiFRvCllNr8xksYDUJsHTMSxJsHRYFyMm41YCIYE/jQlsDKZ6B3wJRKwe88bEGSxyd9o+Pg8BVyhWTX+Gc5st0syzNE+QNe6STIwiq7zGSBmbAWeJoDsecx5fwG5kTfm2/ucjQZzZNShz4lwTJBl9jx3xsM03+D48SB/8vnthgEylMqE+7cLAgAN0xgP6e0K8awRuB+G2DFbnb+1iZ5CF4ZisG2T4WbeNMEMJs5718TiJObNo6dUu4qM0jvD8GX4FLsg/zASuzRcdVI4YZYownCtKYxlpmQI5K2NWwEyZqOExxfhcwQeYituv2xAydnCGM8U6FjN5Lqev4LEKCiOAIRBEfIc3iF/6cJBv+vQn/eQnn96kcODglnD9mnrzbvqvX5bSf0Ju6S8hm9FEoq97Ja3FMXxOAwBDq8Eg4IIBFJCwesz1FnDe8NZi43SHX0U5vLGqfVypDgoCVk3HLmBmGyZH8OJ2bzzsqHSlMeIc9pQPYI9ej+8rPe1JSDJ10If1/JI5HOnQ+R1lCtxfn/EqI7fgmdjWlkfl8hqBGDECFy3zLmf6JzNHpN6bKwToXIGNEMV1xy1yKMD38Qfn2bDymZgo5c4cePJFue86MKjFNP2MZbNhuUpNsdXI8gaUm/q6TY+5iY84kxBNyGrTs5nVLRCJc41F4apFIjN1+4hYX1/fd4TZo9hU0vT5fBZLi/80zjRNAdFyj7pAXUCq+M6K6ldUixpkRDFoCQTlINMf48G4HIuLcQeictwh2h1+h2rHseaT216vLmikv6tptm95Y4Sz5Y0ttqZa+rvGTwyGTxqhrrbJtuWNkdaRb9xqb6qFOhZNN3H4FU7fam+uOZdSzyA3O4E5NNfoST/RM771dcy4jGM3ucDGYEV9/rwvH4Ab+VWI+fnOaRyUC7+BkOo3n96yaYNweHwf4aHUmPHf+iAidWTL6c3jU2M2bGJX4fCGb/GH4nNypTyjVyCgstXPlrusc4eUfmEsCGGYsEkj4ezRY/XF/SaTwWx1n5srOo8y6SyRxWZEvUx0qGbceoBz8ZTsyxH965GBbxIyOK+7D4n48AwrnmTwftD+QyYtkiELm576dyB6iSkuIAa+nyCDvp/A0tLfT4jAHbwN34u5ZBDm6kbwNNalQRc7x4AAeEZfsXj+OgO6vKoixyOWv4LaFcNcjqnG84rxpH+DihPS4CoMFAm82rj0M0XzL1Gw/0UtUzy+hO1mrR+oxoXzznLhvJMym3TI1zy2MDK3C+edsExH+720V9v7rQlXz4vpSzJooWk5dl55ju/+wodx1m995ZMazFsvKOjskfP0yPPKCH93GfrONa4qB9+uZkDLfqUQjnIPqO8pH170t7ffsf/n825aUlHkLCyKjC52vmUyj5n+fXUSGhqndSdGXrR/XEFBia+k2Du0umpkg7fUaquOpH3hdZ1Xn9Xsp+K8YYYKjrknqRuHzQ0nL0jLEhpZ2hSOvESYwZ6lZcyHupk9I2MHYUzHTOz4RhgVg7AFj6DPb0HNLlzMggqjGimWeQe00/85UamlPuvgtkitYwTeybwu3I7JE6bDvO7/xPrkKtvYTgbTQFsEexnEW8CF0horv35CU/DGZ1+YcP/9E1741caK5gk4ZZeO+c1r97YMHXP33WOGttz7+ktj2Jwgl8BJdafixhWsfw3F7F8iqBbRwQzaQeGyE/Qo1Jw4Kh09cfToCag52/U1kK/lhm3IoRu2QQO8to2+Rl/bBq/RshaJtDCdjOunaTtQEdv9MQpRFLSoxX3LgTjKtTREubBJNxIpiCqsnX0oqges7lEm33UTrcxhhFnz8IRU9lwKbtMfMPp+ux6lP1wP2w+Xn/p3JWvkO8os+4EyLSj+g+oPldoHL8+lOw50/lDJOH1e7mSJGIqm56iMcgzLNRkF5rRgCqIIY/Y0k8CtngyARYJyaEfbc0v6OR7LCWYdpb18CrMPyujxHW0Tqabfp/0ldFzP4z7Vg3OVL8iLfMf752wPIuuTjCzycgdl0Weq5w4WHD0kPsnHrk4mV48dt6Il3ODzNYRbVozjMcB7SsaVxzRSdogDoUEYx/lRNrPSQBrEeYnMv9kT5Fv1wC0jDLgljS2shmHdKdLtDxcxNS/FxaPE51EfSW6Nr1lTPvfiem0wd+K2hguHlDkEurFzZE+Uf1qncEW4j583nwb76c1slxR5h3TeGGq6J6rG6SbTNwQiz8I2FBAn99f1cJRUVBt3QfF5mCmOQWglFOlBH8qkZV+uXr1w6sqFf/0NnQbk+iVz6uouXbt96YK3FG3smHuW3ZinFt20+r6nhV8NH9daWkpb6PFJU28jaTs6kTP7wz4xrHriYYsv7pFna19oFTRRwS6oXnKFikvOtM1b49wim2EQ6+eMYwmYgswRk7MLOJCWxzhxe/s5Vko6Xel7U0j0phaAm00QI/ezZv3KeIOR5HB/ZxuOIMp+i8ljYR8asNk2BEC3DKt+I6BKr+nKDWjf8DHTzS2gm5i1bzROhPFeThNjiqVnDC9shEHjLErjagYztmnny0kz+Y/zZZgjqKgjuLtlMF4j5EONMEJ1jIAyCNRAvhQcAY54cIQQCKoO/MsXWSK8RVkXR3jmCeP5QhnGYaAM8iGuloEazzcEK/HGEccMJYdaIyvMXdNRI48QkDiPEPBtScWkIuboyMdZd6GIzBPFLNnkEsjLkGhT8n1FhcMiFUEAWXbkWnL9geJRzsJch5xX6nCGC8XcGkOhrSJ/Yo9k9Ug2Q/OkZqUgJ2R3j3FdtuidJwO1bl+NSynJrk2Wx3ODxV6Lx2MszbYmY0PlvOxQgbMsz+fMcjsNhaFgnVLamD8kWIUKowEMcpYMTtc1726SsrJHubPUPIMh35rbHBTyLaPrvEaDx1BTWyY4Suoryk2CRxr6LcH9L0mxIMPum/zHp7LCRQaLTSyNueOq2ZdndfogS/VnNcdkVbD7so0VTtHuNNqz1ycFk5wlGLN8pc0em9VkMIH/ZsgxGBTVLDrkItvQfHOJN+AwmbPiVos9x1SgWixyvsliLXQ2O2srKt2uSqfRPKW2oNWUZcpxlIcWz/gJ7X+mPOeWEa3DSgqiLXK2Uc01Fxepdq9FrjMWZEuWxpGjyzplh8mpcBm6V3SrC6SMDfJbPH6Az/t+fcMNv75BFAdfpJM38Ougv7SfJLO79DJUxzlvIF9rYq84YK/BGwNbKyRqArEXUb8vwd6REnwvC+ORa/BYA+lLcDtOIr3PJXD+wqL1PAfbACpILRmmf6+sey4hJ/Po3y2nv5YxIWOLDYd0VHl6wUtpYodI08i/Ru4njWOZLtwYuPqmrh083KfvRQrJtMPI2LXeB5jc6NIkn3fdGIZ8oY5WB7WP29H1gHftWIyw87QHMoRZGdAtzv/2PS1LMps7me+4gejSpI8wBV5EAU55jMhAgmlOeFCSCQHnYXqY41ucY4BGcvX9EKOIOjEEWyS+Y+rzBiEaDCj5oDBfLodubiyDcyYaAp9igf/0+8EP3MtP/G0M2xGjBxPOTv9Ef5c/X9Dy/RjKdya0p6KBQNSvatSBtDPX3xWAclG2jZu+8QyNTkx2xaBNSzjzMbH+VheGOp2J1L/wJX+UkMHfEo4mE0k7mUeW8D2jtE9gC8SZU6DHNBDDfGzZ8A6KiHLlf2C0mdUHrxlQH/D8ueCqDgx1Mpoe9rGN/Sjx0kG2m5MOMiealD4N+tJq2vmX+fq484nwAJKqD9L3Y9Z5wZeMPpCeJ3j7wJ5TkJk2OJPoB6f2pMXKmeQgZTiZmTsC9skpNaH08v00ou/Lh42CiGzXwbZHM2tWfsS3plXMFmh3v84k6fH/Hsc9A/Cnb0TJPdEWoe+kwGcPqoOzerYxkxi7F36W3sETYBWuqZ/imvLwvRYH9w6Iu8BhYh7XgzrZFrb5TC2Q6WaZ3rGMPkCX0AeW3TH2lR5NS/edpvW8Qn+kd9OROY/+9s1H5rRdYoF/aQ+c64UHNJptWSqm0o0W0nOCkMk4H3SLVyX75tdcCqytwyESZFt85UFlIMIcDwR9ujUsEg+YeC3xoUtwtwjML47dFah2m98bCOreoI48QeWbBG/neucuCkQC18+lX+28h/5rzg14s3iOJ+9t9rS39D68XfrY5yB9/thSDO4qSWk7U8Pn/mNT5+M/aarY8mu+qTCybRnt38rzS5x49MpbNl/52HH9bivAsgmtmGTqgiMg6HHXY1aY5fX6He0/0tmh/WLzwpXhzsTcWyZnbF3aoL1swZNGC1nTTXps3TOeInHGwMaQMgSAAQ7AuI09bPJWAclCLcHqUO3EIb9+371H6eX0SfrXV1cJpOv5S6D+sBgOU7LqVSiBabDt6Ocnnn+a/m06r8OrOBca+f8FUcr9zjhX5CTaGg8rAjOvBoRg2AXumDR1z5o1UyJzws/2Wr98up88/aW11/EOFB8XtTVTBDJlTXhOhJKpBYfoF0PoF1AwBAoObT50KO3TLGJLB++pySS9p3buO2pHxoLDDZ+mwWE13SeDzpxAZc6MOn1XPKTfy+gJvL+zM9+Z6T/mLsDwltnSGbHWQ6y/+TduhNfNyHbRQPTIoh//PCIKMe654JHIOroVqtahHh25Eqro1nXHhMdT77yTOpE68U7qHeFx+WN6zx/onvffh4V/EFENodekboRb6DrhGrgx8917poyMP4SnGFCFH5TJsWOo7g96Mb0ZN7h++YPfFnklL8zjWKaK386MVrD6wbK07x7X1ezI8CuZ/cmIs4vtZnOc9nBvczbv1EAQYZk9hfq43cFs1gof036udnWxweCBueOHzLphj77r20f0O8q4MQcyLpaBpP/TkKZrF3Xq8ZSH4cLv9arJBLLoO7029Z3hgId9i8x2j+3hWJhv3NnjulJSnv5M2Wp31PNHkqPebhl4xp+EM0/s4njohol/27r1b3Q/vZ3uZyGxy+LKN+bn/Z3+NXb1xNEmk6nI6cz95SU//uKiXK2kPLiJPvPIuFunjA6HyhSn0vPLn0OgK8epuWrCd9Dr3+l7JBEO5Lvlx359GGZfXaRqg7OGiby4s8vykRcX5qlbTWaTIbvYbHPlOpsacj6qcTVYJ8/GEk3NJZGs3GDbqFxwRvxh57xZYduYQDg3MCWZc15fidybtIjNdh//TwL4ZrzoyzARWxxn7y6hZFffxcpwWk3v/+yvlChLzpyFiz+Fx+THaDUcYwccP/s8HcUIiPR6apQ45+yOY8c4DqVtSen95cHaJhPPusJznmcmV3XYyuQx/Pz/AAfdhq542o2QsWrDMBCGfyVOSjOUDn4AdSlJiY1sMCTZ0hQHQqcM6RyMahsSKVj2EChd+wgd+wZ9s7xDz4pKl0IrkO7T3a+73wZwhU8wnNcNHhwzDPDiuIMLvDvu4hYnxx4G7M5xD9fsyXGf8q+kZN4l3e7tq5YZfDw77tDcN8ddPOLDsQef+Y574Cxx3Kd8gQU0DjiiQokcBWpwDJFhRDGGQIQEY+IV6SQU0RwGezR0GpvBQh+OVZkXNR9mIx6LKBnzlZaKz82+MUaSZGmV0k7JqJOit1hKJasy04p4TcWcmu6wJRHWMm92W4LUimsbK1JIayskYxwz2r81PlciTBBgSvv7M5BqVae6yiWPQ8Fn/McAXaJJMA1a8/9wu7FFQ2Vtf4mwE0IbW2fYyMqUWnEholAIwf/u+QXtVlqxAAAAeNpt0meTFVUUheH7DhkJEgQJgpIFhdvn7NM9gxKGCZKzKGZyUHJGySAgSq7i5wrFfYdPdFXX+tRP9V61Wl2tt8//rdbh1vueV29eWl2tYXQxjOGMYCSjGM0YxvIB4xjPBCbyIZOYzBSm8hHTmM7HzGAms5jNJ8xhLp/yGfOYzwIWsojFLOFzlrKML/iS5aygTUUiExRqGrrpYSVf8TWrWM0a1tLLOvroZ4BBvmE9G9jIJjazha1sYzs72MkudvMte/iO79nLD/zIT/zML/zKb+xjPwc4yCEOc4SjHOM4v/MHJzjJKU5zhrOc4zwXuMglLnOFq/zJX1zjOje4yS1uc4e73ONv7vOAh/zDI/7lPx7zhKc84zkveDnqwsljg1W7bVZmMrMZZjFrszG7zZ63mfSSXtJLekkv6SW9pJf00pBX6VV6lV6lV+lVepVepVfpVXpJL+klvaSX9JJe6njZu7J3Ze/K3pW9K3tXbg9915id/wid0Amd0Amd0Amd0Il3TueesJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn0h6SS/pZb2sl/WyXtbLelkv62W9rBd6oRd6oRd6oRd6oRd6oVf0il7RK3pFr+gVvaJX9IperVfr1Xq1Xq1X69V6tV6tV+s1eo1eo9foNXqNXtPxijsr7qy4s+LOijsr7qy0h75rzG6zx+w115l9Zr85YA520l0Wd1ncZXGXxV0Wd1ncZama1x+EcTsAAAAB//8AAnjaY2BgYGQAgosrjpwF0ZcUq9bCaABTzgdAAAA=") format("woff"),
        url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf) format("truetype"),
        url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg#Genericons) format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Genericons";
        src: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg#Genericons) format("svg");
    }
}


/**
 * All Genericons
 */

.genericon {
    font-size: 16px;
    vertical-align: top;
    text-align: center;
    -moz-transition: color .1s ease-in 0;
    -webkit-transition: color .1s ease-in 0;
    display: inline-block;
    font-family: "Genericons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    speak: none;
}


/**
 * Helper classes
 */

.genericon-rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.genericon-rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.genericon-rotate-270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.genericon-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.genericon-flip-vertical {
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
}


/**
 * Individual icons
 */

.genericon-404:before {
    content: "\f423";
}

.genericon-activity:before {
    content: "\f508";
}

.genericon-anchor:before {
    content: "\f509";
}

.genericon-aside:before {
    content: "\f101";
}

.genericon-attachment:before {
    content: "\f416";
}

.genericon-audio:before {
    content: "\f109";
}

.genericon-bold:before {
    content: "\f471";
}

.genericon-book:before {
    content: "\f444";
}

.genericon-bug:before {
    content: "\f50a";
}

.genericon-cart:before {
    content: "\f447";
}

.genericon-category:before {
    content: "\f301";
}

.genericon-chat:before {
    content: "\f108";
}

.genericon-checkmark:before {
    content: "\f418";
}

.genericon-close:before {
    content: "\f405";
}

.genericon-close-alt:before {
    content: "\f406";
}

.genericon-cloud:before {
    content: "\f426";
}

.genericon-cloud-download:before {
    content: "\f440";
}

.genericon-cloud-upload:before {
    content: "\f441";
}

.genericon-code:before {
    content: "\f462";
}

.genericon-codepen:before {
    content: "\f216";
}

.genericon-cog:before {
    content: "\f445";
}

.genericon-collapse:before {
    content: "\f432";
}

.genericon-comment:before {
    content: "\f300";
}

.genericon-day:before {
    content: "\f305";
}

.genericon-digg:before {
    content: "\f221";
}

.genericon-document:before {
    content: "\f443";
}

.genericon-dot:before {
    content: "\f428";
}

.genericon-downarrow:before {
    content: "\f502";
}

.genericon-download:before {
    content: "\f50b";
}

.genericon-draggable:before {
    content: "\f436";
}

.genericon-dribbble:before {
    content: "\f201";
}

.genericon-dropbox:before {
    content: "\f225";
}

.genericon-dropdown:before {
    content: "\f433";
}

.genericon-dropdown-left:before {
    content: "\f434";
}

.genericon-edit:before {
    content: "\f411";
}

.genericon-ellipsis:before {
    content: "\f476";
}

.genericon-expand:before {
    content: "\f431";
}

.genericon-external:before {
    content: "\f442";
}

.genericon-facebook:before {
    content: "\f203";
}

.genericon-facebook-alt:before {
    content: "\f204";
}

.genericon-fastforward:before {
    content: "\f458";
}

.genericon-feed:before {
    content: "\f413";
}

.genericon-flag:before {
    content: "\f468";
}

.genericon-flickr:before {
    content: "\f211";
}

.genericon-foursquare:before {
    content: "\f226";
}

.genericon-fullscreen:before {
    content: "\f474";
}

.genericon-gallery:before {
    content: "\f103";
}

.genericon-github:before {
    content: "\f200";
}

.genericon-googleplus:before {
    content: "\f206";
}

.genericon-googleplus-alt:before {
    content: "\f218";
}

.genericon-handset:before {
    content: "\f50c";
}

.genericon-heart:before {
    content: "\f461";
}

.genericon-help:before {
    content: "\f457";
}

.genericon-hide:before {
    content: "\f404";
}

.genericon-hierarchy:before {
    content: "\f505";
}

.genericon-home:before {
    content: "\f409";
}

.genericon-image:before {
    content: "\f102";
}

.genericon-info:before {
    content: "\f455";
}

.genericon-instagram:before {
    content: "\f215";
}

.genericon-italic:before {
    content: "\f472";
}

.genericon-key:before {
    content: "\f427";
}

.genericon-leftarrow:before {
    content: "\f503";
}

.genericon-link:before {
    content: "\f107";
}

.genericon-linkedin:before {
    content: "\f207";
}

.genericon-linkedin-alt:before {
    content: "\f208";
}

.genericon-location:before {
    content: "\f417";
}

.genericon-lock:before {
    content: "\f470";
}

.genericon-mail:before {
    content: "\f410";
}

.genericon-maximize:before {
    content: "\f422";
}

.genericon-menu:before {
    content: "\f419";
}

.genericon-microphone:before {
    content: "\f50d";
}

.genericon-minimize:before {
    content: "\f421";
}

.genericon-minus:before {
    content: "\f50e";
}

.genericon-month:before {
    content: "\f307";
}

.genericon-move:before {
    content: "\f50f";
}

.genericon-next:before {
    content: "\f429";
}

.genericon-notice:before {
    content: "\f456";
}

.genericon-paintbrush:before {
    content: "\f506";
}

.genericon-path:before {
    content: "\f219";
}

.genericon-pause:before {
    content: "\f448";
}

.genericon-phone:before {
    content: "\f437";
}

.genericon-picture:before {
    content: "\f473";
}

.genericon-pinned:before {
    content: "\f308";
}

.genericon-pinterest:before {
    content: "\f209";
}

.genericon-pinterest-alt:before {
    content: "\f210";
}

.genericon-play:before {
    content: "\f452";
}

.genericon-plugin:before {
    content: "\f439";
}

.genericon-plus:before {
    content: "\f510";
}

.genericon-pocket:before {
    content: "\f224";
}

.genericon-polldaddy:before {
    content: "\f217";
}

.genericon-portfolio:before {
    content: "\f460";
}

.genericon-previous:before {
    content: "\f430";
}

.genericon-print:before {
    content: "\f469";
}

.genericon-quote:before {
    content: "\f106";
}

.genericon-rating-empty:before {
    content: "\f511";
}

.genericon-rating-full:before {
    content: "\f512";
}

.genericon-rating-half:before {
    content: "\f513";
}

.genericon-reddit:before {
    content: "\f222";
}

.genericon-refresh:before {
    content: "\f420";
}

.genericon-reply:before {
    content: "\f412";
}

.genericon-reply-alt:before {
    content: "\f466";
}

.genericon-reply-single:before {
    content: "\f467";
}

.genericon-rewind:before {
    content: "\f459";
}

.genericon-rightarrow:before {
    content: "\f501";
}

.genericon-search:before {
    content: "\f400";
}

.genericon-send-to-phone:before {
    content: "\f438";
}

.genericon-send-to-tablet:before {
    content: "\f454";
}

.genericon-share:before {
    content: "\f415";
}

.genericon-show:before {
    content: "\f403";
}

.genericon-shuffle:before {
    content: "\f514";
}

.genericon-sitemap:before {
    content: "\f507";
}

.genericon-skip-ahead:before {
    content: "\f451";
}

.genericon-skip-back:before {
    content: "\f450";
}

.genericon-skype:before {
    content: "\f220";
}

.genericon-spam:before {
    content: "\f424";
}

.genericon-spotify:before {
    content: "\f515";
}

.genericon-standard:before {
    content: "\f100";
}

.genericon-star:before {
    content: "\f408";
}

.genericon-status:before {
    content: "\f105";
}

.genericon-stop:before {
    content: "\f449";
}

.genericon-stumbleupon:before {
    content: "\f223";
}

.genericon-subscribe:before {
    content: "\f463";
}

.genericon-subscribed:before {
    content: "\f465";
}

.genericon-summary:before {
    content: "\f425";
}

.genericon-tablet:before {
    content: "\f453";
}

.genericon-tag:before {
    content: "\f302";
}

.genericon-time:before {
    content: "\f303";
}

.genericon-top:before {
    content: "\f435";
}

.genericon-trash:before {
    content: "\f407";
}

.genericon-tumblr:before {
    content: "\f214";
}

.genericon-twitch:before {
    content: "\f516";
}

.genericon-twitter:before {
    content: "\f202";
}

.genericon-unapprove:before {
    content: "\f446";
}

.genericon-unsubscribe:before {
    content: "\f464";
}

.genericon-unzoom:before {
    content: "\f401";
}

.genericon-uparrow:before {
    content: "\f500";
}

.genericon-user:before {
    content: "\f304";
}

.genericon-video:before {
    content: "\f104";
}

.genericon-videocamera:before {
    content: "\f517";
}

.genericon-vimeo:before {
    content: "\f212";
}

.genericon-warning:before {
    content: "\f414";
}

.genericon-website:before {
    content: "\f475";
}

.genericon-week:before {
    content: "\f306";
}

.genericon-wordpress:before {
    content: "\f205";
}

.genericon-xpost:before {
    content: "\f504";
}

.genericon-youtube:before {
    content: "\f213";
}

.genericon-zoom:before {
    content: "\f402";
}




#subscribe-email input {
    width: 95%;
}

.comment-subscription-form {
    margin-bottom: 1em;
}

.comment-subscription-form .subscribe-label {
    display: inline !important;
}

/*
Text meant only for screen readers.
Provides support for themes that do not bundle this CSS yet.
@see https://make.wordpress.org/accessibility/2015/02/09/hiding-text-for-screen-readers-with-wordpress-core/
***********************************/
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute ! important;
    width: 1px;
    word-wrap: normal ! important;
}

.widget_eu_cookie_law_widget {
    animation: fadeIn 800ms;
    border: none;
    bottom: 1em;
    left: 1em;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 1em;
    width: auto;
    z-index: 50001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.widget_eu_cookie_law_widget.widget.top {
    bottom: auto;
    top: 1em;
}

.admin-bar .widget_eu_cookie_law_widget.widget.top {
    top: 3em;
}

amp-consent.widget_eu_cookie_law_widget.widget.top {
    top: 1em;
    margin: 0;
}

.admin-bar amp-consent.widget_eu_cookie_law_widget.widget.top {
    top: 0;
    margin-top: 3em;
}

#eu-cookie-law {
    background-color: #fff;
    border: 1px solid #dedede;
    color: #2e4467;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
    padding: 6px 6px 6px 15px;
    position: relative;
}

#eu-cookie-law a,
#eu-cookie-law a:active,
#eu-cookie-law a:visited {
    color: inherit;
    cursor: inherit;
    text-decoration: underline;
}

#eu-cookie-law a:hover {
    cursor: pointer;
    text-decoration: none;
}

#eu-cookie-law.negative {
    background-color: #000;
    border: none;
    color: #fff;
}

#eu-cookie-law.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms, visibility 400ms;
}

/**
 * Using a highly-specific rule to make sure that certain form styles
 * will be reset
 */
#eu-cookie-law form {
    margin-bottom: 0;
    position: static;
}

/**
 * Using a highly-specific rule to make sure that all button styles
 * will be reset
 */
#eu-cookie-law input,
#eu-cookie-law input:hover,
#eu-cookie-law input:focus {
    background: #f3f3f3;
    border: 1px solid #dedede;
    border-radius: 4px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #2e4453;
    cursor: pointer;
    display: inline;
    float: right;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    line-height: inherit;
    margin: 0 0 0 5%;
    padding: 8px 12px;
    position: static;
    text-transform: none;
}

#eu-cookie-law.negative input,
#eu-cookie-law.negative input:hover,
#eu-cookie-law.negative input:focus {
    background: #282828;
    border-color: #535353;
    color: #fff;
}

@media (max-width: 600px) {
    #eu-cookie-law {
        padding-bottom: 55px;
    }

    #eu-cookie-law input.accept {
        bottom: 8px;
        position: absolute;
        right: 8px;
    }
}

/**
 * Tweak position of the Customizer edit button to make it more obvious this
 * is an editable widget rather than a normal accept cookies banner.
 */
.widget_eu_cookie_law_widget .customize-partial-edit-shortcut>button {
    left: 0;
}

.wpcom-instagram-images {
    display: grid;
    grid-gap: 0.5rem;
    grid-auto-columns: 1fr;
}

.wpcom-instagram-images:before,
.wpcom-instagram-images:after {
    content: none;
}

.wpcom-instagram-images a {
    display: block;
    margin: 4px 2px;
}

.wpcom-instagram-columns-2 a,
.wpcom-instagram-columns-3 a {
    display: inline-block;
    vertical-align: top;
}

.wpcom-instagram-columns-2 a {
    width: calc(50% - 8px);
}

.wpcom-instagram-columns-3 a {
    width: calc(33.3333% - 8px);
}

.wpcom-instagram-images .sq-bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.wpcom-instagram-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wpcom-instagram-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

@supports (display:grid) {
    .wpcom-instagram-images a {
        display: block;
        margin: 0;
    }

    .wpcom-instagram-columns-2 a,
    .wpcom-instagram-columns-3 a {
        width: auto;
    }
}

.jetpack_widget_social_icons ul,
.jetpack_widget_social_icons li {
    list-style: none;
}

.jetpack_widget_social_icons ul {
    display: block;
    margin: 0 0 1.5em;
    padding: 0;
}

.jetpack_widget_social_icons ul li {
    border: 0;
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.jetpack_widget_social_icons ul li:before,
.jetpack_widget_social_icons ul li:after {
    display: none;
}

.jetpack_widget_social_icons a {
    border: 0;
    box-shadow: none;
    display: block;
    height: 24px;
    text-decoration: none;
    width: 24px;
}

.jetpack_widget_social_icons svg {
    color: inherit;
    fill: currentColor;
    height: inherit;
    vertical-align: middle;
    width: inherit;
}

/* Sizes */

.jetpack_widget_social_icons ul.size-small a {
    height: 24px;
    width: 24px;
}

.jetpack_widget_social_icons ul.size-medium a {
    height: 32px;
    width: 32px;
}

.jetpack_widget_social_icons ul.size-large a {
    height: 48px;
    width: 48px;
}

/*
Text meant only for screen readers.
Provides support for themes that do not bundle this CSS yet.
@see https://make.wordpress.org/accessibility/2015/02/09/hiding-text-for-screen-readers-with-wordpress-core/
***********************************/
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute ! important;
    width: 1px;
    word-wrap: normal ! important;
}

@charset "UTF-8";

@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") format("woff")
}

:root {
    --swiper-theme-color: #007aff
}

.jp-carousel-overlay .swiper-container {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-wrapper {
    flex-direction: column
}

.jp-carousel-overlay .swiper-wrapper {
    box-sizing: initial;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1
}

.jp-carousel-overlay .swiper-container-android .swiper-slide,
.jp-carousel-overlay .swiper-wrapper {
    transform: translateZ(0)
}

.jp-carousel-overlay .swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap
}

.jp-carousel-overlay .swiper-container-multirow-column>.swiper-wrapper {
    flex-direction: column;
    flex-wrap: wrap
}

.jp-carousel-overlay .swiper-container-free-mode>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out
}

.jp-carousel-overlay .swiper-container-pointer-events {
    touch-action: pan-y
}

.jp-carousel-overlay .swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x
}

.jp-carousel-overlay .swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.jp-carousel-overlay .swiper-slide-invisible-blank {
    visibility: hidden
}

.jp-carousel-overlay .swiper-container-autoheight,
.jp-carousel-overlay .swiper-container-autoheight .swiper-slide {
    height: auto
}

.jp-carousel-overlay .swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.jp-carousel-overlay .swiper-container-3d {
    perspective: 1200px
}

.jp-carousel-overlay .swiper-container-3d .swiper-cube-shadow,
.jp-carousel-overlay .swiper-container-3d .swiper-slide,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, #00000080, #0000)
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, #00000080, #0000)
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, #00000080, #0000)
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, #00000080, #0000)
}

.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.jp-carousel-overlay .swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.jp-carousel-overlay .swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-button-prev {
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

.jp-carousel-overlay .swiper-button-next.swiper-button-disabled,
.jp-carousel-overlay .swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    text-transform: none
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
    left: auto;
    right: 10px
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.jp-carousel-overlay .swiper-button-next.swiper-button-white,
.jp-carousel-overlay .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.jp-carousel-overlay .swiper-button-next.swiper-button-black,
.jp-carousel-overlay .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.jp-carousel-overlay .swiper-button-lock {
    display: none
}

.jp-carousel-overlay .swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.jp-carousel-overlay .swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets,
.jp-carousel-overlay .swiper-pagination-custom,
.jp-carousel-overlay .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.jp-carousel-overlay .swiper-pagination-bullet {
    background: #000;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    opacity: .2;
    width: 8px
}

.jp-carousel-overlay button.swiper-pagination-bullet {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.jp-carousel-overlay .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.jp-carousel-overlay .swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: 1
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.jp-carousel-overlay .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.jp-carousel-overlay .swiper-pagination-progressbar {
    background: #00000040;
    position: absolute
}

.jp-carousel-overlay .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    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%
}

.jp-carousel-overlay .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar,
.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%
}

.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px
}

.jp-carousel-overlay .swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.jp-carousel-overlay .swiper-pagination-black {
    --swiper-pagination-color: #000
}

.jp-carousel-overlay .swiper-pagination-lock {
    display: none
}

.jp-carousel-overlay .swiper-zoom-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.jp-carousel-overlay .swiper-zoom-container>canvas,
.jp-carousel-overlay .swiper-zoom-container>img,
.jp-carousel-overlay .swiper-zoom-container>svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain
}

.jp-carousel-overlay .swiper-slide-zoomed {
    cursor: move
}

.jp-carousel-overlay .swiper-container .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

:root {
    --jp-carousel-primary-color: #fff;
    --jp-carousel-primary-subtle-color: #999;
    --jp-carousel-bg-color: #000;
    --jp-carousel-bg-faded-color: #222;
    --jp-carousel-border-color: #3a3a3a
}

:root .jp-carousel-light {
    --jp-carousel-primary-color: #000;
    --jp-carousel-primary-subtle-color: #646970;
    --jp-carousel-bg-color: #fff;
    --jp-carousel-bg-faded-color: #fbfbfb;
    --jp-carousel-border-color: #dcdcde
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
    background-image: none
}

[data-carousel-extra]:not(.jp-carousel-wrap) img,
[data-carousel-extra]:not(.jp-carousel-wrap) img+figcaption {
    cursor: pointer
}

.jp-carousel-wrap * {
    line-height: inherit
}

.jp-carousel-wrap.swiper-container {
    height: auto;
    width: 100vw
}

.jp-carousel-overlay .swiper-zoom-container {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 200%
}

.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img,
.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img {
    transition: none !important
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-button-prev {
    background-image: none;
    height: auto;
    opacity: .5;
    padding: 20px 40px;
    transition: opacity .5s ease-out;
    width: auto
}

.jp-carousel-overlay .swiper-button-next:hover,
.jp-carousel-overlay .swiper-button-prev:hover {
    opacity: 1
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
    content: none
}

.jp-carousel-overlay .swiper-button-next svg,
.jp-carousel-overlay .swiper-button-prev svg {
    background: var(--jp-carousel-bg-color);
    border-radius: 4px;
    height: 30px;
    width: 28px
}

.jp-carousel-overlay .swiper-button-next svg:hover,
.jp-carousel-overlay .swiper-button-prev svg:hover {
    background: var(--jp-carousel-primary-subtle-color)
}

.jp-carousel-overlay {
    background: var(--jp-carousel-bg-color);
    bottom: 0;
    direction: ltr;
    font-family: Helvetica Neue, sans-serif !important;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647
}

.jp-carousel-overlay * {
    box-sizing: border-box
}

.jp-carousel-overlay h1:before,
.jp-carousel-overlay h2:before,
.jp-carousel-overlay h3:before {
    content: none;
    display: none
}

.jp-carousel-overlay .swiper-container .swiper-button-prev {
    left: 0;
    right: auto
}

.jp-carousel-overlay .swiper-container .swiper-button-next {
    left: auto;
    right: 0
}

.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-prev {
    transform: scaleX(-1)
}

.jp-carousel-container {
    display: grid;
    grid-template-rows: 1fr 64px;
    height: 100%
}

.jp-carousel-hide-controls .jp-carousel-container {
    grid-template-rows: 1fr
}

.jp-carousel-hide-controls .swiper-wrapper {
    margin-top: -32px
}

.jp-carousel-hide-controls .jp-swiper-button-next,
.jp-carousel-hide-controls .jp-swiper-button-prev {
    margin-top: -54px
}

.jp-carousel-msg {
    background-color: var(--jp-carousel-primary-color);
    border-left: 4px solid #ffba00;
    box-shadow: 0 1px 1px 0 #0000001a;
    display: inline-block;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 19px;
    margin: 25px 20px 0 2px;
    padding: 11px 15px;
    text-align: center
}

.jp-carousel-info {
    display: flex;
    flex-direction: column;
    text-align: left !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    background-color: var(--jp-carousel-bg-color);
    opacity: 1;
    transition: opacity .2s ease-out;
    z-index: 100
}

.jp-carousel-hide-controls .jp-carousel-info {
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.jp-carousel-info-footer {
    align-items: center;
    display: flex;
    height: 64px;
    justify-content: space-between;
    position: relative
}

.jp-carousel-info-extra,
.jp-carousel-info-footer {
    background-color: var(--jp-carousel-bg-color);
    width: 100vw
}

.jp-carousel-info-extra {
    border-top: 1px solid var(--jp-carousel-bg-faded-color);
    display: none;
    padding: 35px
}

.jp-carousel-title-and-caption {
    margin-bottom: 15px
}

.jp-carousel-info-extra.jp-carousel-show {
    display: block
}

.jp-carousel-info ::selection {
    background: var(--jp-carousel-primary-color);
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-info ::-moz-selection {
    background: var(--jp-carousel-primary-color);
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-photo-info {
    left: 0 !important;
    width: 100% !important
}

.jp-carousel-comments-wrapper {
    display: none;
    padding: 0;
    width: 100% !important
}

.jp-carousel-comments-wrapper.jp-carousel-show {
    display: block
}

.jp-carousel-comments-wrapper>.jp-carousel-photo-info {
    display: none
}

.jp-carousel-transitions .jp-carousel-photo-info {
    transition: .4s ease-out
}

.jp-carousel-buttons {
    background: #222;
    border-bottom: 1px solid #222;
    margin: -18px -20px 15px;
    padding: 8px 10px;
    text-align: center
}

div.jp-carousel-buttons a {
    border: none !important;
    color: var(--jp-carousel-primary-subtle-color);
    font: normal 11px/1.2em Helvetica Neue, sans-serif !important;
    letter-spacing: 0 !important;
    padding: 5px 2px 5px 0;
    text-decoration: none !important;
    text-shadow: none !important;
    vertical-align: middle;
    -webkit-font-smoothing: subpixel-antialiased
}

div.jp-carousel-buttons a:hover {
    border: none !important;
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
    transition: none !important
}

.jp-carousel-slide,
.jp-carousel-slide img {
    transform: translateZ(0)
}

.jp-carousel-close-hint {
    color: var(--jp-carousel-primary-color);
    cursor: default;
    cursor: pointer;
    height: 45px;
    letter-spacing: 0 !important;
    padding: 10px;
    position: fixed;
    right: 30px;
    text-align: right;
    top: 20px;
    transition: opacity .2s ease-out;
    width: 45px;
    z-index: 15
}

.jp-carousel-transitions .jp-carousel-close-hint {
    transition: color .2s linear
}

.jp-carousel-close-hint svg {
    background: var(--jp-carousel-bg-color);
    border-radius: 4px;
    padding: 3px 2px
}

.jp-carousel-close-hint svg:hover {
    background: var(--jp-carousel-primary-subtle-color)
}

.jp-carousel-close-hint:hover {
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-close-hint:hover span {
    border-color: var(--jp-carousel-primary-color)
}

.jp-carousel-pagination-container {
    flex: 1;
    margin: 0 15px 0 35px
}

.jp-carousel-pagination,
.jp-swiper-pagination {
    color: var(--jp-carousel-primary-color);
    display: none;
    font-size: 15px;
    font-weight: 400;
    position: static !important;
    white-space: nowrap
}

.jp-carousel-pagination-container .swiper-pagination {
    line-height: 8px;
    text-align: left
}

.jp-carousel-pagination {
    padding-left: 5px
}

.jp-swiper-pagination .swiper-pagination-bullet {
    background: var(--jp-carousel-primary-subtle-color);
    margin: 0 4px
}

.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--jp-carousel-primary-color)
}

.jp-swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: var(--jp-carousel-primary-color);
    opacity: .5
}

.jp-carousel-info-footer .jp-carousel-photo-title-container {
    flex-basis: 50vw;
    flex: 4;
    justify-content: center;
    margin: 0;
    overflow: hidden
}

.jp-carousel-photo-caption,
.jp-carousel-photo-title {
    background: none !important;
    border: none !important;
    color: var(--jp-carousel-primary-color);
    display: inline-block;
    font: normal 20px/1.3em Helvetica Neue, sans-serif;
    letter-spacing: 0 !important;
    line-height: normal;
    margin: 0 0 10px;
    overflow: hidden;
    padding: 0;
    text-shadow: none !important;
    text-transform: none !important
}

.jp-carousel-info-footer .jp-carousel-photo-caption {
    color: var(--jp-carousel-primary-subtle-color);
    cursor: pointer;
    font-size: 15px;
    margin: 0;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap
}

.jp-carousel-info-footer .jp-carousel-photo-caption p {
    margin: 0
}

.jp-carousel-photo-title {
    font-size: 32px;
    margin-bottom: 2px
}

.jp-carousel-photo-description {
    color: var(--jp-carousel-primary-subtle-color);
    font-size: 16px;
    margin: 25px 0;
    overflow: hidden;
    overflow-wrap: break-word;
    width: 100%
}

.jp-carousel-photo-description p {
    color: var(--jp-carousel-primary-subtle-color);
    line-height: 1.4;
    margin-bottom: 0
}

.jp-carousel-comments p a,
.jp-carousel-info h2 a,
.jp-carousel-photo-description p a {
    border: none !important;
    color: var(--jp-carousel-primary-color) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-decoration: underline !important
}

.jp-carousel-photo-description p b,
.jp-carousel-photo-description p strong {
    color: var(--jp-carousel-primary-subtle-color);
    font-weight: 700
}

.jp-carousel-photo-description p em,
.jp-carousel-photo-description p i {
    color: var(--jp-carousel-primary-subtle-color);
    font-style: italic
}

.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover,
.jp-carousel-photo-description p a:hover {
    color: var(--jp-carousel-primary-subtle-color) !important
}

.jp-carousel-photo-description p:empty {
    display: none
}

.jp-carousel-comments-wrapper h1:after,
.jp-carousel-comments-wrapper h1:before,
.jp-carousel-photo-info h1:after,
.jp-carousel-photo-info h1:before {
    content: none !important
}

.jp-carousel-caption {
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.jp-carousel-image-meta {
    color: var(--jp-carousel-primary-color);
    display: none;
    font-size: 13px;
    font: 12px/1.4 Helvetica Neue, sans-serif !important;
    width: 100%
}

.jp-carousel-image-meta.jp-carousel-show {
    display: block
}

.jp-carousel-image-meta h5,
.jp-carousel-image-meta li {
    background: none !important;
    border: none !important;
    bottom: auto !important;
    font-family: Helvetica Neue, sans-serif !important;
    font-weight: 400 !important;
    left: auto !important;
    line-height: 1.3em !important;
    position: inherit !important;
    right: auto !important;
    top: auto !important
}

.jp-carousel-image-meta ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important
}

.jp-carousel-image-meta li {
    color: var(--jp-carousel-primary-color) !important;
    display: inline-block !important;
    font-size: 13px !important;
    margin: 0 2% 15px 0 !important;
    vertical-align: top !important;
    width: 48% !important
}

.jp-carousel-image-meta h5 {
    color: var(--jp-carousel-primary-subtle-color) !important;
    font-size: 10px !important;
    letter-spacing: .1em !important;
    margin: 0 0 2px !important;
    text-transform: uppercase !important
}

a.jp-carousel-image-download {
    clear: both;
    color: var(--jp-carousel-primary-subtle-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none
}

a.jp-carousel-image-download svg {
    display: inline-block;
    margin: 0 3px;
    padding-bottom: 2px;
    vertical-align: middle
}

a.jp-carousel-image-download span.photo-size {
    border-radius: 1em;
    display: inline-block;
    font-size: 11px;
    margin-left: 2px
}

a.jp-carousel-image-download span.photo-size-times {
    padding: 0 1px 0 2px
}

.jp-carousel-comments {
    background: none #0000;
    bottom: 10px;
    font: 15px/1.7 Helvetica Neue, sans-serif !important;
    font-weight: 400;
    margin-top: 20px;
    width: 100%
}

.jp-carousel-comments p a:active,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:hover {
    color: var(--jp-carousel-primary-color) !important
}

.jp-carousel-comment {
    background: none #0000;
    color: var(--jp-carousel-primary-subtle-color);
    display: flex;
    overflow: auto;
    width: 100%
}

.jp-carousel-comment+.jp-carousel-comment {
    margin-top: 20px
}

.jp-carousel-comment:last-of-type {
    margin-bottom: 20px
}

.jp-carousel-comment p {
    color: var(--jp-carousel-primary-subtle-color) !important
}

.jp-carousel-comment .comment-author {
    border: none;
    display: inline;
    float: none;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: auto
}

.jp-carousel-comment .comment-author a {
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-comment .comment-gravatar {
    float: none;
    margin-right: 10px
}

.jp-carousel-comment .comment-content {
    border: none;
    padding: 0
}

.jp-carousel-comment .avatar {
    background-color: initial !important;
    border: none !important;
    border-radius: 4px;
    height: 64px;
    margin: 0;
    min-height: 64px;
    min-width: 64px;
    padding: 0 !important;
    width: 64px
}

.jp-carousel-comment .comment-date {
    border-bottom: 1px solid var(--jp-carousel-bg-faded-color);
    color: var(--jp-carousel-primary-subtle-color);
    font-size: 11px;
    margin-bottom: 6px
}

#jp-carousel-comment-form {
    margin: 0 0 10px !important;
    width: 100%
}

#jp-carousel-comment-form.jp-carousel-is-disabled {
    opacity: .5;
    pointer-events: none
}

textarea#jp-carousel-comment-form-comment-field {
    background: var(--jp-carousel-bg-faded-color);
    border: 1px solid var(--jp-carousel-border-color);
    border-radius: 3px;
    box-shadow: inset 2px 2px 2px #0000001a;
    box-sizing: border-box;
    color: var(--jp-carousel-primary-subtle-color);
    float: none;
    font: 16px/1.4 Helvetica Neue, sans-serif !important;
    height: 147px;
    margin: 0;
    overflow: hidden;
    padding: 10px 10px 5px;
    width: 100%
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
    color: #555
}

textarea#jp-carousel-comment-form-comment-field:focus {
    background: var(--jp-carousel-bg-faded-color);
    color: var(--jp-carousel-primary-subtle-color)
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
    color: var(--jp-carousel-primary-subtle-color)
}

#jp-carousel-loading-overlay {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

#jp-carousel-loading-wrapper {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100vw
}

#jp-carousel-library-loading,
#jp-carousel-library-loading:after {
    border-radius: 50%;
    height: 40px;
    width: 40px
}

#jp-carousel-library-loading {
    animation: load8 1.1s linear infinite;
    border: 8px solid #fff3;
    border-left: 8px solid var(--jp-carousel-primary-color);
    float: left;
    font-size: 10px;
    margin: 22px 0 0 10px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0)
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner:after {
    border-radius: 50%;
    height: 20px;
    width: 20px
}

#jp-carousel-comment-form-spinner {
    animation: load8 1.1s linear infinite;
    border: 4px solid #fff3;
    border-left: 4px solid var(--jp-carousel-primary-color);
    bottom: 0;
    display: none;
    float: left;
    font-size: 10px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-indent: -9999em;
    top: calc(50% - 15px);
    transform: translateZ(0)
}

@keyframes load8 {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.jp-carousel-info-content-wrapper {
    margin: auto;
    max-width: 800px
}

#jp-carousel-comment-form-submit-and-info-wrapper {
    display: none;
    overflow: hidden;
    width: 100%
}

#jp-carousel-comment-form-commenting-as input {
    background: var(--jp-carousel-bg-color);
    border: 1px solid var(--jp-carousel-border-color);
    border-radius: 2px;
    box-shadow: inset 2px 2px 2px #0003;
    color: var(--jp-carousel-primary-subtle-color);
    float: left;
    font: 16px/1.4 Helvetica Neue, sans-serif !important;
    padding: 10px;
    width: 285px
}

#jp-carousel-comment-form-commenting-as input:focus {
    background: var(--jp-carousel-bg-faded-color);
    color: var(--jp-carousel-primary-subtle-color)
}

#jp-carousel-comment-form-commenting-as p {
    float: left;
    font: 400 13px/1.7 Helvetica Neue, sans-serif !important;
    margin: 22px 0 0
}

#jp-carousel-comment-form-commenting-as fieldset {
    border: none;
    clear: both;
    float: left;
    margin: 20px 0 0;
    padding: 0
}

#jp-carousel-comment-form-commenting-as label {
    float: left;
    font: 400 13px/1.7 Helvetica Neue, sans-serif !important;
    margin: 0 20px 3px 0;
    width: 100px
}

#jp-carousel-comment-form-button-submit {
    background: var(--jp-carousel-bg-color);
    border: 1px solid var(--jp-carousel-primary-color);
    border-radius: 3px;
    color: var(--jp-carousel-primary-color);
    display: block;
    font-size: 14px;
    margin-left: auto;
    margin-top: 20px;
    padding: 8px 16px
}

#jp-carousel-comment-form-button-submit:active,
#jp-carousel-comment-form-button-submit:focus {
    background: var(--jp-carousel-primary-color);
    color: var(--jp-carousel-bg-color)
}

#jp-carousel-comment-form-container {
    color: var(--jp-carousel-primary-subtle-color);
    margin-bottom: 15px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    width: 100%
}

#jp-carousel-comment-post-results {
    display: none;
    overflow: auto;
    width: 100%
}

#jp-carousel-comment-post-results span {
    border: 1px solid var(--jp-carousel-border-color);
    border-radius: 2px;
    box-shadow: inset 0 0 5px 0 #0003;
    box-sizing: border-box;
    display: block;
    font: 13px/1.4 Helvetica Neue, sans-serif !important;
    margin-top: 20px;
    overflow: auto;
    padding: 1em 0;
    text-align: center;
    width: 100%
}

.jp-carousel-comment-post-error {
    color: #df4926
}

#jp-carousel-comments-closed,
#jp-carousel-comments-loading {
    color: var(--jp-carousel-primary-subtle-color);
    display: none
}

#jp-carousel-comments-loading {
    bottom: 10px;
    font: 400 15px/1.7 Helvetica Neue, sans-serif !important;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: left;
    width: 100%
}

.jp-carousel-photo-icons-container {
    display: block;
    flex: 1;
    margin: 0 20px 0 30px;
    text-align: right;
    white-space: nowrap
}

.jp-carousel-icon-btn {
    background: none;
    border: none;
    display: inline-block;
    height: 64px;
    padding: 16px;
    text-decoration: none
}

.jp-carousel-icon {
    border: none;
    border-radius: 4px;
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    line-height: 0;
    padding: 4px 3px 3px;
    width: 31px
}

.jp-carousel-icon:hover {
    background: var(--jp-carousel-primary-subtle-color)
}

.jp-carousel-icon svg {
    display: inline-block
}

.jp-carousel-overlay rect {
    fill: var(--jp-carousel-primary-color)
}

.jp-carousel-selected .jp-carousel-icon {
    background: var(--jp-carousel-primary-color)
}

.jp-carousel-selected rect {
    fill: var(--jp-carousel-bg-color)
}

.jp-carousel-icon-comments.jp-carousel-show {
    display: inline-block
}

.jp-carousel-icon .jp-carousel-has-comments-indicator {
    background: var(--jp-carousel-primary-color);
    border-radius: 4px;
    color: var(--jp-carousel-bg-color);
    display: none;
    font-family: Helvetica Neue, sans-serif !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-left: -16px;
    padding: 2px 4px;
    position: relative;
    vertical-align: top
}

.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator {
    background: var(--jp-carousel-bg-color);
    color: var(--jp-carousel-primary-color)
}

.jp-carousel-has-comments-indicator.jp-carousel-show {
    display: inline-block
}

@media only screen and (max-width:760px) {

    .jp-carousel-buttons,
    .jp-carousel-overlay .swiper-container .swiper-button-next,
    .jp-carousel-overlay .swiper-container .swiper-button-prev {
        display: none !important
    }

    .jp-carousel-image-meta {
        box-sizing: border-box;
        float: none !important;
        margin-left: 0;
        width: 100% !important
    }

    .jp-carousel-close-hint {
        font-size: 26px !important;
        position: fixed !important;
        right: 10px;
        top: 10px
    }

    .admin-bar .jp-carousel-close-hint {
        top: 40px
    }

    .jp-carousel-slide img {
        opacity: 1
    }

    .jp-carousel-wrap {
        background-color: var(--jp-carousel-bg-color)
    }

    .jp-carousel-fadeaway,
    .jp-carousel-info>.jp-carousel-photo-info {
        display: none
    }

    .jp-carousel-comments-wrapper>.jp-carousel-photo-info {
        display: block
    }

    .jp-carousel-caption {
        overflow: visible !important
    }

    .jp-carousel-info-footer .jp-carousel-photo-title-container {
        display: none
    }

    .jp-carousel-photo-icons-container {
        margin: 0 10px 0 0;
        white-space: nowrap
    }

    .jp-carousel-icon-btn {
        padding-left: 20px
    }

    .jp-carousel-pagination {
        padding-left: 5px
    }

    .jp-carousel-pagination-container {
        margin-left: 25px
    }

    .jp-carousel-comment .avatar {
        min-width: 48px
    }

    #jp-carousel-comment-form-commenting-as fieldset,
    #jp-carousel-comment-form-commenting-as input {
        float: none;
        width: 100%
    }
}

:root {
    --jetpack--contact-form--border: 1px solid #8c8f94;
    --jetpack--contact-form--border-color: #8c8f94;
    --jetpack--contact-form--border-size: 1px;
    --jetpack--contact-form--border-style: solid;
    --jetpack--contact-form--border-radius: 0px;
    --jetpack--contact-form--input-padding: 16px;
    --jetpack--contact-form--font-size: 16px;
    --jetpack--contact-form--error-color: #b32d2e;
    --jetpack--contact-form--inverted-text-color: #fff
}

.contact-form .clear-form {
    clear: both
}

.contact-form input::placeholder {
    transition: opacity .3s ease-out
}

.contact-form input:hover::placeholder {
    opacity: .5
}

.contact-form input:focus::placeholder {
    opacity: .3
}

:where(.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel], .contact-form input[type=url], .contact-form textarea) {
    border: 1px solid #8c8f94;
    border-radius: 0;
    box-sizing: border-box;
    font: inherit;
    padding: 16px;
    width: 100%
}

:where(.contact-form textarea) {
    height: 200px
}

.contact-form .grunion-field {
    padding-left: max(var(--jetpack--contact-form--input-padding-left, 16px), var(--jetpack--contact-form--border-radius));
    padding-right: max(var(--jetpack--contact-form--input-padding-left, 16px), var(--jetpack--contact-form--border-radius))
}

.contact-form .grunion-field-wrap input,
.contact-form .grunion-field-wrap textarea {
    margin: 0
}

.contact-form select {
    min-width: 150px;
    padding: 14px 7px
}

.contact-form input[type=checkbox],
.contact-form input[type=radio] {
    height: 1rem;
    margin: 0 .75rem 0 0;
    width: 1rem
}

.contact-form input[type=checkbox] {
    margin-left: 0;
    top: 0
}

.contact-form label {
    display: block;
    float: none;
    font-weight: 700;
    margin-bottom: .25em
}

.contact-form label.consent {
    align-items: center;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase
}

.contact-form label.consent-implicit input {
    display: none
}

.contact-form label.checkbox {
    font-weight: 400
}

.contact-form label.checkbox-multiple,
.contact-form label.radio {
    flex: 1;
    font-weight: 400;
    margin-bottom: 0
}

.contact-form .grunion-checkbox-multiple-options,
.contact-form .grunion-radio-options {
    align-items: flex-start;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0
}

.contact-form .is-style-outlined .grunion-checkbox-multiple-options,
.contact-form .is-style-outlined .grunion-radio-options {
    border: 1px solid var(--jetpack--contact-form--border-color)
}

.contact-form .grunion-checkbox-multiple-options legend,
.contact-form .grunion-radio-options legend {
    font-weight: 700;
    margin-bottom: .25em;
    padding: 0
}

.contact-form .is-style-outlined .grunion-checkbox-multiple-options legend,
.contact-form .is-style-outlined .grunion-radio-options legend {
    font-size: .8em;
    font-weight: 300;
    margin: 0 0 -.75em;
    padding: 0 .25em
}

.contact-form .grunion-checkbox-multiple-options .contact-form-field,
.contact-form .grunion-radio-options .contact-form-field {
    align-items: baseline;
    display: flex;
    margin: 0
}

.contact-form label span.required,
.grunion-label-required {
    font-size: 85%;
    font-weight: 400;
    margin-left: .25em;
    opacity: .6
}

.contact-form-submission {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    margin-bottom: 4em;
    padding: 1.5em 1em;
    width: 100%
}

.contact-form-submission p {
    margin: 0 auto;
    word-wrap: break-word
}

.contact-form-submission h4 {
    font-weight: 200;
    margin-bottom: 32px;
    margin-top: 32px
}

.contact-form-submission .go-back-message {
    margin-bottom: 32px;
    margin-top: 20px;
    text-align: left
}

.contact-form-submission .go-back-message .link {
    color: #000;
    font-weight: 200
}

.contact-form-submission .field-name {
    font-weight: 200
}

.contact-form-submission .field-value {
    font-weight: 600;
    margin-bottom: 20px
}

.form-errors .form-error-message {
    color: var(--jetpack--contact-form--error-color)
}

.textwidget .contact-form input[type=email],
.textwidget .contact-form input[type=tel],
.textwidget .contact-form input[type=text],
.textwidget .contact-form input[type=url],
.textwidget .contact-form textarea,
.wp-block-column .contact-form input[type=email],
.wp-block-column .contact-form input[type=tel],
.wp-block-column .contact-form input[type=text],
.wp-block-column .contact-form input[type=url],
.wp-block-column .contact-form textarea {
    width: 100%
}

#jetpack-check-feedback-spam {
    margin: 1px 8px 0 0
}

.jetpack-check-feedback-spam-spinner {
    display: inline-block;
    margin-top: 7px
}

.wp-block-jetpack-contact-form {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: var(--wp--style--block-gap, 1.5rem);
    justify-content: flex-start
}

.wp-block-jetpack-contact-form>* {
    box-sizing: border-box;
    flex: 0 0 100%
}

.wp-block-jetpack-contact-form-container.alignfull .wp-block-jetpack-contact-form {
    padding-left: 0;
    padding-right: 0
}

.wp-block-jetpack-button.alignright button {
    float: right
}

.wp-block-jetpack-contact-form .grunion-field-wrap {
    box-sizing: border-box;
    position: relative
}

.wp-block-jetpack-contact-form .grunion-field-width-25-wrap {
    flex: 1 1 calc(25% - var(--wp--style--block-gap, 1.5rem)*1);
    max-width: 25%
}

.wp-block-jetpack-contact-form .grunion-field-width-50-wrap {
    flex: 1 1 calc(50% - var(--wp--style--block-gap, 1.5rem)*1);
    max-width: 50%
}

.wp-block-jetpack-contact-form .grunion-field-width-75-wrap {
    flex: 1 1 calc(75% - var(--wp--style--block-gap, 1.5rem)*1);
    max-width: 75%
}

@media only screen and (max-width:480px) {
    .wp-block-jetpack-contact-form .grunion-field-wrap {
        flex-basis: 100%;
        max-width: none
    }
}

.grunion-field-consent-wrap {
    align-self: center
}

@media only screen and (min-width:600px) {

    .contact-form input[type=email],
    .contact-form input[type=tel],
    .contact-form input[type=text],
    .contact-form input[type=url] {
        width: 50%
    }

    .wp-block-jetpack-contact-form input[type=email],
    .wp-block-jetpack-contact-form input[type=tel],
    .wp-block-jetpack-contact-form input[type=text],
    .wp-block-jetpack-contact-form input[type=url] {
        width: 100%
    }
}

.jetpack-empty-spam,
.jetpack-empty-spam-container {
    display: inline-block
}

.jetpack-empty-spam-spinner {
    display: inline-block;
    margin-top: 7px
}

.wp-block-jetpack-contact-form .wp-block-spacer {
    width: 100%
}

.contact-form .contact-form__select-wrapper {
    position: relative
}

.contact-form .contact-form__select-wrapper:after {
    border-bottom: 2px solid;
    border-right: 2px solid;
    content: "";
    display: block;
    height: 8px;
    inset-inline-end: calc(var(--jetpack--contact-form--input-padding) + 4px);
    pointer-events: none;
    position: absolute;
    top: calc(var(--jetpack--contact-form--input-padding) + var(--jetpack--contact-form--line-height)/2);
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center center;
    width: 8px
}

.contact-form .contact-form__select-wrapper select {
    appearance: none;
    background-color: var(--jetpack--contact-form--input-background);
    border: var(--jetpack--contact-form--border);
    border-color: var(--jetpack--contact-form--border-color);
    border-radius: var(--jetpack--contact-form--border-radius);
    border-style: var(--jetpack--contact-form--border-style);
    border-width: var(--jetpack--contact-form--border-size);
    box-sizing: border-box;
    color: var(--jetpack--contact-form--text-color);
    font-family: var(--jetpack--contact-form--font-family);
    font-size: var(--jetpack--contact-form--font-size);
    line-height: var(--jetpack--contact-form--line-height);
    padding: var(--jetpack--contact-form--input-padding);
    padding-inline-end: calc(var(--jetpack--contact-form--input-padding)*3);
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.contact-form .is-style-animated,
.contact-form .is-style-outlined {
    --notch-width: max(var(--jetpack--contact-form--input-padding-left, 16px), var(--jetpack--contact-form--border-radius))
}

.contact-form .is-style-animated .grunion-field-wrap:not(.grunion-field-checkbox-wrap):not(.grunion-field-consent-wrap):not(.grunion-field-checkbox-multiple-wrap):not(.grunion-field-radio-wrap):not(.grunion-field-select-wrap),
.contact-form .is-style-outlined .grunion-field-wrap:not(.grunion-field-checkbox-wrap):not(.grunion-field-consent-wrap):not(.grunion-field-checkbox-multiple-wrap):not(.grunion-field-radio-wrap):not(.grunion-field-select-wrap) {
    display: flex;
    flex-direction: row-reverse;
    position: relative
}

.contact-form .is-style-outlined .grunion-field-checkbox-multiple-wrap,
.contact-form .is-style-outlined .grunion-field-radio-wrap {
    background-color: var(--jetpack--contact-form--input-background)
}

.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options {
    flex-grow: 1;
    padding: var(--jetpack--contact-form--input-padding, 16px);
    padding-top: calc(var(--jetpack--contact-form--input-padding-top, 16px) + 4px)
}

.contact-form .is-style-outlined .grunion-field-wrap .notched-label {
    box-sizing: border-box;
    display: flex;
    height: 100%;
    left: 0;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: left;
    width: 100%
}

.contact-form .contact-form__select-wrapper+.notched-label {
    top: 0
}

.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__leading {
    border: var(--jetpack--contact-form--border);
    border-color: var(--jetpack--contact-form--border-color);
    border-radius: var(--jetpack--contact-form--border-radius);
    border-bottom-right-radius: unset;
    border-style: var(--jetpack--contact-form--border-style);
    border-width: var(--jetpack--contact-form--border-size);
    border-right: none;
    border-top-right-radius: unset;
    width: var(--notch-width)
}

.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__notch {
    border: var(--jetpack--contact-form--border);
    border-color: var(--jetpack--contact-form--border-color);
    border-radius: unset;
    border-style: var(--jetpack--contact-form--border-style);
    border-width: var(--jetpack--contact-form--border-size);
    border-left: none;
    border-right: none;
    padding: 0 4px;
    transition: border .15s linear
}

.contact-form .is-style-outlined .grunion-field-wrap.no-label .notched-label__notch {
    padding: 0
}

.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__label {
    font-weight: 300;
    margin: 0;
    pointer-events: none;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.contact-form .is-style-outlined .grunion-field-textarea-wrap .notched-label .notched-label__label {
    top: var(--jetpack--contact-form--input-padding-top, 16px);
    transform: unset
}

.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__trailing {
    border: var(--jetpack--contact-form--border);
    border-color: var(--jetpack--contact-form--border-color);
    border-radius: var(--jetpack--contact-form--border-radius);
    border-bottom-left-radius: unset;
    border-style: var(--jetpack--contact-form--border-style);
    border-width: var(--jetpack--contact-form--border-size);
    border-left: none;
    border-top-left-radius: unset;
    flex-grow: 1
}

.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options~.notched-label .notched-label__notch,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field.has-placeholder~.notched-label .notched-label__notch,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:focus~.notched-label .notched-label__notch,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.notched-label .notched-label__notch,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options~.notched-label .notched-label__notch,
.contact-form .is-style-outlined .grunion-field-wrap.grunion-field-select-wrap .notched-label .notched-label__notch {
    border-top-color: #0000
}

.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options~.notched-label .notched-label__label,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field.has-placeholder~.notched-label .notched-label__label,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:focus~.notched-label .notched-label__label,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.notched-label .notched-label__label,
.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options~.notched-label .notched-label__label,
.contact-form .is-style-outlined .grunion-field-wrap.grunion-field-select-wrap .notched-label .notched-label__label {
    font-size: .8em;
    top: calc(var(--jetpack--contact-form--border-size)*-1);
    transform: translateY(-50%)
}

.contact-form .is-style-outlined .grunion-field-wrap select,
.contact-form .is-style-outlined .grunion-field-wrap>input,
.contact-form .is-style-outlined .grunion-field-wrap>textarea {
    border-color: #0000 !important;
    outline: none;
    padding-left: calc(var(--notch-width) + 4px);
    padding-right: calc(var(--notch-width) + 4px)
}

.contact-form .is-style-outlined .grunion-field-wrap textarea {
    padding: var(--jetpack--contact-form--input-padding, 16px);
    padding-left: calc(var(--notch-width) + 4px);
    padding-right: calc(var(--notch-width) + 4px)
}

.contact-form .is-style-animated .grunion-field-wrap {
    --left-offset: calc(var(--jetpack--contact-form--input-padding-left, 16px) + var(--jetpack--contact-form--border-size));
    --label-left: max(var(--left-offset), var(--jetpack--contact-form--border-radius));
    --field-padding: calc(var(--label-left) - var(--jetpack--contact-form--border-size))
}

.contact-form .is-style-animated .grunion-field-wrap input:not([type=checkbox]):not([type=radio]) {
    outline: none
}

.contact-form .is-style-animated .grunion-field-wrap textarea {
    outline: none;
    padding: var(--jetpack--contact-form--input-padding, 16px)
}

.contact-form .is-style-animated .grunion-field-wrap:not(.no-label) select,
.contact-form .is-style-animated .grunion-field-wrap:not(.no-label)>input,
.contact-form .is-style-animated .grunion-field-wrap:not(.no-label)>textarea {
    padding-left: var(--field-padding);
    padding-right: var(--field-padding);
    padding-top: 1.4em
}

.contact-form .is-style-animated .grunion-field-wrap .animated-label__label {
    box-sizing: border-box;
    left: var(--label-left);
    margin: 0;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
    width: 100%
}

.contact-form .is-style-animated .grunion-field-textarea-wrap .animated-label__label {
    top: var(--jetpack--contact-form--input-padding-top, 16px);
    transform: unset
}

.contact-form .is-style-animated .grunion-field-wrap .grunion-field.has-placeholder~.animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:focus~.animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap.grunion-field-select-wrap .animated-label__label {
    font-size: .75em;
    top: calc(2px + var(--jetpack--contact-form--border-size));
    transform: translateY(0)
}

.contact-form .is-style-animated .grunion-field-wrap .grunion-checkbox-multiple-options~.animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-radio-options~.animated-label__label {
    left: 0;
    top: 0;
    transform: translateY(0)
}

.contact-form .is-style-below .grunion-field-wrap .below-label__label {
    margin-left: var(--jetpack--contact-form--border-size)
}

.contact-form :where(.grunion-field-wrap:not(.is-style-button-wrap)) .grunion-checkbox-multiple-options,
.contact-form :where(.grunion-field-wrap:not(.is-style-button-wrap)) .grunion-radio-options {
    padding-top: 8px
}

.contact-form .grunion-field-wrap input.checkbox-multiple,
.contact-form .grunion-field-wrap input.radio {
    appearance: none;
    border: 1px solid var(--jetpack--contact-form--text-color);
    box-sizing: border-box;
    height: var(--jetpack--contact-form--font-size);
    margin-inline-end: calc(var(--jetpack--contact-form--font-size)/2);
    outline-offset: 4px;
    padding: 0;
    position: relative;
    width: var(--jetpack--contact-form--font-size)
}

.contact-form .grunion-field-wrap input.radio {
    border-radius: 50%;
    transform: translateY(15%)
}

.contact-form .grunion-field-wrap input.checkbox-multiple:checked:before {
    content: "✓";
    display: block;
    font-size: var(--jetpack--contact-form--font-size);
    left: calc(var(--jetpack--contact-form--font-size)/2);
    line-height: 1;
    position: absolute;
    top: calc(var(--jetpack--contact-form--font-size)/2);
    transform: translate(-50%, -50%)
}

.contact-form .grunion-field-wrap input.radio:checked:before {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: calc(var(--jetpack--contact-form--font-size)/2);
    margin-left: 50%;
    margin-top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: calc(var(--jetpack--contact-form--font-size)/2)
}

.contact-form .grunion-field-wrap.grunion-field-checkbox-multiple-wrap.is-style-button-wrap .contact-form-field,
.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-radio-label {
    align-items: center;
    background: var(--jetpack--contact-form--button-outline--background-color);
    border: var(--jetpack--contact-form--button-outline--border);
    border-radius: var(--jetpack--contact-form--button-outline--border-radius);
    color: var(--jetpack--contact-form--button-outline--text-color);
    display: inline-flex;
    line-height: var(--jetpack--contact-form--button-outline--line-height);
    padding: var(--jetpack--contact-form--button-outline--padding)
}

.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.radio.is-style-button {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.radio.is-style-button:checked+.grunion-radio-label {
    display: inline-flex;
    gap: .5em
}

.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.radio.is-style-button:checked+.grunion-radio-label:before {
    content: "✓"
}

.contact-form .grunion-field-wrap.grunion-field-checkbox-multiple-wrap.is-style-button-wrap .contact-form-field:focus-within,
.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.radio.is-style-button:focus+.grunion-radio-label {
    outline: var(--jetpack--contact-form--button-outline--border);
    outline-offset: 2px
}

.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.checkbox-multiple.is-style-button {
    border-radius: var(--jetpack--contact-form--button-outline--border-radius);
    color: var(--jetpack--contact-form--button-outline--text-color);
    font-family: var(--wp--preset--font-family--body)
}

.contact-form .grunion-field-wrap.is-style-button-wrap .grunion-field.checkbox-multiple.is-style-button:focus {
    outline-width: 0
}

.contact-form input.grunion-field.is-style-button+.grunion-field-text:before {
    background: var(--jetpack--contact-form--button-outline--background-color);
    border: var(--jetpack--contact-form--button-outline--border);
    border-color: currentColor;
    border-radius: var(--jetpack--contact-form--button-outline--border-radius);
    box-sizing: initial;
    content: "";
    display: block;
    height: 100%;
    left: calc(var(--jetpack--contact-form--button-outline--border-size)*-1);
    position: absolute;
    top: calc(var(--jetpack--contact-form--button-outline--border-size)*-1);
    width: 100%;
    z-index: -1
}

.contact-form input.grunion-field.is-style-button {
    color: var(--jetpack--contact-form--button-outline--color)
}

.contact-form input.grunion-field.is-style-button:checked,
.contact-form input.grunion-field.is-style-button:checked+.grunion-field-text {
    color: var(--jetpack--contact-form--button-outline--background-color-fallback)
}

.contact-form input.grunion-field.is-style-button:checked+.grunion-field-text:before {
    background: var(--jetpack--contact-form--button-outline--text-color);
    border-color: var(--jetpack--contact-form--button-outline--text-color)
}

.contact-form__error,
.contact-form__input-error {
    --warning-icon-size: 1.25em;
    --warning-icon-margin: 0.75em;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem
}

.contact-form__error {
    background-color: var(--jetpack--contact-form--error-color);
    color: var(--jetpack--contact-form--inverted-text-color);
    gap: var(--warning-icon-margin);
    margin-bottom: var(--wp--style--block-gap, 1.5rem);
    padding: 1em
}

.contact-form__error ul {
    flex-basis: 100%;
    list-style-position: inside;
    margin: 0;
    padding-inline-start: calc(var(--warning-icon-size) + var(--warning-icon-margin))
}

.contact-form__error ul:empty {
    display: none
}

.contact-form__error ul li {
    padding: .25em 0
}

.contact-form__error a {
    color: inherit
}

.contact-form__input-error {
    color: var(--jetpack--contact-form--error-color);
    gap: .33em;
    margin: .25rem 0
}

.contact-form__error:empty,
.contact-form__input-error:empty {
    display: none
}

.contact-form .wp-block-jetpack-contact-form.is-style-outlined fieldset[aria-invalid=true],
.contact-form [aria-invalid=true]:not(fieldset) {
    border: 1px solid var(--jetpack--contact-form--error-color)
}

.contact-form .wp-block-jetpack-contact-form:not(.is-style-outlined) fieldset[aria-invalid=true] {
    outline: solid 1px var(--jetpack--contact-form--error-color);
    outline-offset: .5em
}

.contact-form__warning-icon {
    background-color: var(--jetpack--contact-form--error-color);
    border: 1px solid var(--jetpack--contact-form--inverted-text-color);
    border-radius: 50%;
    color: var(--jetpack--contact-form--inverted-text-color);
    height: var(--warning-icon-size);
    width: var(--warning-icon-size)
}

.contact-form__warning-icon i:after {
    align-items: center;
    content: "!";
    display: flex;
    font-size: .8em;
    font-style: normal;
    font-weight: 700;
    justify-content: center
}

.contact-form__checkbox-wrap {
    align-items: baseline;
    display: inline-flex
}

.contact-form :is([type=submit], button:not([type=reset])) {
    align-items: center;
    display: inline-flex;
    gap: .5em;
    justify-content: center
}

.contact-form .contact-form__spinner {
    fill: currentColor
}

.contact-form .contact-form__spinner svg {
    display: block
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.infinite-loader {
    color: #000;
    display: block;
    height: 28px;
    text-align: center
}

#infinite-handle span {
    background: #333;
    border-radius: 1px;
    color: #f0f0f1;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 16px
}

@keyframes spinner-inner {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.infinite-loader .spinner-inner div {
    animation: spinner-inner 1s linear infinite;
    background: #000;
    border-radius: 3px/6px;
    height: 12px;
    left: 47px;
    outline: 1px solid #fff;
    position: absolute;
    top: 24px;
    transform-origin: 3px 26px;
    width: 6px
}

.infinite-loader .spinner-inner div:first-child {
    animation-delay: -.9166666667s;
    background: #000;
    transform: rotate(0deg)
}

.infinite-loader .spinner-inner div:nth-child(2) {
    animation-delay: -.8333333333s;
    background: #000;
    transform: rotate(30deg)
}

.infinite-loader .spinner-inner div:nth-child(3) {
    animation-delay: -.75s;
    background: #000;
    transform: rotate(60deg)
}

.infinite-loader .spinner-inner div:nth-child(4) {
    animation-delay: -.6666666667s;
    background: #000;
    transform: rotate(90deg)
}

.infinite-loader .spinner-inner div:nth-child(5) {
    animation-delay: -.5833333333s;
    background: #000;
    transform: rotate(120deg)
}

.infinite-loader .spinner-inner div:nth-child(6) {
    animation-delay: -.5s;
    background: #000;
    transform: rotate(150deg)
}

.infinite-loader .spinner-inner div:nth-child(7) {
    animation-delay: -.4166666667s;
    background: #000;
    transform: rotate(180deg)
}

.infinite-loader .spinner-inner div:nth-child(8) {
    animation-delay: -.3333333333s;
    background: #000;
    transform: rotate(210deg)
}

.infinite-loader .spinner-inner div:nth-child(9) {
    animation-delay: -.25s;
    background: #000;
    transform: rotate(240deg)
}

.infinite-loader .spinner-inner div:nth-child(10) {
    animation-delay: -.1666666667s;
    background: #000;
    transform: rotate(270deg)
}

.infinite-loader .spinner-inner div:nth-child(11) {
    animation-delay: -.0833333333s;
    background: #000;
    transform: rotate(300deg)
}

.infinite-loader .spinner-inner div:nth-child(12) {
    animation-delay: 0s;
    background: #000;
    transform: rotate(330deg)
}

.infinite-loader .spinner {
    background: none;
    display: inline-block;
    height: 28px;
    overflow: hidden;
    width: 28px
}

.infinite-loader .spinner-inner {
    backface-visibility: hidden;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(.28);
    transform-origin: 0 0;
    width: 100%
}

.infinite-loader .spinner-inner div {
    box-sizing: initial
}

#infinite-handle span button,
#infinite-handle span button:focus,
#infinite-handle span button:hover {
    background: #0000;
    border: none;
    color: inherit;
    cursor: inherit;
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    position: static
}

#infinite-handle span button::-moz-focus-inner {
    border: none;
    margin: 0;
    padding: 0
}

@media (max-width:800px) {
    #infinite-handle span:before {
        display: none
    }

    #infinite-handle span {
        display: block
    }
}

#infinite-footer {
    bottom: -50px;
    left: 0;
    position: fixed;
    width: 100%
}

#infinite-footer a {
    text-decoration: none
}

#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-info a:hover {
    color: #444;
    text-decoration: underline
}

#infinite-footer .container {
    background: #fffc;
    border: solid #0000001a;
    border-width: 1px 0 0;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
    padding: 1px 20px;
    width: 780px
}

#infinite-footer .blog-credits,
#infinite-footer .blog-info {
    box-sizing: border-box;
    line-height: 25px
}

#infinite-footer .blog-info {
    float: left;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 40%
}

#infinite-footer .blog-credits {
    float: right;
    font-weight: 400;
    width: 60%
}

#infinite-footer .blog-info a {
    color: #111;
    font-size: 14px;
    font-weight: 700
}

#infinite-footer .blog-credits {
    color: #888;
    font-size: 12px;
    text-align: right
}

#infinite-footer .blog-credits a {
    color: #646970
}

.infinity-end.neverending #infinite-footer {
    display: none
}

@media (max-width:640px) {
    #infinite-footer .container {
        box-sizing: border-box;
        width: 100%
    }

    #infinite-footer .blog-info {
        width: 30%
    }

    #infinite-footer .blog-credits {
        width: 70%
    }

    #infinite-footer .blog-credits,
    #infinite-footer .blog-info a {
        font-size: 10px
    }

    #infinite-footer {
        position: static
    }
}

#infinite-aria {
    overflow: hidden;
    position: absolute;
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    padding: 0;
    width: 1px
}

.infinite-wrap:focus {
    outline: 0 !important
}

div.sharedaddy h3.sd-title:before {
    border-top: 1px solid #dcdcde;
    content: "";
    display: block;
    margin-bottom: 1em;
    min-width: 30px;
    width: 100%
}

div.jetpack-likes-widget-wrapper {
    min-height: 50px;
    position: relative;
    width: 100%
}

div.jetpack-likes-widget-wrapper .sd-link-color {
    font-size: 12px
}

div.jetpack-comment-likes-widget-wrapper {
    min-height: 31px;
    position: relative;
    width: 100%
}

div.jetpack-comment-likes-widget-wrapper iframe {
    margin-bottom: 0
}

#likes-other-gravatars {
    background-color: #2e4453;
    border-width: 0;
    box-shadow: 0 0 10px #2e4453;
    box-shadow: 0 0 10px #2e445399;
    display: none;
    min-width: 130px;
    padding: 10px 10px 12px;
    position: absolute;
    z-index: 1000
}

#likes-other-gravatars.wpl-new-layout {
    background-color: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    box-shadow: none;
    display: none;
    height: auto;
    max-height: 240px;
    min-width: 220px;
    overflow: auto;
    padding: 9px 12px 10px;
    position: absolute;
    z-index: 1000
}

#likes-other-gravatars * {
    line-height: normal
}

#likes-other-gravatars .likes-text {
    color: #fff;
    font-size: 12px;
    padding-bottom: 8px
}

#likes-other-gravatars.wpl-new-layout .likes-text {
    color: #101517;
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 8px
}

#likes-other-gravatars li,
#likes-other-gravatars ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-indent: 0
}

#likes-other-gravatars li:before {
    content: ""
}

#likes-other-gravatars ul.wpl-avatars {
    display: block;
    max-height: 190px;
    overflow: auto
}

#likes-other-gravatars ul.wpl-avatars li {
    float: left;
    height: 32px;
    margin: 0 5px 5px 0;
    width: 32px
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li {
    float: none;
    height: 28px;
    margin: 0 0 4px;
    width: 196px
}

#likes-other-gravatars ul.wpl-avatars li a {
    border-bottom: none !important;
    display: block;
    margin: 0 2px 0 0
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a {
    align-items: center;
    border-bottom: none !important;
    display: flex;
    gap: 8px;
    margin: 0 2px 0 0;
    text-decoration: none
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a span {
    color: #2c3338;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#likes-other-gravatars ul.wpl-avatars li a img {
    background: none;
    border: none;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    position: static
}

#likes-other-gravatars.wpl-new-layout ul.wpl-avatars li a img {
    background: none;
    border: none;
    border-radius: 50%;
    margin: 0 !important;
    padding: 1px !important;
    position: static
}

div.sd-box {
    border-top: 1px solid #00000021
}

.comment-likes-widget,
.entry-content .post-likes-widget,
.post-likes-widget {
    border-width: 0;
    display: block;
    margin: 0
}

.comment-likes-widget-placeholder,
.post-likes-widget-placeholder {
    border-width: 0;
    margin: 0;
    position: relative
}

.comment-likes-widget-placeholder {
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    height: 18px;
    position: absolute
}

.comment-likes-widget-placeholder:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%232EA2CC' d='m12 2 2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    color: #2ea2cc;
    content: "";
    display: inline-block;
    height: 16px;
    padding-right: 5px;
    position: relative;
    top: 3px;
    width: 16px
}

.post-likes-widget-placeholder .button {
    display: none
}

.comment-likes-widget-placeholder .loading,
.post-likes-widget-placeholder .loading {
    color: #999;
    font-size: 12px
}

.comment-likes-widget-placeholder .loading {
    align-self: center;
    color: #4e4e4e;
    margin-top: 4px;
    padding-left: 5px
}

div.sharedaddy.sd-like-enabled .sd-like h3 {
    display: none
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
    float: none;
    position: absolute;
    top: 0;
    width: 100%
}

.comment-likes-widget {
    width: 100%
}

.cs-rating,
.pd-rating {
    display: block !important
}

.sd-gplus .sd-title {
    display: none
}

@media print {
    .jetpack-likes-widget-wrapper {
        display: none
    }
}

.jp-related-posts-i2 {
    margin-top: 1.5rem
}

.jp-related-posts-i2__list {
    --hgap: 1rem;
    column-gap: var(--hgap);
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    row-gap: 2rem
}

.jp-related-posts-i2__post {
    display: flex;
    flex-basis: calc((100% - var(--hgap))/2);
    flex-direction: column
}

.jp-related-posts-i2__post:nth-last-child(n+3):first-child,
.jp-related-posts-i2__post:nth-last-child(n+3):first-child~* {
    flex-basis: calc(33.33333% - var(--hgap)*2/3)
}

.jp-related-posts-i2__post:nth-last-child(4):first-child,
.jp-related-posts-i2__post:nth-last-child(4):first-child~* {
    flex-basis: calc((100% - var(--hgap))/2)
}

.jp-related-posts-i2__post-link {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 1rem;
    row-gap: .5rem;
    width: 100%
}

.jp-related-posts-i2__post-link:focus-visible {
    outline-offset: 2px
}

.jp-related-posts-i2__post-img {
    max-width: 100%;
    order: -1
}

.jp-related-posts-i2__post-defs {
    list-style-type: unset;
    margin: 0
}

.jp-related-posts-i2__post-defs dt {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

.jp-related-posts-i2__post-defs dd {
    margin: 0
}

.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__list {
    display: block
}

.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__post {
    margin-bottom: 2rem
}

@media only screen and (max-width:640px) {
    .jp-related-posts-i2__list {
        display: block
    }

    .jp-related-posts-i2__post {
        margin-bottom: 2rem
    }
}

#jp-relatedposts {
    clear: both;
    display: none;
    margin: 1em 0;
    padding-top: 1em;
    position: relative
}

.jp-relatedposts:after {
    clear: both;
    content: "";
    display: block
}

#jp-relatedposts h3.jp-relatedposts-headline {
    display: inline-block;
    float: left;
    font-family: inherit;
    font-size: 9pt;
    font-weight: 700;
    margin: 0 0 1em
}

#jp-relatedposts h3.jp-relatedposts-headline em:before {
    border-top: 1px solid #0003;
    content: "";
    display: block;
    margin-bottom: 1em;
    min-width: 30px;
    width: 100%
}

#jp-relatedposts h3.jp-relatedposts-headline em {
    font-style: normal;
    font-weight: 700
}

#jp-relatedposts .jp-relatedposts-items {
    clear: left
}

#jp-relatedposts .jp-relatedposts-items-visual {
    margin-right: -20px
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    float: left;
    margin: 0 0 1em;
    width: 33%
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    opacity: .8;
    padding-right: 20px
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
    clear: both
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
    text-decoration: underline
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time,
#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
    font-size: 14px;
    line-height: 20px;
    margin: 0
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs {
    position: relative
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay {
    border-bottom: 0;
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
    margin-bottom: 0
}

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
    display: block;
    font-family: inherit;
    margin: 0;
    max-width: 100%;
    text-transform: none
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
    filter: alpha(opacity=100);
    font-size: inherit;
    font-weight: 400;
    -moz-opacity: 1;
    opacity: 1;
    text-decoration: none
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
    text-decoration: underline
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span {
    display: block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span {
    height: auto;
    max-width: 100%
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
    opacity: .6
}

#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt,
.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
    display: none
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
    overflow: hidden
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span {
    margin-bottom: 1em
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post {
    clear: both;
    width: 100%
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img {
    float: left;
    margin-right: 3%;
    max-width: 33%;
    overflow: hidden
}

#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
    display: inline-block;
    max-width: 63%
}

@media only screen and (max-width:640px) {
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
        width: 50%
    }

    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n) {
        clear: left
    }

    #jp-relatedposts .jp-relatedposts-items-visual {
        margin-right: 20px
    }
}

@media only screen and (max-width:320px) {
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
        clear: both;
        margin: 0 0 1em;
        width: 100%
    }

    #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,
    #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
        float: none;
        margin-right: 0;
        max-width: 100%
    }
}

@media print {
    .jp-relatedposts {
        display: none !important
    }
}

#jp-post-flair {
    padding-top: .5em
}

#content div.sharedaddy,
#main div.sharedaddy,
div.sharedaddy {
    clear: both
}

div.sharedaddy h3.sd-title {
    display: inline-block;
    font-size: 9pt;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1em
}

body.highlander-light h3.sd-title:before {
    border-top: 1px solid #0003
}

body.highlander-dark h3.sd-title:before {
    border-top: 1px solid #fff6
}

.sd-sharing {
    margin-bottom: 1em
}

.sd-content ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important
}

.sd-content ul li {
    display: inline-block
}

.sd-content ul li.share-deprecated {
    opacity: .5
}

.sd-content ul li.share-deprecated a span {
    text-decoration: line-through
}

.sd-block.sd-gplus {
    margin: 0 0 .5em
}

.sd-gplus .sd-content {
    font-size: 12px
}

.sd-content .share-email-error .share-email-error-title {
    margin: .5em 0
}

.sd-content .share-email-error .share-email-error-text {
    font-family: Open Sans, sans-serif;
    font-size: 12px;
    margin: .5em 0
}

#sharing_email .sharing_send,
.sd-content ul li .option a.share-ustom,
.sd-content ul li a.sd-button,
.sd-content ul li.advanced a.share-more,
.sd-content ul li.preview-item div.option.option-smart-off a,
.sd-social-icon .sd-content ul li a.sd-button,
.sd-social-icon-text .sd-content ul li a.sd-button,
.sd-social-official .sd-content>ul>li .digg_button>a,
.sd-social-official .sd-content>ul>li>a.sd-button,
.sd-social-text .sd-content ul li a.sd-button {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px #0000001f, 0 0 0 1px #0000001f;
    color: #2c3338 !important;
    display: inline-block;
    font-family: Open Sans, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    padding: 4px 11px 3px 9px;
    text-decoration: none !important;
    text-shadow: none
}

.sd-social-official .sd-content ul li a.sd-button,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a {
    align-items: center;
    display: flex;
    font-size: 12px;
    line-height: 12px;
    min-height: 20px;
    padding: 1px 6px 0 5px
}

.sd-social-official .sd-content ul.preview li a.sd-button,
.sd-social-official .sd-content ul.preview li.preview-item div.option.option-smart-off a {
    position: relative;
    top: 2px
}

.sd-content ul li .option a.share-ustom span,
.sd-content ul li a.sd-button>span,
.sd-content ul li.advanced a.share-more span,
.sd-content ul li.preview-item div.option.option-smart-off a span,
.sd-social-icon-text .sd-content ul li a.sd-button>span,
.sd-social-official .sd-content>ul>li .digg_button>a span,
.sd-social-official .sd-content>ul>li>a.sd-button span {
    line-height: 23px;
    margin-left: 6px
}

.sd-social-icon .sd-content ul li a.sd-button>span {
    margin-left: 0
}

.sd-social-text .sd-content ul li a.sd-button span {
    margin-left: 3px
}

.sd-social-official .sd-content ul li a.sd-button>span,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a span {
    line-height: 12px;
    margin-left: 3px
}

.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,
.sd-social-official .sd-content>ul>li .digg_button>a:before,
.sd-social-official .sd-content>ul>li>a.sd-button:before {
    margin-bottom: -1px
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-icon .sd-content ul li a.sd-button:hover,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:hover,
.sd-social-official .sd-content>ul>li .digg_button>a:active,
.sd-social-official .sd-content>ul>li .digg_button>a:hover,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-official .sd-content>ul>li>a.sd-button:hover,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:hover {
    box-shadow: 0 1px 2px #00000038, 0 0 0 1px #00000038
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content>ul>li .digg_button>a:active,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:active {
    box-shadow: inset 0 1px 0 #00000029
}

.sd-content ul li a.sd-button:before {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: normal 18px/1 social-logos;
    text-align: center;
    vertical-align: top
}

.sd-social-icon-text ul li a.sd-button:before {
    position: relative;
    top: 2px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-content ul li a.sd-button:before {
        position: relative;
        top: 2px
    }
}

.sd-social-official ul li a.sd-button:before {
    position: relative;
    top: -2px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-social-official ul li a.sd-button:before {
        top: 0
    }
}

.sd-content ul li {
    margin: 0 8px 12px 0;
    padding: 0
}

.jp-sharing-input-touch .sd-content ul li {
    padding-left: 10px
}

.sd-content ul li.preview-item.no-icon a.sd-button span {
    margin-left: 0
}

.sd-content ul li.no-icon a:before,
.sd-social-text .sd-content ul li a:before {
    display: none
}

body .sd-content ul li.share-custom.no-icon a span,
body .sd-social-text .sd-content ul li.share-custom a span {
    background-image: none;
    background-position: -500px -500px !important;
    background-repeat: no-repeat !important;
    height: 0;
    line-height: inherit;
    padding-left: 0
}

.sd-social-icon .sd-content ul li a.share-more {
    position: relative;
    top: -4px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-social-icon .sd-content ul li a.share-more {
        top: 2px
    }
}

@-moz-document url-prefix() {
    .sd-social-icon .sd-content ul li a.share-more {
        top: 2px
    }
}

.sd-social-icon .sd-content ul li a.share-more span {
    margin-left: 3px
}

.sd-content ul li.share-print div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-print a:before,
.sd-social-icon-text .sd-content li.share-print a:before,
.sd-social-official .sd-content li.share-print a:before,
.sd-social-text .sd-content ul li.share-print a:before {
    content: "\f469"
}

.sd-content ul li.share-email div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-email a:before,
.sd-social-icon-text .sd-content li.share-email a:before,
.sd-social-official .sd-content li.share-email a:before,
.sd-social-text .sd-content ul li.share-email a:before {
    content: "\f410"
}

.sd-content ul li.share-linkedin div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-linkedin a:before,
.sd-social-icon-text .sd-content li.share-linkedin a:before,
.sd-social-text .sd-content ul li.share-linkedin a:before {
    content: "\f207"
}

.sd-content ul li.share-twitter div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-twitter a:before,
.sd-social-icon-text .sd-content li.share-twitter a:before,
.sd-social-text .sd-content ul li.share-twitter a:before {
    content: "\f202"
}

.sd-content ul li.share-x div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-x a:before,
.sd-social-icon-text .sd-content li.share-x a:before,
.sd-social-text .sd-content ul li.share-x a:before {
    content: "\f10e"
}

.sd-content ul li.share-reddit div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-reddit a:before,
.sd-social-icon-text .sd-content li.share-reddit a:before,
.sd-social-official .sd-content li.share-reddit a:before,
.sd-social-text .sd-content ul li.share-reddit a:before {
    content: "\f222"
}

.sd-content ul li.share-tumblr div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-tumblr a:before,
.sd-social-icon-text .sd-content li.share-tumblr a:before,
.sd-social-text .sd-content ul li.share-tumblr a:before {
    content: "\f607"
}

.sd-content ul li.share-pocket div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-pocket a:before,
.sd-social-icon-text .sd-content li.share-pocket a:before,
.sd-social-text .sd-content ul li.share-pocket a:before {
    content: "\f224"
}

.sd-content ul li.share-pinterest div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-pinterest a:before,
.sd-social-icon-text .sd-content li.share-pinterest a:before,
.sd-social-text .sd-content ul li.share-pinterest a:before {
    content: "\f210"
}

.sd-content ul li.share-facebook div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-facebook a:before,
.sd-social-icon-text .sd-content li.share-facebook a:before,
.sd-social-text .sd-content ul li.share-facebook a:before {
    content: "\f203"
}

.sd-content ul li.share-press-this div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-press-this a:before,
.sd-social-icon-text .sd-content li.share-press-this a:before,
.sd-social-official .sd-content li.share-press-this a:before,
.sd-social-text .sd-content ul li.share-press-this a:before {
    content: "\f205"
}

.sd-social-official .sd-content li.share-press-this a:before {
    color: #2ba1cb
}

.sd-content ul li.share-telegram div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-telegram a:before,
.sd-social-icon-text .sd-content li.share-telegram a:before,
.sd-social-official .sd-content li.share-telegram a:before,
.sd-social-text .sd-content ul li.share-telegram a:before {
    content: "\f606"
}

.sd-social-official .sd-content li.share-telegram a:before {
    color: #08c
}

.sd-content ul li.share-threads div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-threads a:before,
.sd-social-icon-text .sd-content li.share-threads a:before,
.sd-social-official .sd-content li.share-threads a:before,
.sd-social-text .sd-content ul li.share-threads a:before {
    content: "\f10d"
}

.sd-social-official .sd-content li.share-threads a:before {
    color: #000
}

.sd-social-icon .sd-content ul li[class*=share-].share-threads a.sd-button {
    background: #000;
    color: #fff !important
}

.sd-content ul li.share-mastodon div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-mastodon a:before,
.sd-social-icon-text .sd-content li.share-mastodon a:before,
.sd-social-official .sd-content li.share-mastodon a:before,
.sd-social-text .sd-content ul li.share-mastodon a:before {
    content: "\f10a"
}

.sd-social-official .sd-content li.share-mastodon a:before {
    color: #563acc
}

.sd-content ul li.advanced a.share-more:before,
.sd-social-icon .sd-content ul a.share-more:before,
.sd-social-icon-text .sd-content a.share-more:before,
.sd-social-official .sd-content a.share-more:before,
.sd-social-text .sd-content ul a.share-more:before {
    content: "\f415"
}

.sd-social-official .sd-content a.share-more:before {
    color: #2ba1cb
}

.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before,
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before,
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before,
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before {
    content: "\f608"
}

.sd-social-official .sd-content li.share-jetpack-whatsapp a:before {
    color: #43d854
}

.sd-social-icon .sd-content ul li[class*=share-].share-jetpack-whatsapp a.sd-button {
    background: #43d854;
    color: #fff !important
}

.sd-content ul li.share-nextdoor div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-nextdoor a:before,
.sd-social-icon-text .sd-content li.share-nextdoor a:before,
.sd-social-official .sd-content li.share-nextdoor a:before,
.sd-social-text .sd-content ul li.share-nextdoor a:before {
    content: "\f10c"
}

.sd-social-official .sd-content li.share-nextdoor a:before {
    color: #8ed500
}

.sd-social-icon .sd-content ul li[class*=share-].share-nextdoor a.sd-button {
    background: #8ed500;
    color: #fff !important
}

.sd-content ul li.share-bluesky div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-bluesky a:before,
.sd-social-icon-text .sd-content li.share-bluesky a:before,
.sd-social-official .sd-content li.share-bluesky a:before,
.sd-social-text .sd-content ul li.share-bluesky a:before {
    content: "\f10f"
}

.sd-social-official .sd-content li.share-bluesky a:before {
    color: #0085ff
}

.sd-social-icon .sd-content ul li[class*=share-].share-bluesky a.sd-button {
    background: #0085ff;
    color: #fff !important
}

.sd-content ul li.share-deprecated div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-deprecated a:before,
.sd-social-icon-text .sd-content li.share-deprecated a:before,
.sd-social-official .sd-content li.share-deprecated a:before {
    content: "🚫";
    height: 1em;
    width: 1em
}

.sd-social .sd-button .share-count {
    background: #2ea2cc;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    padding: 1px 3px;
    text-align: center
}

.sd-social-official .sd-content>ul>li>a.sd-button span {
    line-height: 1
}

.sd-social-official .sd-content ul {
    display: flex;
    flex-wrap: wrap
}

.sd-social-official .sd-content ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden
}

.sd-social-official .sd-content li.share-press-this a {
    margin: 0 0 5px
}

.sd-social-official .sd-content ul>li {
    display: flex;
    max-height: 18px
}

.sd-social-official .sd-content ul>li .option-smart-off {
    margin-right: 8px
}

.sd-social-official .fb-share-button>span {
    vertical-align: top !important
}

.sd-social-official .sd-content .pocket_button iframe {
    width: 98px
}

.linkedin_button>span,
.pinterest_button,
.pocket_button iframe,
.twitter_button {
    margin: 0 !important
}

.linkedin_button>span,
.pinterest_button a {
    display: block !important
}

.sd-social-official .sd-content .share-tumblr iframe {
    max-width: 53px;
    width: unset
}

body .sd-social-official li a.share-more,
body .sd-social-official li.share-custom a,
body .sd-social-official li.share-digg a,
body .sd-social-official li.share-email a,
body .sd-social-official li.share-press-this a,
body .sd-social-official li.share-print {
    position: relative;
    top: 0
}

body .sd-social-icon .sd-content li.share-custom>a {
    padding: 2px 3px 0;
    position: relative;
    top: 4px
}

body .sd-content ul li.share-custom a.share-icon span,
body .sd-social-icon .sd-content li.share-custom a span,
body .sd-social-icon-text .sd-content li.share-custom a span,
body .sd-social-official .sd-content li.share-custom a span,
body .sd-social-text .sd-content li.share-custom a span {
    background-repeat: no-repeat;
    background-size: 16px 16px;
    display: inline-block;
    height: 21px;
    line-height: 16px;
    margin-left: 0;
    padding: 0 0 0 19px
}

body .sd-social-icon .sd-content li.share-custom a span {
    padding-left: 16px !important;
    width: 0
}

.sharing-hidden .inner {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: 0 5px 20px #0003;
    margin-top: 5px;
    max-width: 400px;
    padding: 10px;
    position: absolute;
    z-index: 2
}

.sharing-hidden .inner ul {
    margin: 0 !important
}

.sd-social-official .sd-content .sharing-hidden ul>li.share-end {
    clear: both;
    height: 0 !important;
    margin: 0 !important
}

.sharing-hidden .inner:after,
.sharing-hidden .inner:before {
    border-bottom: 8px solid #ccc;
    border-left: 6px solid #0000;
    border-right: 6px solid #0000;
    content: "";
    display: block;
    height: 0;
    left: 20px;
    position: absolute;
    top: -8px;
    width: 0;
    z-index: 1
}

.sharing-hidden .inner:after {
    border-bottom: 8px solid #fff;
    border-left: 6px solid #0000;
    border-right: 6px solid #0000;
    top: -7px;
    z-index: 2
}

.sharing-hidden ul {
    margin: 0
}

.sd-social-icon .sd-content ul li[class*=share-] a,
.sd-social-icon .sd-content ul li[class*=share-] a:hover,
.sd-social-icon .sd-content ul li[class*=share-] div.option a {
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: none;
    height: auto;
    line-height: 1;
    margin-bottom: 0;
    max-width: 32px;
    padding: 7px;
    position: relative;
    top: -2px;
    width: auto
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,
.sd-social-icon .sd-content ul li[class*=share-] div.option a span {
    line-height: 1
}

.sd-social-icon .sd-content ul li[class*=share-] a:hover,
.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover {
    border: none;
    opacity: .6
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before {
    top: 0
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom {
    padding: 8px 8px 6px;
    top: 5px
}

.sd-social-icon .sd-content ul li a.sd-button.share-more {
    margin-left: 10px
}

.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
    margin-left: 0
}

.sd-social-icon .sd-button span.share-count {
    background: #555;
    border-radius: 0;
    bottom: 0;
    font-size: 9px;
    position: absolute;
    right: 0
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button {
    background: #e9e9e9;
    margin-top: 2px;
    text-indent: 0
}

.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button {
    background: #2c4762;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button {
    background: #0866ff;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button {
    background: #00acee;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-x a.sd-button {
    background: #000;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button {
    background: #ca1f27;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button {
    color: #555 !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button {
    background: #4f94d4;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-telegram a.sd-button {
    background: #08c;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button {
    background: #0077b5;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button {
    background: #ee4056;
    color: #fff !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button {
    background: #cee3f8;
    color: #555 !important
}

.sd-social-icon .sd-content ul li[class*=share-].share-mastodon a.sd-button {
    background: linear-gradient(0deg, #563acc 0, #6364ff);
    color: #fff !important
}

.sharing-screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px
}

.sharing-screen-reader-text:active,
.sharing-screen-reader-text:focus,
.sharing-screen-reader-text:hover {
    background-color: #f0f0f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px #0009;
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

#jetpack-source_f_name {
    display: none !important;
    left: -9000px;
    position: absolute !important
}

.sd-content .share-customize-link {
    line-height: 11px;
    margin-top: 8px
}

.sd-content .share-customize-link a {
    font-family: Open Sans, sans-serif;
    font-size: 11px
}

@media print {
    .sharedaddy.sd-sharing-enabled {
        display: none
    }
}

.jetpack-slideshow-window {
    background-color: #222;
    border: 20px solid #222;
    border-radius: 10px;
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    padding-bottom: 56.25% !important;
    padding-top: 30px !important;
    position: relative;
    z-index: 1
}

.jetpack-slideshow-window.jetpack-slideshow-white {
    background-color: #fff;
    border-color: #fff
}

.jetpack-slideshow-window,
.jetpack-slideshow-window * {
    box-sizing: initial
}

.jetpack-slideshow-loading {
    height: 100%;
    margin: auto;
    text-align: center
}

body div.jetpack-slideshow-window * img {
    background-color: initial !important;
    background-image: none !important;
    border-width: 0 !important;
    display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    padding: 0 !important;
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.jetpack-slideshow-loading img {
    vertical-align: middle
}

.jetpack-slideshow-slide {
    display: none;
    height: 100% !important;
    left: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100% !important
}

.jetpack-slideshow-slide img {
    vertical-align: middle
}

.jetpack-slideshow-line-height-hack {
    font-size: 0;
    overflow: hidden;
    width: 0
}

.jetpack-slideshow-slide-caption {
    bottom: 5px;
    color: #f6f7f7;
    font-family: Helvetica Neue, sans-serif;
    font-size: 13px;
    height: 25px;
    left: 0;
    line-height: 25px;
    position: absolute;
    text-align: center;
    text-shadow: #222 1px 1px 2px;
    width: 100%;
    z-index: 100
}

.jetpack-slideshow-controls {
    bottom: 30px;
    direction: ltr;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    margin: auto;
    opacity: .5;
    position: absolute;
    text-align: center;
    transition: opacity .3s ease-out;
    width: 100%;
    z-index: 1000
}

.jetpack-slideshow-window:hover .jetpack-slideshow-controls {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1
}

body div div.jetpack-slideshow-controls a,
body div div.jetpack-slideshow-controls a:hover {
    background-color: #000 !important;
    background-color: #0009 !important;
    background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png) !important;
    background-position: -34px 8px !important;
    background-repeat: no-repeat;
    background-size: 142px 16px !important;
    border: 2px solid #ffffff1a !important;
    color: #222 !important;
    display: inline-block !important;
    *display: inline;
    margin: 0 5px !important;
    padding: 0 !important;
    zoom: 1;
    border-radius: 10em !important;
    height: 32px !important;
    line-height: 32px !important;
    text-align: center !important;
    transition: border-color .3s ease-out;
    width: 32px !important
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5) {

    body div div.jetpack-slideshow-controls a,
    body div div.jetpack-slideshow-controls a:hover {
        background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png) !important
    }
}

body div div.jetpack-slideshow-controls a:hover {
    border-color: #fff !important
}

body div div.jetpack-slideshow-controls a:first-child {
    background-position: -76px 8px !important
}

body div div.jetpack-slideshow-controls a:last-child {
    background-position: -117px 8px !important
}

body div div.jetpack-slideshow-controls a.running,
body div div.jetpack-slideshow-controls a:nth-child(2) {
    background-position: -34px 8px !important
}

body div div.jetpack-slideshow-controls a.paused {
    background-position: 9px 8px !important
}

.jetpack-slideshow-controls a img {
    border: 50px dotted #f0f
}

body.presentation-wrapper-fullscreen-parent,
html.presentation-wrapper-fullscreen-parent {
    overflow: hidden !important
}

.presentation-wrapper-fullscreen-parent #wpadminbar {
    display: none
}

.presentation-wrapper-fullscreen,
.presentation-wrapper-fullscreen-parent {
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    min-height: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 10000 !important
}

.presentation-wrapper-fullscreen {
    background-color: grey;
    border: none !important
}

.presentation-wrapper-fullscreen .nav-arrow-left,
.presentation-wrapper-fullscreen .nav-arrow-right {
    z-index: 20001
}

.presentation-wrapper-fullscreen .nav-fullscreen-button {
    z-index: 20002
}

.presentation-wrapper {
    border: 1px solid #dcdcde;
    line-height: normal;
    margin: 20px auto;
    overflow: hidden
}

.presentation {
    margin: 0;
    outline: none;
    overflow: hidden;
    position: relative
}

.presentation,
.presentation .step {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.presentation .step.fade:not(.active) {
    opacity: 0
}

.presentation .slide-content {
    padding: 30px
}

.presentation .nav-arrow-left,
.presentation .nav-arrow-right,
.presentation .nav-fullscreen-button {
    background-repeat: no-repeat;
    opacity: 0;
    position: absolute;
    transition: opacity .25s;
    width: 34px;
    z-index: 2
}

.presentation .nav-arrow-left,
.presentation .nav-arrow-right {
    background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png);
    background-size: 450% 61px;
    height: 100%
}

.presentation .nav-arrow-left {
    background-position: 4px 50%;
    left: 0
}

.presentation .nav-arrow-right {
    background-position: -120px 50%;
    right: 0
}

.presentation .nav-fullscreen-button {
    background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/modules/shortcodes/images/expand.png);
    background-size: 100% 100%;
    bottom: 0;
    height: 32px;
    margin: 4px;
    right: 0;
    width: 32px;
    z-index: 3
}

.presentation:hover .nav-arrow-left,
.presentation:hover .nav-arrow-right {
    opacity: 1
}

.presentation:hover .nav-fullscreen-button {
    opacity: .8
}

.presentation-wrapper-fullscreen .nav-fullscreen-button {
    background-image: url(/web/20240701095814im_/https://programapilotoblog.com/wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png)
}

.presentation .autoplay-overlay {
    background-color: #dcdcde;
    background-color: #000000bf;
    border-radius: 50px;
    display: table;
    height: 15%;
    margin: 30% 10%;
    position: relative;
    transition: opacity .5s;
    width: 80%;
    z-index: 100
}

.presentation .autoplay-overlay .overlay-msg {
    color: #fff;
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle
}

.presentation .will-fade {
    opacity: 0
}

.presentation .do-fade {
    opacity: 1;
    transition: opacity .5s
}

div.jetpack-quiz {
    background-color: #f3f3f3;
    border: 1px solid #deede3;
    border-radius: .2em;
    line-height: 1.3em;
    margin-bottom: 2em;
    padding: 1em
}

div.jetpack-quiz div.jetpack-quiz-question {
    font-weight: 700;
    margin-bottom: .5em
}

div.jetpack-quiz div.jetpack-quiz-answer {
    border-bottom: 1px dotted #999;
    cursor: pointer;
    margin-bottom: .5em;
    padding: 1em 0 1em 1em
}

div.jetpack-quiz div.jetpack-quiz-answer.last {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

div.jetpack-quiz div.jetpack-quiz-answer.correct {
    color: green
}

div.jetpack-quiz div.jetpack-quiz-answer.wrong {
    color: red
}

div.jetpack-quiz div.jetpack-quiz-answer div.jetpack-quiz-explanation {
    display: none
}

div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation,
div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation {
    color: #000;
    display: block;
    font-size: 90%;
    margin-top: 1em
}

div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation tt,
div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation tt {
    font-size: 85%
}

div.jetpack-quiz pre {
    background: #0000;
    font: 15px Monaco, Consolas, Andale Mono, DejaVu Sans Mono, monospace;
    margin: 0;
    padding: 0
}

.jetpack-quiz-options {
    margin-top: 12px;
    text-align: right
}

.jetpack-quiz-count {
    color: #646970;
    float: left;
    font-size: 12px
}

.jetpack-quiz-option-button {
    cursor: pointer;
    margin-left: 12px
}

.jetpack-quiz-option-button:hover svg {
    background: #3c434a
}

.jetpack-quiz-option-button svg {
    background: #000;
    border-radius: 50%;
    display: inline-block;
    fill: #fff;
    height: 24px;
    width: 24px
}

.jetpack-quiz-wrapper .jetpack-quiz:first-of-type .jetpack-quiz-option-button:first-of-type,
.jetpack-quiz-wrapper .jetpack-quiz:last-of-type .jetpack-quiz-option-button:last-of-type {
    display: none
}

#subscribe-email input {
    width: 95%
}

.comment-subscription-form {
    margin-bottom: 1em
}

.comment-subscription-form .subscribe-label {
    display: inline !important
}

.jetpack-video-wrapper {
    margin-bottom: 1.6em
}

.jetpack-video-wrapper>.wp-video,
.jetpack-video-wrapper>embed,
.jetpack-video-wrapper>iframe,
.jetpack-video-wrapper>object {
    margin-bottom: 0
}

.jetpack-social-navigation ul {
    display: block;
    margin: 0 0 1.5em;
    padding: 0
}

.jetpack-social-navigation li {
    display: inline-block;
    line-height: 1;
    margin: 0
}

.jetpack-social-navigation a {
    border: 0;
    height: 1em;
    text-decoration: none;
    width: 1em
}

.jetpack-social-navigation-svg .icon {
    color: inherit;
    fill: currentColor;
    height: 1em;
    vertical-align: middle;
    width: 1em
}

.jetpack-social-navigation-genericons a:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: Genericons;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    height: 1em;
    line-height: 1;
    speak: none;
    content: "\f415";
    text-decoration: inherit;
    vertical-align: top;
    width: 1em
}

.jetpack-social-navigation-genericons a[href*="bsky.app"]:before {
    content: "\f10f"
}

.jetpack-social-navigation-genericons a[href*="codepen.io"]:before {
    content: "\f216"
}

.jetpack-social-navigation-genericons a[href*="digg.com"]:before {
    content: "\f221"
}

.jetpack-social-navigation-genericons a[href*="dribbble.com"]:before {
    content: "\f201"
}

.jetpack-social-navigation-genericons a[href*="dropbox.com"]:before {
    content: "\f225"
}

.jetpack-social-navigation-genericons a[href*="mailto:"]:before {
    content: "\f410"
}

.jetpack-social-navigation-genericons a[href*="facebook.com"]:before {
    content: "\f203"
}

.jetpack-social-navigation-genericons a[href*="flickr.com"]:before {
    content: "\f211"
}

.jetpack-social-navigation-genericons a[href*="foursquare.com"]:before {
    content: "\f226"
}

.jetpack-social-navigation-genericons a[href*="github.com"]:before {
    content: "\f200"
}

.jetpack-social-navigation-genericons a[href*="plus.google.com"]:before {
    content: "\f206"
}

.jetpack-social-navigation-genericons a[href*="instagram.com"]:before {
    content: "\f215"
}

.jetpack-social-navigation-genericons a[href*="linkedin.com"]:before {
    content: "\f208"
}

.jetpack-social-navigation-genericons a[href*="nextdoor.com"]:before {
    content: "\f10c"
}

.jetpack-social-navigation-genericons a[href*="path.com"]:before {
    content: "\f219"
}

.jetpack-social-navigation-genericons a[href*="pinterest."]:before {
    content: "\f210"
}

.jetpack-social-navigation-genericons a[href*="getpocket.com"]:before {
    content: "\f224"
}

.jetpack-social-navigation-genericons a[href*="polldaddy.com"]:before {
    content: "\f217"
}

.jetpack-social-navigation-genericons a[href*="reddit.com"]:before {
    content: "\f222"
}

.jetpack-social-navigation-genericons a[href$="/feed/"]:before {
    content: "\f413"
}

.jetpack-social-navigation-genericons a[href*="skype:"]:before {
    content: "\f220"
}

.jetpack-social-navigation-genericons a[href*="sms:"]:before {
    content: "\f110"
}

.jetpack-social-navigation-genericons a[href*="spotify.com"]:before {
    content: "\f515"
}

.jetpack-social-navigation-genericons a[href*="stumbleupon.com"]:before {
    content: "\f223"
}

.jetpack-social-navigation-genericons a[href*="threads.net"]:before {
    content: "\f10d"
}

.jetpack-social-navigation-genericons a[href*="tumblr.com"]:before {
    content: "\f214"
}

.jetpack-social-navigation-genericons a[href*="twitch.tv"]:before {
    content: "\f516"
}

.jetpack-social-navigation-genericons a[href*="twitter.com"]:before {
    content: "\f202"
}

.jetpack-social-navigation-genericons a[href*="vimeo.com"]:before {
    content: "\f212"
}

.jetpack-social-navigation-genericons a[href*="vine.co"]:before {
    content: "\f517"
}

.jetpack-social-navigation-genericons a[href*="wordpress.com"]:before,
.jetpack-social-navigation-genericons a[href*="wordpress.org"]:before {
    content: "\f205"
}

.jetpack-social-navigation-genericons a[href*="x.com"]:before {
    content: "\f10e"
}

.jetpack-social-navigation-genericons a[href*="youtube.com"]:before {
    content: "\f213"
}

.tiled-gallery {
    clear: both;
    margin: 0 0 20px;
    overflow: hidden
}

.tiled-gallery img {
    margin: 2px !important
}

.tiled-gallery .gallery-group {
    float: left;
    position: relative
}

.tiled-gallery .tiled-gallery-item {
    float: left;
    margin: 0;
    position: relative;
    width: inherit
}

.tiled-gallery .gallery-row {
    overflow: hidden
}

.tiled-gallery .tiled-gallery-item a {
    background: #0000;
    border: none;
    color: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: auto
}

.tiled-gallery .tiled-gallery-item img,
.tiled-gallery .tiled-gallery-item img:hover {
    background: none;
    border: none;
    box-shadow: none;
    max-width: 100%;
    padding: 0;
    vertical-align: middle
}

.tiled-gallery-caption {
    background: #f0f0f1;
    background: #fffc;
    bottom: 0;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 0;
    position: absolute;
    text-indent: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption {
    font-size: 11px
}

.widget-gallery .tiled-gallery-unresized {
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.tiled-gallery .tiled-gallery-item img.grayscale {
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1)
}

.tiled-gallery .tiled-gallery-item:hover img.grayscale {
    -ms-filter: none;
    -o-filter: none;
    filter: none
}

.tiled-gallery.type-circle .tiled-gallery-item img {
    border-radius: 50% !important;
    object-fit: cover
}

.tiled-gallery.type-circle .tiled-gallery-caption {
    display: none
}

.tiled-gallery.type-square .tiled-gallery-item img {
    object-fit: cover
}

.jetpack-display-remote-posts {
    margin: 5px 0 20px
}

.jetpack-display-remote-posts h4 {
    margin: 5px 0;
    padding: 0
}

.jetpack-display-remote-posts p {
    margin: 0;
    padding: 0
}

.jetpack-display-remote-posts img {
    max-width: 100%
}

.widget-grofile h4 {
    margin: 1em 0 .5em
}

.widget-grofile ul.grofile-urls {
    margin-left: 0;
    overflow: hidden
}

.widget-grofile ul.grofile-accounts li {
    display: inline;
    list-style: none
}

.widget-grofile ul.grofile-accounts li:before {
    content: "" !important
}

.widget-grofile .grofile-accounts-logo {
    background-image: url(https://web.archive.org/web/20240701095814im_/https://secure.gravatar.com/images/grav-share-sprite.png);
    background-repeat: no-repeat;
    float: left;
    height: 16px;
    margin-bottom: 8px;
    margin-right: 8px;
    width: 16px
}

.rtl .widget-grofile .grofile-accounts-logo {
    margin-left: 8px;
    margin-right: 0
}

.grofile-thumbnail {
    max-width: 100%;
    width: 500px
}

@media only screen and (-o-min-device-pixel-ratio:3/2),
only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    .widget-grofile .grofile-accounts-logo {
        background-image: url(https://web.archive.org/web/20240701095814im_/https://secure.gravatar.com/images/grav-share-sprite-2x.png);
        background-size: 16px 784px
    }
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_container] {
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 10px;
    color: #000;
    padding: 10px 5px
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_container] a {
    color: #000
}

.jetpack-goodreads-legacy-widget h2[class^=gr_custom_header] {
    display: none
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_each_container] {
    border-bottom: 1px solid #a7aaad;
    clear: both;
    margin-bottom: 10px;
    overflow: auto;
    padding-bottom: 4px;
    width: 100%
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_book_container] {
    float: right;
    height: 60px;
    margin-left: 4px;
    overflow: hidden;
    width: 39px
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_author] {
    font-size: 10px
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_tags] {
    color: gray;
    font-size: 10px
}

.jetpack-goodreads-legacy-widget div[class^=gr_custom_rating] {
    display: none
}

.widget_wpcom_social_media_icons_widget ul {
    list-style-type: none;
    margin-left: 0
}

.widget_wpcom_social_media_icons_widget ul li {
    border: 0;
    display: inline;
    margin-right: .5em
}

.widget_wpcom_social_media_icons_widget li a {
    border: 0;
    text-decoration: none
}

.widget_wpcom_social_media_icons_widget .genericon {
    font-family: Genericons
}

.widget_wpcom_social_media_icons_widget .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px
}

.widget_wpcom_social_media_icons_widget .screen-reader-text:active,
.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,
.widget_wpcom_social_media_icons_widget .screen-reader-text:hover {
    background-color: #f0f0f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px #0009;
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

.widgets-grid-layout {
    width: 100%
}

.widgets-grid-layout:after,
.widgets-grid-layout:before {
    content: " ";
    display: table
}

.widgets-grid-layout:after {
    clear: both
}

.widget-grid-view-image {
    float: left;
    max-width: 50%
}

.widget-grid-view-image a {
    display: block;
    margin: 0 2px 4px 0
}

.widget-grid-view-image:nth-child(2n) {
    float: right
}

.widget-grid-view-image:nth-child(2n) a {
    margin: 0 0 4px 2px
}

.widgets-grid-layout .widget-grid-view-image img {
    height: auto;
    max-width: 100%
}

.widgets-list-layout {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.widgets-list-layout li:after,
.widgets-list-layout li:before {
    content: "";
    display: table
}

.widgets-list-layout li:after {
    clear: both
}

.widgets-list-layout li {
    zoom: 1;
    list-style-type: none !important;
    margin-bottom: 1em
}

.widgets-list-layout .widgets-list-layout-blavatar {
    float: left;
    height: auto;
    max-width: 40px;
    width: 21.276596%
}

.widgets-list-layout-links {
    float: right;
    width: 73.404255%
}

.widgets-list-layout span {
    opacity: .5
}

.widgets-list-layout span:hover {
    opacity: .8
}

.jetpack-image-container:after {
    clear: both
}

.jetpack-image-container:after,
.jetpack-image-container:before {
    content: "";
    display: table
}

.widgets-multi-column-grid ul {
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0
}

.widgets-multi-column-grid ul li {
    background: none;
    border: none;
    clear: none;
    float: left;
    list-style-type: none !important;
    margin: 0 -5px -3px 0;
    padding: 0 8px 6px 0
}

.widgets-multi-column-grid ul li a {
    background: none;
    border: 0;
    margin: 0;
    padding: 0
}

.widgets-multi-column-grid .avatar {
    vertical-align: middle
}

.widget_jetpack_my_community .avatar-240,
.widget_jetpack_my_community .avatar-48 {
    max-height: 48px;
    max-width: 48px
}

.widget.widget_authors li>ul,
.widget_authors>ul {
    margin-left: inherit;
    padding-left: 0
}

.widget_authors ul li li {
    padding-left: 0
}

.widget_authors>ul>li {
    list-style: none;
    margin-bottom: 1em
}

.widget_authors>ul>li+li {
    border-top: 0
}

.widget.widget_authors img {
    box-shadow: none;
    margin-bottom: 5px;
    margin-right: 5px;
    vertical-align: middle
}

.wpcnt {
    line-height: 2;
    text-align: center
}

.wpa {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    position: relative
}

.wpa-about {
    border-bottom: none !important;
    box-shadow: none !important;
    color: #888;
    display: block;
    font: 10px/1 Open Sans, Arial, sans-serif !important;
    left: 0;
    margin-top: 0;
    opacity: .85;
    position: absolute;
    right: 0;
    text-align: left !important;
    text-decoration: none !important;
    top: 5px
}

.wpa .u>div {
    display: block;
    margin-bottom: 1em;
    margin-top: 5px
}

div.wpa>div {
    margin-top: 20px
}

.wpa .u .adsbygoogle {
    background-color: initial;
    display: block;
    margin-bottom: 1em;
    margin-top: 17px
}

.widget_eu_cookie_law_widget {
    animation: fadeIn .8s;
    border: none;
    bottom: 1em;
    left: 1em;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 1em;
    width: auto;
    z-index: 50001
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden
    }

    to {
        opacity: 1;
        visibility: visible
    }
}

.widget_eu_cookie_law_widget.widget.top {
    bottom: auto;
    top: 1em
}

.admin-bar .widget_eu_cookie_law_widget.widget.top {
    top: 3em
}

amp-consent.widget_eu_cookie_law_widget.widget.top {
    margin: 0;
    top: 1em
}

.admin-bar amp-consent.widget_eu_cookie_law_widget.widget.top {
    margin-top: 3em;
    top: 0
}

#eu-cookie-law {
    background-color: #fff;
    border: 1px solid #dedede;
    color: #2e4467;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
    padding: 6px 6px 6px 15px;
    position: relative
}

#eu-cookie-law a,
#eu-cookie-law a:active,
#eu-cookie-law a:visited {
    color: inherit;
    cursor: inherit;
    text-decoration: underline
}

#eu-cookie-law a:hover {
    cursor: pointer;
    text-decoration: none
}

#eu-cookie-law.negative {
    background-color: #000;
    border: none;
    color: #fff
}

#eu-cookie-law.hide {
    opacity: 0;
    transition: opacity .4s, visibility .4s;
    visibility: hidden
}

#eu-cookie-law form {
    margin-bottom: 0;
    position: static
}

#eu-cookie-law input,
#eu-cookie-law input:focus,
#eu-cookie-law input:hover {
    background: #f3f3f3;
    border: 1px solid #dedede;
    border-radius: 4px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #2e4453;
    cursor: pointer;
    display: inline;
    float: right;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    line-height: inherit;
    margin: 0 0 0 5%;
    padding: 8px 12px;
    position: static;
    text-transform: none
}

#eu-cookie-law.negative input,
#eu-cookie-law.negative input:focus,
#eu-cookie-law.negative input:hover {
    background: #282828;
    border-color: #535353;
    color: #fff
}

@media (max-width:600px) {
    #eu-cookie-law {
        padding-bottom: 55px
    }

    #eu-cookie-law input.accept {
        bottom: 8px;
        position: absolute;
        right: 8px
    }
}

.widget_eu_cookie_law_widget .customize-partial-edit-shortcut>button {
    left: 0
}

.flickr-images {
    text-align: center
}

.flickr-size-thumbnail .flickr-images {
    align-content: space-between;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center
}

.flickr-images img {
    margin: 5px;
    max-width: 100%
}

.wpcom-instagram-images {
    display: grid;
    grid-gap: .5rem;
    grid-auto-columns: 1fr
}

.wpcom-instagram-images:after,
.wpcom-instagram-images:before {
    content: none
}

.wpcom-instagram-images a {
    display: block;
    margin: 4px 2px
}

.wpcom-instagram-columns-2 a,
.wpcom-instagram-columns-3 a {
    display: inline-block;
    vertical-align: top
}

.wpcom-instagram-columns-2 a {
    width: calc(50% - 8px)
}

.wpcom-instagram-columns-3 a {
    width: calc(33.3333% - 8px)
}

.wpcom-instagram-images .sq-bg-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%
}

.wpcom-instagram-columns-2 {
    grid-template-columns: repeat(2, 1fr)
}

.wpcom-instagram-columns-3 {
    grid-template-columns: repeat(3, 1fr)
}

@supports (display:grid) {
    .wpcom-instagram-images a {
        display: block;
        margin: 0
    }

    .wpcom-instagram-columns-2 a,
    .wpcom-instagram-columns-3 a {
        width: auto
    }
}

.jetpack-search-filters-widget__sub-heading {
    font-size: inherit;
    font-weight: 700;
    margin: 0 0 .5em;
    padding: 0
}

.jetpack-search-form+.jetpack-search-filters-widget__sub-heading {
    margin-bottom: .5em !important;
    margin-top: 1.5em
}

.jetpack-search-filters-widget__clear {
    margin-bottom: .5em;
    margin-top: .5em
}

.jetpack-search-sort-wrapper {
    margin-bottom: 1.5em;
    margin-top: 1em
}

.jetpack-search-sort-wrapper label {
    display: inherit
}

.widget_search .jetpack-search-filters-widget__filter-list input[type=checkbox] {
    height: auto;
    width: auto
}

ul.jetpack-search-filters-widget__filter-list li {
    border: none;
    list-style: none;
    padding: 0
}

ul.jetpack-search-filters-widget__filter-list li a {
    text-decoration: none
}

ul.jetpack-search-filters-widget__filter-list li a:hover {
    box-shadow: none
}

ul.jetpack-search-filters-widget__filter-list li label {
    display: inherit;
    font-weight: inherit
}

.jetpack-search-filters-widget__filter-list {
    list-style: none
}

ul.jetpack-search-filters-widget__filter-list {
    margin-bottom: 1.5em
}

body.search .jetpack-search-form input[name=s]::placeholder {
    color: #0000
}

body.search .jetpack-search-form input[name=s].show-placeholder::placeholder {
    color: inherit
}

@media screen and (min-width:400px) {
    .widget.jetpack-simple-payments .jetpack-simple-payments-product {
        flex-direction: column
    }

    .widget.jetpack-simple-payments .jetpack-simple-payments-details {
        padding-left: 0
    }
}

.jetpack_widget_social_icons li,
.jetpack_widget_social_icons ul {
    list-style: none
}

.jetpack_widget_social_icons ul {
    display: block;
    margin: 0 0 1.5em;
    padding: 0
}

.jetpack_widget_social_icons ul li {
    border: 0;
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0
}

.jetpack_widget_social_icons ul li:after,
.jetpack_widget_social_icons ul li:before {
    display: none
}

.jetpack_widget_social_icons a {
    border: 0;
    box-shadow: none;
    display: block;
    height: 24px;
    text-decoration: none;
    width: 24px
}

.jetpack_widget_social_icons svg {
    color: inherit;
    fill: currentColor;
    height: inherit;
    vertical-align: middle;
    width: inherit
}

.jetpack_widget_social_icons ul.size-small a {
    height: 24px;
    width: 24px
}

.jetpack_widget_social_icons ul.size-medium a {
    height: 32px;
    width: 32px
}

.jetpack_widget_social_icons ul.size-large a {
    height: 48px;
    width: 48px
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important
}

.milestone-widget {
    margin-bottom: 1em
}

.milestone-content {
    line-height: 2;
    margin-top: 5px;
    max-width: 100%;
    padding: 0;
    text-align: center
}

.milestone-header {
    background-color: var(--milestone-text-color, #111);
    color: var(--milestone-bg-color, #fff);
    line-height: 1.3;
    margin: 0;
    padding: .8em
}

.milestone-header .date,
.milestone-header .event {
    display: block
}

.milestone-header .event {
    font-size: 120%
}

.milestone-countdown .difference {
    display: block;
    font-size: 500%;
    font-weight: 700;
    line-height: 1.2
}

.milestone-countdown,
.milestone-message {
    background-color: var(--milestone-bg-color, #fff);
    border: 1px solid var(--milestone-border-color, #767676);
    border-top: 0;
    color: var(--milestone-text-color, #111);
    padding-bottom: 1em
}

.milestone-message {
    padding-top: 1em
}

body.jetpack-subscribe-modal-open {
    overflow: hidden
}

.jetpack-subscribe-modal {
    background-color: initial;
    height: 100%;
    left: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    transition: all .4s;
    visibility: hidden;
    width: 100%;
    z-index: 50000
}

.jetpack-subscribe-modal.open {
    background-color: #0000004d;
    visibility: visible
}

.jetpack-subscribe-modal__modal-content {
    background-color: #fefefe;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 15% auto;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    text-wrap: balance;
    top: 100%;
    transition: all .4s;
    visibility: hidden;
    width: 100%
}

.jetpack-subscribe-modal.open .jetpack-subscribe-modal__modal-content {
    top: 0;
    visibility: visible
}

.jetpack-subscribe-modal__modal-content p {
    text-wrap: balance;
    text-wrap: pretty
}

@media screen and (max-width:640px) {
    .jetpack-subscribe-modal__modal-content {
        width: 94%
    }
}

body.jetpack-subscribe-overlay-open {
    overflow: hidden
}

.jetpack-subscribe-overlay {
    --jetpack-subscribe-overlay--background-color: var(--wp--preset--color--background, var(--wp--preset--color--base, var(--wp--preset--color--contrast, #f9f9f9)));
    background-color: initial;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: background-color .4s, visibility .4s;
    visibility: hidden;
    width: 100%;
    z-index: 50000
}

.jetpack-subscribe-overlay__content {
    margin: 15% auto;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    text-wrap: pretty;
    top: 100%;
    transition: top .4s, visibility .4s;
    visibility: hidden;
    width: 100%
}

.jetpack-subscribe-overlay__close {
    cursor: pointer;
    display: none;
    height: 24px;
    position: absolute;
    right: 32px;
    top: 32px;
    width: 24px
}

body.admin-bar .jetpack-subscribe-overlay__close {
    top: 64px
}

.jetpack-subscribe-overlay__to-content {
    bottom: 64px;
    display: none;
    left: 0;
    margin: 0 auto;
    position: fixed;
    right: 0
}

.jetpack-subscribe-overlay.open {
    background-color: var(--jetpack-subscribe-overlay--background-color);
    visibility: visible
}

.jetpack-subscribe-overlay.open .jetpack-subscribe-overlay__content {
    top: 0;
    visibility: visible
}

.jetpack-subscribe-overlay.open .jetpack-subscribe-overlay__close,
.jetpack-subscribe-overlay.open .jetpack-subscribe-overlay__to-content {
    display: block
}

@media screen and (max-width:640px) {
    .jetpack-subscribe-overlay__content {
        width: 94%
    }
}