.theme-icon.triangle:before {
    content: '';
    display: block;
    width: 15px;
    height: 16px;
    background-size: contain !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='18' viewBox='0 0 21 18'%3E%3Cpath d='M10.5,0,21,18H0Z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='18' viewBox='0 0 21 18'%3E%3Cpath d='M10.5,0,21,18H0Z' /%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin: 0 auto;
    background-color: var(--nv-secondary-accent);
}


.numeric-list {
    list-style: none;
    counter-reset: numeric-counter;
    padding-left: 44px !important;
}

.numeric-list li {
    counter-increment: numeric-counter;
    position: relative;
}

.numeric-list li::before {
    content: counter(numeric-counter);
    color: var(--nv-primary-accent);
    font-weight: bold;
    font-size: 18px;
    line-height: var(--bodylineheight);
    left: -23px;
    position: absolute;
}

.brush {
    position: relative;
    z-index: 1;
}

.brush:after {
    display: block;
    width: 100%;
    height: 50px;
    content: '';
    -webkit-mask: url(../brush.svg) no-repeat 50% 50%;
    mask: url(../brush.svg) no-repeat 50% 50%;
    background-color: var(--nv-secondary-accent);
    position: absolute;
    top: 0;
    z-index: -1;
}

@media (max-width: 610px) {
    .brush:after {
        -webkit-mask-size: contain;
        mask-size: contain;
    }
}

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

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

.align-flex-left {
    display: flex;
    justify-content: left;
}

.align-flex-right {
    display: flex;
    justify-content: right;
}

.overflow-hidden {
    overflow: hidden;
}

.wp-block-image .is-style-rounded img,
.wp-block-image.is-style-circle-mask img,
.wp-block-image.is-style-rounded img {
    border-radius: 25px !important;
}

.no-circle-background .step-icon {
    background: transparent !important;
    width: auto !important;
    height: var(--h4lineheight) !important;
}

.wp-block-search {
    max-width: 350px;
}

.wp-block-search .wp-block-search__input {
    max-height:48px;
}

.wp-block-search .wp-block-search__inside-wrapper {
    padding: 0 !important;
    position: relative;
}

.wp-block-search .wp-element-button {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 0;
    background: var(--nv-primary-accent);
    right: 0;
    margin-bottom: 0 !important;
    padding: 0;
    text-indent: -9999px;
    font-size: 0 !important;
    line-height: 0 !important;
}

.wp-block-search .wp-element-button:after {
    content: '';
    display: block;
    background-image: var(--arrow-svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 12px;
    margin-left: -8px;
}

.wp-block-table td, .wp-block-table th {
    padding: 1em 0.5em !important;
    vertical-align: top;
}

.wp-block-table th {
    vertical-align: top;
}

@media (max-width: 960px) {
    .mobile-hidden {
        display: none;
    }
    .hide-bg-mobile {
        background: none !important;
    }
}

@media (max-width: 768px) {
    .top-colors-background-mobile .wp-block-themeisle-blocks-advanced-columns-overlay {
        background: url("../colors.png") no-repeat 50% -10%/contain !important;
    }

    .newsletter .innerblocks-wrap {
        flex-direction: column;
        padding-top: 130px;
    }

    .numeric-list {
        padding-left: 25px !important;
    }
}